Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread Benoît Minisini
> Benoit, > > the image i want to print is created this way: > "hPaper = New Image(6000, 300, Color.White)" > On this image i paint my spectrogram data. > I do some more experiments and assume i get it work > as needed. Thank You :) 6000 * 300 * 4 = 7,2 Mb. So a big image! > > By the way: Is an

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread wally
Benoit, the image i want to print is created this way: "hPaper = New Image(6000, 300, Color.White)" On this image i paint my spectrogram data. I do some more experiments and assume i get it work as needed. Thank You :) By the way: Is any effort known to make a math lib available for Ganbas (e.

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread Benoît Minisini
> It works via "Printer1.Count = 8" but printing to PDF is extremely slow > on my system. Few minutes for 8 PDF pages. Much slower than the real > Printer creates output on paper. Thats the rerason i asked here. > I did not aware, that pdf generation was still in process when i tried to > load it

Re: [Gambas-user] gambas3 print image 2nd

2010-12-07 Thread wally
It works via "Printer1.Count = 8" but printing to PDF is extremely slow on my system. Few minutes for 8 PDF pages. Much slower than the real Printer creates output on paper. Thats the rerason i asked here. I did not aware, that pdf generation was still in process when i tried to load it to acro

[Gambas-user] gambas3 print image 2nd

2010-12-07 Thread wally
How to print a very wide image, lets say a spectrogram DinA4 Heigth and usually 5 or 6 sheets wide in landscaoe format ? Do i need to manage the page cutting manually in code or is there a more smart way ? Target should be few pages of printer output or a multipage PDF. cheers wally --