With a temp bitmap:
bmp := TBitmap.Create;
proc := TImageEnProc.CreateFromBitmap(bmp);
proc.PasteFromClipboard();
bmp.RenderToTIEBitmapEx(...);
proc.Free;
bmp.Free;
With a TImageEnView:
ImageEnView1.Proc.PasteFromClipboard();
ImageEnView1.IEBitmap.RenderToTIEBitmapEx(...);
Nigel
Xequte Software
www.imageen.com