1
0
Fork 0
forked from josch/img2pdf

Check for oversized PDF

This commit is contained in:
Jim Barlow 2014-04-10 23:30:32 -07:00
parent 818db1902f
commit e90688972e

View file

@ -129,6 +129,8 @@ class pdfdoc(object):
if pdf_x < 3.00 or pdf_y < 3.00:
warning_out("pdf width or height is below 3.00 - decrease the dpi")
elif pdf_x > 200.0 or pdf_y > 200.0:
error_out(("pdf width or height is above 200.00 - increase the dpi")
# either embed the whole jpeg or deflate the bitmap representation
if imgformat is "JPEG":