Fix for adding custom resolutions

This commit is contained in:
lukahn 2015-01-15 16:15:05 +11:00
parent 700e62f1d8
commit 5c7753d6c4

View file

@ -285,6 +285,9 @@ def convert(images, dpi, x, y, title=None, author=None, creator=None, producer=N
pdf_x, pdf_y = x, x*height/width
elif not x:
pdf_x, pdf_y = y*width/height, y
else:
pdf_x = x
pdf_y = y
pdf.addimage(color, width, height, imgformat, imgdata, pdf_x, pdf_y)