TIEVisionImage.operatorASSIGN
Declaration
procedure operatorASSIGN(src: TIEVisionImage); safecall;
Description
Clone the source image, replacing the old content.
Parameter | Description |
src | Source image to clone |
// Copy the entire content of image1 to image2
image2.operatorASSIGN(image1);
See Also
◼share