ImageFile.CreateMemoryBitmapArea Method
|
This method creates a
MemoryBitmap object from a defined area in one of the pages specified by the Page parameter stored in the
related
ImageFile object.
Namespace:
Kofax.OmniPageCSDK.IproPlus
Assembly:
Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntaxpublic void CreateMemoryBitmapArea(
int Page,
ref IPRORECT Rect,
out MemoryBitmap MemoryBitmap
)
Public Sub CreateMemoryBitmapArea (
Page As Integer,
ByRef Rect As IPRORECT,
<OutAttribute> ByRef MemoryBitmap As MemoryBitmap
)
public:
void CreateMemoryBitmapArea(
[InAttribute] int Page,
[InAttribute] IPRORECT% Rect,
[OutAttribute] MemoryBitmap^% MemoryBitmap
)
Parameters
- Page
- Type: System.Int32
- Rect
- Type: Kofax.OmniPageCSDK.IproPlus.IPRORECT
- MemoryBitmap
- Type: Kofax.OmniPageCSDK.IproPlus.MemoryBitmap
Remarks
See: CreateMemoryBitmap. The MemoryBitmap object created is automatically added to
the MemoryBitmaps collection and a reference to the new object is returned.
To get the whole image area, pass NULL (or Nothing) for the Rect parameter.
See Also