Click or drag to resize

MemoryBitmap Class

The MemoryBitmap object represents an image stored in the memory.
Inheritance Hierarchy

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

The MemoryBitmap type exposes the following members.

Properties
  NameDescription
Public propertyName
This property is used to get or set an optional name for the memory bitmap.
Public propertyPaletted
This property returns True if the image is a palette-color one.
Public propertyUniqueID
This property returns the unique ID of the object.
Top
Methods
  NameDescription
Public methodDispose
Releases all resources used by the MemoryBitmap
Public methodEquals (Overrides ObjectEquals(Object).)
Public methodGetBitmap
This method returns the raw image data of the image object.
Public methodGetEngine
Returns the Engine object.
Public methodGetHashCode (Overrides ObjectGetHashCode.)
Public methodPutBitmap
This method is used to write raw bitmap data together with information specified by the ImgInfo parameter back into the image object.
Top
Remarks

This object manages bitmaps as raw data. This object can be passed to the LoadBitmap method of the Document object. This allows the integrating code to load an image which is stored in the memory into a particular document. All bitmaps stored by the IPRO object model are bottom-up, BGR color order, and double-word aligned bitmaps.

See Also