Hi
The Proc.Blur() method will only work with the currently selected image. So you need to operate on each image individually, e.g. by attaching each image's bitmap to a TImageEnProc
// Blur image of Index 0 in a TImageEnMView
var
bmp : TIEBitmap;
begin
bmp := ImageEnMView1.GetTIEBitmap(0);
ImageEnProc1.AttachedIEBitmap := bmp;
ImageEnProc1.Blur;
ImageEnMView1.ReleaseBitmap(0);
ImageEnMView1.Update;
end;
Nigel
Xequte Software
www.xequte.com
nigel@xequte.com