From a4b5b8920524cc573779d57c28d2e70b8fcc12cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Fabian=20Kr=C3=BCger?= Date: Sat, 13 Jun 2020 02:55:38 +0200 Subject: [PATCH] Less debug output --- luametalatex-pdf-image.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/luametalatex-pdf-image.lua b/luametalatex-pdf-image.lua index dd9bd57..b8f9251 100644 --- a/luametalatex-pdf-image.lua +++ b/luametalatex-pdf-image.lua @@ -226,12 +226,10 @@ local function do_img(data, p, n, x, y) if mirror then a, e = -a, -e+xsize end - print(img.rotation, rotate, data, a, b, c, d, e, f) for i=1,rotate do a, b, c, d, e, f = -b, a, -d, c, -f+ysize, e xsize, ysize = ysize, xsize end - print(a, b, c, d, e, f) local xscale, yscale = width / xsize, height / ysize a, c, e = a*xscale, c*xscale, e*xscale b, d, f = b*yscale, d*yscale, f*yscale