ImageEn, unit iexBitmaps

TIEImagingAnnot.Assign

TIEImagingAnnot.Assign


Declaration

procedure Assign(Source: TIEImagingAnnot);


Description

Copy annotations from another TIEImagingAnnot object.


Example

// Copy annotations from a JPEG file to current image
iebmp := TIEBitmap.create;
iebmp.ParamsEnabled := true;
iebmp.Read( 'C:\Image.jpg' );
ImageEnView1.IO.Params.ImagingAnnot.Assign( iebmp.Params.ImagingAnnot );
iebmp.Free;