If you are loading a JPEG you can reduce the size as follows...
// Fastest way to load a thumbnailed jpeg of about 100x100 pixels
ImageEnView1.IO.Params.Width := 100;
ImageEnView1.IO.Params.Height := 100;
ImageEnView1.IO.Params.JPEG_Scale := ioJPEG_AUTOCALC;
ImageEnView1.IO.LoadFromFile('my.jpg');
With Raw format you can use:
RAW_HalfSize := True;
Nigel
Xequte Software
www.xequte.com
nigel@xequte.com