This function enables or disables a format filter.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_load_auto_detect_set( AT_MODE nFormatType, AT_BOOL bToggle ); |
Name | Type | Description |
---|---|---|
nFormatType | AT_MODE | A constant indicating the format filter for which the detection setting should be modified. See enumIGFormats for possible values. |
bToggle | AT_BOOL | Set to TRUE to enable detection; set to FALSE to disable detection. The default value is TRUE for most ImageGear format filters. |
This function does not process image pixels.
ASCII
Copy Code
|
|
---|---|
BOOL bEnabled = FALSE; /* If FALSE this file format will be disabled */
AT_ERRCOUNT nErrCount = IG_load_auto_detect_set ( IG_FORMAT_TIF , bEnabled);
|
If detection of a specific file format is disabled, that file format type cannot be accessed by the image info getting and loading functions, such as IG_info_get_ex or IG_fltr_load_file.
By default, detection is enabled for all ImageGear file format filters, except TXT (ASCII) and Headerless Digital Camera RAW.
See also function IG_load_auto_detect_get.