ImageGear Professional v18.2 > API Reference Guide > Core Component API Reference > Core Component Objects > IGPage Object > IGPage Methods > PlatformDIBExport Method |
Exports an image as a platform-specific DIB. It will perform whatever conversions are necessary in order to store the image in the specified DIB format.
PlatformDIBExport(
Format as enumIGDIBExportFormats,
UseAlpha as Boolean,
Left as Long,
Top as Long,
Width as Long,
Height as Long,
Buff as Long) as IIGPlatformDIB
Name | Description |
---|---|
Format |
|
UseAlpha | If the image contains an alpha channel, and this is set to True, the alpha channel will be blended into the color channel(s) during export. |
Left | X coordinate of starting point for region to export. |
Top | Y coordinate of starting point for region to export. |
Width | Width of region to export. Specify 0 to export entire region. |
Height | Height of region to export. Specify 0 to export entire region. |
Buff | Location in memory of buffer to store DIB at. Pass 0 to have the IGPlatformDIB object automatically allocate a buffer. |
Returns new instance of IGPlatformDIB Object.
N/A
None