Hi,
I'm using ie 6.2.1 for reducing images.
ie.IO.LoadFromFileAuto('C:\myImage.jpg');
ie.Proc.Resample(150,150,rfBicubic,True);
ie.IO.Params.JPEG_Quality := 50;
ie.IO.SaveToFile('C:\myReducedImage.jpg');
I was surprised of the size of some reduced images so i looked in preview of TSaveImageEnDialog.
For an example
Original image size: 483 320
Resampled image size (preview): 50 400
Compressed image size (preview): 2 065
Reduced image size: 94 520
Why did i have 94 520 instead of 2 065 ?
Is there an option to get the size estimated in preview ?
Note: With the same treatment with ImageJ, i had 3 313. I dont see real differences between the 2 resulting images.
Regards