ClearImage .NET API
Image Property (ImageIO)





Inlite.ClearImageNet Namespace > ImageIO Class : Image Property
Get underlying CiImage object
Syntax
'Declaration
 
Public ReadOnly Property Image As CiImage
'Usage
 
Dim instance As ImageIO
Dim value As CiImage
 
value = instance.Image
public CiImage Image {get;}
public read-only property Image: CiImage; 
public function get Image : CiImage
public:
property CiImage^ Image {
   CiImage^ get();
}
Remarks

Image property contains an internal representation of the image.  All image processing and barcode reading methods are applied to this image. 

Before use, it should be assigned an initialized CiImage object or initialized using CiImage.OpenCiImage.CopyCiImage.Create or CiImage.CreateBpp methods..  Alternatively Image can be initialized by using ImageIO.Open method.

When processing done save image to a file using CiImage.SaveAs, CiImage.Append methods.

Image also can be assigned to Image property of several ClearImage namespace class, e.g. ClearImage.CiRepair.Image or ClearImage.CiBarcodePro.Image properties to perform lower level image processing and barcode reading.

 

See Also

Reference

ImageIO Class
ImageIO Members