ImageEn, unit imageenproc

IECloneBitmap

IECloneBitmap

Declaration

function IECloneBitmap(Source: TBitmap): TBitmap;

Description

Creates a new TBitmap object that is a copy of the Source bitmap.

Example

var
  mybmp: TBitmap;
begin
...
  mybmp := IECloneBitmap( ImageEnView1.IEBitmap.VCLBitmap );
...
  mybmp.Free();
end;