We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I'm using pdfExport library to generate a multipage document. I'd like to display an image background, but I dont want it in my pdf! If I use
endRecord();
image(mybackgroundpic,0,0);
beginRecord(pdf);
it works, but I loose the previous pages... Any tip? Thanks!
Answers
Just found a solution! It works in my case.
image(mybackgroundpic,0,0); pdf.background(255);