Re: [Gambas-user] How use Image.Resize

2012-01-22 Thread Алексей Беспалов
Thank you! There, I was not looking. 2012/1/22 Laurent Carlier > > I think Image.Resize(w, h) not working properly. > > > > Instead of resizing image, it cuts out part of image. > > > > Say what? > > > > > > Perhaps http://gambasdoc.org/help/comp/gb.qt/image/stretch > > ++ > > > > --

Re: [Gambas-user] How use Image.Resize

2012-01-22 Thread Laurent Carlier
> I think Image.Resize(w, h) not working properly. > > Instead of resizing image, it cuts out part of image. > > Say what? > > Perhaps http://gambasdoc.org/help/comp/gb.qt/image/stretch ++ -- Try before you buy = Se

Re: [Gambas-user] How use Image.Resize

2012-01-22 Thread Benoît Minisini
Le 22/01/2012 15:58, Алексей Беспалов a écrit : > I think Image.Resize(w, h) not working properly. > > Instead of resizing image, it cuts out part of image. > > Say what? > Resize() changes the size of the image, but does not stretch its contents. You need the Stretch() method for that. You will

Re: [Gambas-user] How use Image.Resize

2012-01-22 Thread Jussi Lahtinen
Image.Resize() resizes it's boundaries not the picture. See Draw.Picture(). http://gambasdoc.org/help/comp/gb.qt4/draw/picture?v3 Jussi On Sun, Jan 22, 2012 at 16:58, Алексей Беспалов wrote: > I think Image.Resize(w, h) not working properly. > > Instead of resizing image, it cuts out part of

Re: [Gambas-user] How use Image.Resize

2012-01-22 Thread Алексей Беспалов
I think Image.Resize(w, h) not working properly. Instead of resizing image, it cuts out part of image. Say what? -- Alexey. -- Try before you buy = See our experts in action! The most comprehensive online learning

[Gambas-user] How use Image.Resize

2012-01-20 Thread Алексей Беспалов
My Image size 4000 * 4000 pixel. If I done: hImage.Resize(200, 200) Draw.Begin(hArea) Draw.Image(hImage, 0, 0) Draw.End I can see only part of the Image. How use hImage.Resize() for resize or scaled Image. I want to get a small image for a quick Draw.Image() -- Alexey. --