You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I previously raised this issue, but I feel it's crucial to address it.
My concern involves high-resolution scanned PDFs, typically construction blueprints, which are significantly large in size. These documents, being scanned, essentially consist of a single, expansive image. When displayed on high-resolution screens (where devicePixelRatio exceeds 1), the image's size surpasses the maximum canvas pixel limit of the browser. Given the high resolution of these PDFs, it's unnecessary for the output to maintain a PixelRatio greater than 1 to ensure good quality. Currently, attempting to load these PDFs results in failure and a warning, which I'm unable to capture or display in the browser.
Therefore, I suggest implementing a feature to adjust/limit the output scale/resolution. This adjustment would enable the browser to effectively handle PDFs containing large images, ensuring they load properly without compromising quality.
Another potential solution is to divide the image into smaller sections. However, I believe this approach might be more complex.
The text was updated successfully, but these errors were encountered:
Therefore, I suggest implementing a feature to adjust/limit the output scale/resolution. This adjustment would enable the browser to effectively handle PDFs containing large images, ensuring they load properly without compromising quality.
As already mentioned in #17170 (comment) that's probably less straightforward than you think, and we cannot implement options for everything that users may want (since every options adds maintenance/support burden).
Edit: There's also an existing viewer-option that sounds relevant here, see e.g.
I previously raised this issue, but I feel it's crucial to address it.
My concern involves high-resolution scanned PDFs, typically construction blueprints, which are significantly large in size. These documents, being scanned, essentially consist of a single, expansive image. When displayed on high-resolution screens (where devicePixelRatio exceeds 1), the image's size surpasses the maximum canvas pixel limit of the browser. Given the high resolution of these PDFs, it's unnecessary for the output to maintain a PixelRatio greater than 1 to ensure good quality. Currently, attempting to load these PDFs results in failure and a warning, which I'm unable to capture or display in the browser.
Therefore, I suggest implementing a feature to adjust/limit the output scale/resolution. This adjustment would enable the browser to effectively handle PDFs containing large images, ensuring they load properly without compromising quality.
Another potential solution is to divide the image into smaller sections. However, I believe this approach might be more complex.
The text was updated successfully, but these errors were encountered: