Searched defs:cli_wand (Results 1 - 5 of 5) sorted by relevance

/external/ImageMagick/api_examples/
H A Dcli_operators.c31 *cli_wand; local
35 cli_wand = AcquireMagickCLI((ImageInfo *) NULL,(ExceptionInfo *) NULL);
37 CLISettingOptionInfo (cli_wand, "-size", "100x100");
38 CLISpecialOperator (cli_wand, "-read", "xc:red");
39 CLISpecialOperator (cli_wand, "(", NULL);
40 CLISpecialOperator (cli_wand, "-read", "rose:");
41 CLISimpleOperatorImages (cli_wand, "-rotate", "-90", NULL);
42 CLISpecialOperator (cli_wand, ")", NULL);
43 CLIListOperatorImages (cli_wand, "+append", NULL, NULL);
44 CLIListOperatorImages (cli_wand, "
[all...]
H A Dcli_process.c28 *cli_wand; local
39 cli_wand = AcquireMagickCLI((ImageInfo *) NULL,(ExceptionInfo *) NULL);
41 ProcessCommandOptions(cli_wand, arg_count, args, 0, MagickCommandOptionFlags);
44 if ( CLICatchException(cli_wand,MagickTrue) != MagickFalse )
48 cli_wand = DestroyMagickCLI(cli_wand);
/external/ImageMagick/MagickWand/
H A Dwandcli.c79 *cli_wand;
90 cli_wand=(MagickCLI *) AcquireMagickMemory(sizeof(*cli_wand));
91 if (cli_wand == (MagickCLI *) NULL)
99 cli_wand->wand.id=AcquireWandId();
100 (void) FormatLocaleString(cli_wand->wand.name,MagickPathExtent,
101 "%s-%.20g","MagickWandCLI", (double) cli_wand->wand.id);
102 cli_wand->wand.images=NewImageList();
104 cli_wand->wand.image_info=AcquireImageInfo();
106 cli_wand
77 *cli_wand; local
155 DestroyMagickCLI(MagickCLI *cli_wand) argument
232 CLICatchException(MagickCLI *cli_wand, const MagickBooleanType all_exceptions) argument
271 CLILogEvent(MagickCLI *cli_wand, const LogEventType type,const char *module,const char *function, const size_t line,const char *format,...) argument
315 CLIThrowException(MagickCLI *cli_wand, const char *module,const char *function,const size_t line, const ExceptionType severity,const char *tag,const char *format,...) argument
[all...]
H A Dmagick-cli.c98 % void ProcessScriptOptions(MagickCLI *cli_wand,const char *filename,
103 % o cli_wand: the main CLI Wand to use.
114 WandExport void ProcessScriptOptions(MagickCLI *cli_wand,const char *filename,
132 assert(cli_wand != (MagickCLI *) NULL);
133 assert(cli_wand->signature == MagickWandSignature);
134 if (cli_wand->wand.debug != MagickFalse)
147 cli_wand->location="in \"%s\" at line %u,column %u";
149 cli_wand->filename="stdin";
151 cli_wand->filename=filename;
160 cli_wand
111 ProcessScriptOptions(MagickCLI *cli_wand,const char *filename, int argc,char **argv,int index) argument
355 ProcessCommandOptions(MagickCLI *cli_wand,int argc,char **argv, int index) argument
687 *cli_wand; local
[all...]
H A Doperation.c404 % void CLISettingOptionInfo(MagickCLI *cli_wand,
409 % o cli_wand: structure holding settings to be applied
417 WandPrivate void CLISettingOptionInfo(MagickCLI *cli_wand,
427 #define _image_info (cli_wand->wand.image_info)
428 #define _image (cli_wand->wand.images)
429 #define _exception (cli_wand->wand.exception)
430 #define _draw_info (cli_wand->draw_info)
431 #define _quantize_info (cli_wand->quantize_info)
438 assert(cli_wand != (MagickCLI *) NULL);
439 assert(cli_wand
412 CLISettingOptionInfo(MagickCLI *cli_wand, const char *option,const char *arg1n, const char *arg2n) argument
1643 CLISimpleOperatorImage(MagickCLI *cli_wand, const char *option, const char *arg1n, const char *arg2n, ExceptionInfo *exception) argument
3602 CLISimpleOperatorImages(MagickCLI *cli_wand, const char *option,const char *arg1,const char *arg2,ExceptionInfo *exception) argument
3674 CLIListOperatorImages(MagickCLI *cli_wand, const char *option,const char *arg1n,const char *arg2n) argument
4596 CLINoImageOperator(MagickCLI *cli_wand, const char *option,const char *arg1n,const char *arg2n) argument
5119 CLIOption(MagickCLI *cli_wand,const char *option,...) argument
[all...]

Completed in 105 milliseconds