ImageGear for C and C++ on Windows v21.0 - Updated
API Reference Guide / Core Component API Reference / Core Component Structures Reference / AT_DIB_EXPORT_OPTIONS
In This Topic
    AT_DIB_EXPORT_OPTIONS
    In This Topic

    This structure specifies the options for exporting a DIB from a HIGEAR object.

    Declaration:

     
    Copy Code
    typedef struct tagAT_DIB_EXPORT_OPTIONS
    {
       enumIGDIBExportFormats Format;
       AT_RECTANGLE imgRect;
       AT_BOOL UseAlpha;
    
    } AT_DIB_EXPORT_OPTIONS, * LPAT_DIB_EXPORT_OPTIONS;
    

    Members:

    Name Type Description

    Format

    enumIGDIBExportFormats

    Specifies the format for the export.

    imgRect

    AT_RECTANGLE

    Specifies a rectangle area of the image to be exported. If 0 is specified for the width or height, image width or height will be used instead, correspondingly.

    UseAlpha

    AT_BOOL

    Specifies how the Alpha channel shall be handled, if it exists. If TRUE, Alpha channel will be blended into the color channel(s) during the export. If FALSE, Alpha channel will be ignored.