AcquireModuleInfo • DestroyModuleList • GetModuleInfo • GetModuleInfoList • GetModuleList • GetMagickModulePath • IsModuleTreeInstantiated • InvokeDynamicImageFilter • ListModuleInfo • OpenModule • OpenModules • RegisterModule • TagToCoderModuleName • TagToFilterModuleName • TagToModuleName • UnregisterModule
AcquireModuleInfo() allocates the ModuleInfo structure.
The format of the AcquireModuleInfo method is:
ModuleInfo *AcquireModuleInfo(const char *path,const char *tag)
A description of each parameter follows:
DestroyModuleList() unregisters any previously loaded modules and exits the module loaded environment.
The format of the DestroyModuleList module is:
void DestroyModuleList(void)
GetModuleInfo() returns a pointer to a ModuleInfo structure that matches the specified tag. If tag is NULL, the head of the module list is returned. If no modules are loaded, or the requested module is not found, NULL is returned.
The format of the GetModuleInfo module is:
ModuleInfo *GetModuleInfo(const char *tag,ExceptionInfo *exception)
A description of each parameter follows:
GetModuleInfoList() returns any modules that match the specified pattern.
The format of the GetModuleInfoList function is:
const ModuleInfo **GetModuleInfoList(const char *pattern, size_t *number_modules,ExceptionInfo *exception)
A description of each parameter follows:
GetModuleList() returns any image format modules that match the specified pattern.
The format of the GetModuleList function is:
char **GetModuleList(const char *pattern,const MagickModuleType type, size_t *number_modules,ExceptionInfo *exception)
A description of each parameter follows:
GetMagickModulePath() finds a module with the specified module type and filename.
The format of the GetMagickModulePath module is:
MagickBooleanType GetMagickModulePath(const char *filename, MagickModuleType module_type,char *path,ExceptionInfo *exception)
A description of each parameter follows:
IsModuleTreeInstantiated() determines if the module tree is instantiated. If not, it instantiates the tree and returns it.
The format of the IsModuleTreeInstantiated() method is:
IsModuleTreeInstantiated()
InvokeDynamicImageFilter() invokes a dynamic image filter.
The format of the InvokeDynamicImageFilter module is:
MagickBooleanType InvokeDynamicImageFilter(const char *tag,Image **image, const int argc,const char **argv,ExceptionInfo *exception)
A description of each parameter follows:
ListModuleInfo() lists the module info to a file.
The format of the ListModuleInfo module is:
MagickBooleanType ListModuleInfo(FILE *file,ExceptionInfo *exception)
A description of each parameter follows.
An pointer to a FILE.
return any errors or warnings in this structure.
OpenModule() loads a module, and invokes its registration module. It returns MagickTrue on success, and MagickFalse if there is an error.
The format of the OpenModule module is:
MagickBooleanType OpenModule(const char *module,ExceptionInfo *exception)
A description of each parameter follows:
OpenModules() loads all available modules.
The format of the OpenModules module is:
MagickBooleanType OpenModules(ExceptionInfo *exception)
A description of each parameter follows:
RegisterModule() adds an entry to the module list. It returns a pointer to the registered entry on success.
The format of the RegisterModule module is:
ModuleInfo *RegisterModule(const ModuleInfo *module_info, ExceptionInfo *exception)
A description of each parameter follows:
TagToCoderModuleName() munges a module tag and obtains the filename of the corresponding module.
The format of the TagToCoderModuleName module is:
char *TagToCoderModuleName(const char *tag,char *name)
A description of each parameter follows:
TagToFilterModuleName() munges a module tag and returns the filename of the corresponding filter module.
The format of the TagToFilterModuleName module is:
void TagToFilterModuleName(const char *tag,char name)
A description of each parameter follows:
TagToModuleName() munges the module tag name and returns an upper-case tag name as the input string, and a user-provided format.
The format of the TagToModuleName module is:
TagToModuleName(const char *tag,const char *format,char *module)
A description of each parameter follows:
UnregisterModule() unloads a module, and invokes its de-registration module. Returns MagickTrue on success, and MagickFalse if there is an error.
The format of the UnregisterModule module is:
MagickBooleanType UnregisterModule(const ModuleInfo *module_info, ExceptionInfo *exception)
A description of each parameter follows: