forked from josch/plakativ
add comment for loading error for images larger than 65536 pixel
This commit is contained in:
parent
d4ed39b7d2
commit
d0e5c1e48d
1 changed files with 4 additions and 0 deletions
|
@ -387,6 +387,10 @@ class Plakativ:
|
||||||
gdl = self.doc[self.pagenr].get_displaylist
|
gdl = self.doc[self.pagenr].get_displaylist
|
||||||
else:
|
else:
|
||||||
gdl = self.doc[self.pagenr].getDisplayList
|
gdl = self.doc[self.pagenr].getDisplayList
|
||||||
|
# this may fail with "RuntimeError: image is too wide"
|
||||||
|
# from pdf_load_image_imp() in pdf-image.c from mupdf for sizes larger
|
||||||
|
# than 1<<16 pixels:
|
||||||
|
# https://bugs.ghostscript.com/show_bug.cgi?id=703839
|
||||||
rect = gdl().rect
|
rect = gdl().rect
|
||||||
inpage_width = pt_to_mm(rect.width)
|
inpage_width = pt_to_mm(rect.width)
|
||||||
inpage_height = pt_to_mm(rect.height)
|
inpage_height = pt_to_mm(rect.height)
|
||||||
|
|
Loading…
Reference in a new issue