Hi
It depends on the method you use to display the image from the TImageEnMView in the TImageEnView (e.g. using AttachedImageEnView).
But generally the process to edit an image from a TImageEnMView is as follows:
// Display the fifth image in a TImageEnView
bmp := ImageEnMView1.GetTIEBitmap(4); // Note: bmp must be TIEBitmap type
ImageEnView1.Assign( bmp );
ImageEnMView1.ReleaseBitmap(4, False);
... USER EDITS THE IMAGE...
// Update the fifth image in the TImageEnView with the current content of a TImageEnView
bmp := ImageEnMView1.GetTIEBitmap(4); // Note: bmp must be TIEBitmap type
bmp.Assign( ImageEnView1.IEBitmap );
ImageEnMView1.ReleaseBitmap(4, True);
ImageEnMView1.Update();
Nigel
Xequte Software
www.imageen.com