Creates a new redactor instance.
Declaration:
Copy Code | |
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_redactor_create(
const LPHIG_REC_REDACTOR lphigRecRedactor
);
|
Arguments:
Name | Type | Description |
lphigRecRedactor | const LPHIG_REC_REDACTOR | The far pointer indicating where to return the handle of the redactor instance. |
Return Value:
The number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.Supported Raster Image Formats:
This function does not process image pixels.
Remarks:
Callers are required to call IG_REC_redactor_delete to release resources owned by lphigRecRedactor.
Example:
Copy Code | |
---|---|
AT_ERRCOUNT errCount = 0 ; HIG_REC_REDACTOR higRecRedactor = 0 ; errCount = IG_REC_redactor_create( &higRecRedactor ) ; IG_REC_redactor_delete( higRecRedactor ) ; |
Remarks:
Callers are required to call IG_REC_redactor_delete to release resources owned by lphigRecRedactor.