ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearPage Class
Members




In This Topic
    ImGearPage Class
    In This Topic
    Represents single-page image. In addition to image pixels, contains other attributes like ROI and metadata.
    Object Model
    ImGearPage ClassImGearPage ClassImGearDIB ClassImGearDocument ClassImGearMetadataHead Class
    Syntax
    'Declaration
     
    Public MustInherit Class ImGearPage 
    'Usage
     
    Dim instance As ImGearPage
    public abstract class ImGearPage 
    public __gc abstract class ImGearPage 
    public ref class ImGearPage abstract 
    Remarks
    Represents the image and consists of three main parts:
    • Image data (pixels)
    • Metadata (non-image data)
    • Region of interest

    The page can be either stand-alone (not referenced from any ImGearDocument classinstance) or attached to a document.

    Region of interest (ImGearROI class) represents free-shape image area (rectangular, non-rectangular or entire space) and specifies a meaningful part of an image. For example, it may be set up for some image processing methods to define the area to which the filter should be applied.

    Metadata is non-image data. It is available for most image file formats. In some formats, such as TIFF or PNG, it can be very complex. It can include data of various types and can use a complex structure. ImageGear offers a set of classes designed specifically to manipulate this data consisting of ImGearMetadataNode class, ImGearMetadataNodeList class, ImGearMetadataTree class and their descendants. The metadata for each instance of ImGearPage may be accessed through its Metadata property.

    The Image data (or simply, image) is available through the DIB property. Color Space, channels, width and height are among the major attributes that define the image structure.

    Note: If an ImGearPage is an ImGearPDFPage (if it was loaded from a PDF document) it must be disposed. For example: (igPage as IDisposable).Dispose();

    Example
    Inheritance Hierarchy

    System.Object
       ImageGear.Core.ImGearPage
          ImageGear.Core.ImGearRasterPage
          ImageGear.Core.ImGearVectorPage

    See Also