This function has been deprecated and will be removed from the public API in a future release. Please use IG_fltr_metad_callback_get instead.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_load_tag_CB_register( LPFNIG_TAG_SET lpfnTagSet, LPVOID lpPrivateData ); |
Name | Type | Description |
---|---|---|
lpfnTagSet | LPFNIG_TAG_SET | Pointer to callback function to be called with each Tag encountered while loading. |
lpPrivateData | LPVOID | Pointer to private data (passed to callback function). |
This function does not process image pixels.
JPEG, Filters, FlashPix
Copy Code
|
|
---|---|
IG_load_tag_CB_register(NULL, NULL); |
This function registers a callback function of type LPFNIG_TAG_GET, LPFNIG_TAG_SET, or LPFNIG_TAG_USER_GET.
See the Core Component Callback Functions Reference section. These callback function types are defined by ImageGear to take a certain set of parameters and to return data to you. Your callback function must supply ImageGear with the type of data required by the callback that you choose.
Once you have written a callback function in one of the types listed above, this function should be called to register it. Once registered, your function will be called once for each Tag encountered while loading a file. A "tag" may also be known as an element in the image's header, or as non-image data. The TIFF format popularized the use of the word "tag".
Different file formats have different sets of tags.