I'm kinda confused
when I load a image into a Timage and save it, then the file gets really big
the input is a jpg 250Kb and the output a PNG 1.8 Mb
why?
This is what I used
FImage := TSingleImage.Create;
ConvertBitmapToImage(Timage1Picture.Bitmap, FImage);
FImage.SaveToFile('c:\test.png');
I must say, that I nowhere set something that it needs to be a PNG file.
maybe that's it... but where do I need to put it and what?
also the image = 1200x800
i am loading it into the Timage at 320x240 and have it set to fix so i can see the whole thing.
how can i save it with that sizeformat? now when I save it's still 1200x800
thank you very much