From 5c7753d6c4f8a82ccc104b001b1f7e09cd43d406 Mon Sep 17 00:00:00 2001 From: lukahn Date: Thu, 15 Jan 2015 16:15:05 +1100 Subject: [PATCH] Fix for adding custom resolutions --- src/img2pdf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/img2pdf.py b/src/img2pdf.py index 395ee31..45601b4 100755 --- a/src/img2pdf.py +++ b/src/img2pdf.py @@ -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)