ImageImportPlugin::ReleaseImageData
Defined in:
Releases an imported image.
C4Plugins.h
Prototype
virtual void ReleaseImageData(void *image) = 0;
Parameters
image |
A pointer to the image data to release. |
Description
The ReleaseImageData
function releases the image data buffer specified by the image
parameter that was previously allocated by the ImageImportPlugin::ImportImageFile
function. The ReleaseImageData
function must be overridden by subclasses of the ImageImportPlugin
class.
See Also