lingo-l Problem with Valentin's PDF code

2005-01-27 Thread Leif Wells
I've been playing around with Valentin's conversion of FPDF to Lingo and so far it has worked well. (http://staff.dasdeck.de/valentin/lingo/pdf_class/) I have run into on huge problem though. When you add an RGB image to the PDF Object using AddImg() it takes a pretty long time (for the logo we

Re: lingo-l Problem with Valentin's PDF code

2005-01-27 Thread Valentin Schmidt
Hi Leif, ... Basically, we are traveling through each pixel of the image and adding the chars to the string. I tried using: data = data chr(col.red) chr(col.green) chr(col.blue) since using put seemed too old school, even for and old man like me. But I got the same results. AFAIK, it's

Re: lingo-l Problem with Valentin's PDF code

2005-01-27 Thread Leif Wells
Thanks for your response. I knew that I had to be doing something incorrectly! Leif On Thu, 27 Jan 2005 18:17:45 +0100, Valentin Schmidt [EMAIL PROTECTED] wrote: Hi Leif, ... Basically, we are traveling through each pixel of the image and adding the chars to the string. I tried using: