NAMEregistry - The Registry
SYNOPSISMagickBooleanType DeleteMagickRegistry( const long id ); const void * GetMagickRegistry( const long id, RegistryType *type, size_t *length, ExceptionInfo *exception ); long SetMagickRegistry( const RegistryType type, const void *blob, const size_t length, ExceptionInfo *exception );
FUNCTION DESCRIPTIONS
DeleteMagickRegistryDeleteMagickRegistry() deletes an entry in the registry as defined by the id. It returns MagickTrue if the entry is deleted otherwise MagickFalse if no entry is found in the registry that matches the id. The format of the DeleteMagickRegistry method is: MagickBooleanType DeleteMagickRegistry ( const long id ); A description of each parameter follows:
GetImageFromMagickRegisty
The format of the GetImageFromMagickRegistry method is: Image *GetImageFromMagickRegistry(const char *name,long *id, ExceptionInfo *exception) A description of each parameter follows:
GetMagickRegistryGetMagickRegistry() gets a blob from the registry as defined by the id. If the blob that matches the id is not found, NULL is returned. The format of the GetMagickRegistry method is: const void *GetMagickRegistry ( const long id, RegistryType *type, size_t *length, ExceptionInfo *exception ); A description of each parameter follows:
SetMagickRegistrySetMagickRegistry() sets a blob into the registry and returns a unique ID. If an error occurs, -1 is returned. The format of the SetMagickRegistry method is: long SetMagickRegistry ( const RegistryType type, const void *blob, const size_t length, ExceptionInfo *exception ); A description of each parameter follows:
|