Click or drag to resize

ImageInfo Class

The ImageInfo object provides basic image information (size, resolution etc.) about the page image.
Inheritance Hierarchy
SystemObject
  OmniPageCSDK.IproPlusIproPlusClass
    OmniPageCSDK.IproPlusImageInfo

Namespace:  OmniPageCSDK.IproPlus
Assembly:  OmniPageCSDK.IproPlus (in OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntax
public class ImageInfo : IproPlusClass, IDisposable

The ImageInfo type exposes the following members.

Constructors
  NameDescription
Public methodImageInfo
Initializes a new instance of the ImageInfo class
Top
Properties
  NameDescription
Public propertyBitsPerPixel
This property sets/returns the number of bits used to represent a single pixel.
Public propertyBytesPerLine
This property returns the number of bytes per line in the image.
Public propertyDPIX
This property sets/returns the horizontal image resolution.
Public propertyDPIY
This property sets/returns the vertical image resolution.
Public propertyHeight
This property sets/returns the height of the image in pixels.
Public propertyWidth
This property sets/returns the width of the image in pixels.
Top
Methods
  NameDescription
Public methodDispose
Releases all resources used by the ImageInfo
Top
Remarks

Although this creatable object has read/write properties, these properties cannot be used to change the properties of an existing image or image file.

Images in IPRO are always retrieved in the following format:

  • byte order: BGR
  • line order: bottom-up
  • line padding: double word (4 bytes) aligned

See Also