Is it possible to insert an image from clipboard not directly into the ImageEnView-Image? So that I can move the flotation selection with the Image in it to the position where I want to insert it?
No not with selections, unless you undo the paste, move or resize the selection, then paste again.
I'll suppose that I have to work with layers to reach that (so create a new layer and insert the Image from clipboard into the new layer)? Or is there perhaps a build in layer to do some think like that?
Yes, layers would be the best way to do this.
A similar question: Can I select an area of the Image in ImageEnView and move this part to an other position? Or is it here also necessary to work with layers?
No you can not move the selection and the selection's bitmap. Layers would be the best way to achieve this. I suggest using LayersCreateFromSelection for this.
// select an ellipse
ImageEnView1.SelectEllipse(150, 150, 50, 50);
// copy selected area and create a new layer
ImageEnView1.LayersCreateFromSelection;
// move the new layer
ImageEnView1.CurrentLayer.PosX := 100;
ImageEnView1.CurrentLayer.PosY := 100;
// paste to the background - OPTIONAL
ImageEnView1.LayersMerge(0, 1);
ImageEnView1.Deselect.
Bill Miller
Adirondack Software & Graphics
Email: w2m@hughes.net
EBook: http://www.imageen.com/ebook/
Custom Commercial ImageEn Development