How can I remove or change the 3000px image limit
Forum › How do I...?
warning: image for filtering clamped to 3000x2001 (220 DPI)
Which filters are you using? Is 220dpi too low resolution? Is the final image coming out blurry?
I used 300dpi but the actual width of the image is over 3000px
<svg style="position: absolute;border-radius:0px;filter:brightness(1);" width="100%" height="100%"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="none"
viewBox="0 0 4096 2731">
<image width="4096" height="2731" preserveAspectRatio="none" xlink:href="xxx"/>
</svg>
<svg style="position: absolute;border-radius:0px;filter:brightness(1);" width="100%" height="100%"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="none"
viewBox="0 0 4096 2731">
<image width="4096" height="2731" preserveAspectRatio="none" xlink:href="xxx"/>
</svg>
Is the linked image also an SVG that you wish to rasterise to a bitmap by applying the brightness(1) filter? At the moment Prince limits rasterisation to 3000x3000 as a maximum size.
Thank you for your answer
This is the default style I set.
Filter properties can be removed.
This is the default style I set.
Filter properties can be removed.
Right, you may not need the filter unless you specifically want to rasterise the image for some reason.
At the moment you can't remove it as the limit is built in, but the whole image will still be visible, just rasterised at whatever dpi gives 3000px as a maximum size. Do you have a target dpi resolution?