OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cli_wand
(Results
1 - 4
of
4
) sorted by null
/external/ImageMagick/api_examples/
cli_operators.c
31
*
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
, "-write", "show:", NULL)
[
all
...]
cli_process.c
28
*
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/
wandcli.c
79
*
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
->wand.image_info=image_info
77
*
cli_wand
;
local
[
all
...]
magick-cli.c
98
% 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
->line=token_info->token_line
687
*
cli_wand
;
local
[
all
...]
Completed in 119 milliseconds