On 8/2/2013 9:49 PM, Jannik Voges wrote:
I added the function in back-pdf.lua, but that doesn't fix the problem.
Jannik
Am 02.08.2013 um 21:35 schrieb Hans Hagen
: On 8/2/2013 9:05 PM, Jannik Voges wrote:
No problem. Pdf is attached.
ok, i see the problem ... will try to fix it (cannot upload from where i am now)
you can try this in back-pdf.lua:
function nodepool.pdfsetmatrix(rx,sx,sy,ry,tx,ty) local t = copy_node(pdfsetmatrix) if type(rx) == "string" then setfield(t,"data",rx) else setfield(t,"data",formatters["%s %s %s %s"](rx or 1,sx or 0,sy or 0,ry or 1)) -- todo: tx ty end return t end
function nodepool.pdfsetmatrix(rx,sx,sy,ry,tx,ty) local t = copy_node(pdfsetmatrix) if type(rx) == "string" then t.data = rx else t.data = formatters["%s %s %s %s"](rx or 1,sx or 0,sy or 0,ry or 1) -- todo: tx ty end return t end and remake the format ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------