HomeSort by relevance Sort by last modified time
    Searched defs:wand (Results 1 - 17 of 17) sorted by null

  /external/ImageMagick/MagickWand/tests/
add_first.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
33 printf("Check prepend when using 'FirstIterator' on empty wand\n");
38 wand = NewMagickWand();
40 MagickSetFirstIterator(wand); /* set first iterator to empty wand */
42 status = MagickReadImage(wand, "font_0.gif" );
44 ThrowWandException(wand);
46 status = MagickReadImage(wand, "font_1.gif" )
    [all...]
add_first_lists.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
33 printf("Add 3 sets of images after setting 'first' on empty wand\n");
38 wand = NewMagickWand();
41 MagickSetFirstIterator(wand);
49 status = MagickAddImage(wand, input);
51 ThrowWandException(wand);
60 status = MagickAddImage(wand, input);
62 ThrowWandException(wand);
    [all...]
add_index.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
38 wand = NewMagickWand();
48 status = MagickAddImage(wand, input);
50 ThrowWandException(wand);
53 MagickSetIteratorIndex(wand, 1);
55 status = MagickReadImage(wand, "font_4.gif" );
57 ThrowWandException(wand);
59 status = MagickReadImage(wand, "font_5.gif" )
    [all...]
add_last.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
32 printf("Check append when using 'LastIterator' on empty wand\n");
37 wand = NewMagickWand();
39 MagickSetLastIterator(wand); /* to empty wand */
41 status = MagickReadImage(wand, "font_0.gif" );
43 ThrowWandException(wand);
45 status = MagickReadImage(wand, "font_1.gif" )
    [all...]
add_last_lists.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
33 printf("Add 3 sets of images after setting 'last' on empty wand\n");
38 wand = NewMagickWand();
41 MagickSetLastIterator(wand);
49 status = MagickAddImage(wand, input);
51 ThrowWandException(wand);
60 status = MagickAddImage(wand, input);
62 ThrowWandException(wand);
    [all...]
add_mixed.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, /* red image wand */ local
38 wand = NewMagickWand();
40 /* add test from empty wand */
41 status = MagickReadImage(wand, "font_0.gif" );
43 ThrowWandException(wand);
45 status = MagickReadImage(wand, "font_1.gif" );
47 ThrowWandException(wand);
    [all...]
add_mixed_lists.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, /* red image wand */ local
27 *input, /* red image wand */
38 wand = NewMagickWand();
47 status = MagickAddImage(wand, input);
49 ThrowWandException(wand);
58 MagickSetFirstIterator(wand);
59 status = MagickAddImage(wand, input)
    [all...]
add_norm.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
37 wand = NewMagickWand();
39 status = MagickReadImage(wand, "font_0.gif" );
41 ThrowWandException(wand);
43 status = MagickReadImage(wand, "font_1.gif" );
45 ThrowWandException(wand);
47 status = MagickReadImage(wand, "font_2.gif" );
49 ThrowWandException(wand);
    [all...]
add_norm_lists.c 8 void ThrowWandException(MagickWand *wand)
15 description=MagickGetException(wand,&severity);
26 *wand, local
38 wand = NewMagickWand();
47 status = MagickAddImage(wand, input);
49 ThrowWandException(wand);
58 status = MagickAddImage(wand, input);
60 ThrowWandException(wand);
70 status = MagickAddImage(wand, input);
72 ThrowWandException(wand);
    [all...]
loop_over_lists.c 4 /* set this to true to test loops methods with a empty wand */
11 void ThrowWandException(MagickWand *wand)
18 description=MagickGetException(wand,&severity);
29 *wand, local
39 wand = NewMagickWand();
41 status = MagickReadImage(wand, "font_0.gif" )
42 && MagickReadImage(wand, "font_1.gif" )
43 && MagickReadImage(wand, "font_2.gif" )
44 && MagickReadImage(wand, "font_3.gif" )
45 && MagickReadImage(wand, "font_4.gif"
    [all...]
  /external/ImageMagick/MagickWand/
wandcli-private.h 16 ImageMagick pixel wand API.
98 while still allowing the Wand to be passed to MagickWand API
104 wand; /* The Image List and Global Option Settings */ member in struct:_MagickCLI
magick-wand.c 19 % MagickWand Wand Methods %
52 #include "MagickWand/magick-wand-private.h"
53 #include "MagickWand/wand.h"
67 % ClearMagickWand() clears resources associated with the wand, leaving the
68 % wand blank, and ready to be used for a new set of images.
72 % void ClearMagickWand(MagickWand *wand)
76 % o wand: the magick wand.
79 WandExport void ClearMagickWand(MagickWand *wand)
81 assert(wand != (MagickWand *) NULL)
1056 *wand; local
1108 *wand; local
    [all...]
wand-view.c 18 % MagickWand Wand View Methods %
51 #include "MagickWand/magick-wand-private.h"
52 #include "MagickWand/wand.h"
77 *wand;
110 % CloneWandView() makes a copy of the specified wand view.
118 % o wand_view: the wand view.
170 % DestroyWandView() deallocates memory associated with a wand view.
178 % o wand_view: the wand view.
223 % DuplexTransferWandViewIterator() iterates over three wand views in
227 % dimension. However, the destination wand view is confined to the imag
75 *wand; member in struct:_WandView
    [all...]
pixel-wand.c 19 % MagickWand Image Pixel Wand Methods %
52 #include "MagickWand/magick-wand-private.h"
53 #include "MagickWand/pixel-wand-private.h"
54 #include "MagickWand/wand.h"
102 % ClearPixelWand() clears resources associated with the wand.
106 % void ClearPixelWand(PixelWand *wand)
110 % o wand: the pixel wand.
113 WandExport void ClearPixelWand(PixelWand *wand)
115 assert(wand != (PixelWand *) NULL)
394 *wand; local
    [all...]
drawing-wand.c 52 #include "MagickWand/magick-wand-private.h"
53 #include "MagickWand/wand.h"
62 #define CurrentContext (wand->graphic_context[wand->index])
65 wand->exception,GetMagickModule(),severity,tag,"`%s'",reason);
129 /* Graphic wand */
174 static int MVGPrintf(DrawingWand *wand,const char *format,...)
179 if (wand->debug != MagickFalse)
181 assert(wand != (DrawingWand *) NULL);
182 assert(wand->signature == MagickWandSignature)
376 *wand; local
6701 *wand; local
    [all...]
magick-image.c 52 #include "MagickWand/magick-wand-private.h"
53 #include "MagickWand/wand.h"
54 #include "MagickWand/pixel-wand-private.h"
75 % CloneMagickWandFromImages() clones the magick wand and inserts a new image
80 % MagickWand *CloneMagickWandFromImages(const MagickWand *wand,
85 % o wand: the magick wand.
90 static MagickWand *CloneMagickWandFromImages(const MagickWand *wand,
96 assert(wand != (MagickWand *) NULL);
97 assert(wand->signature == MagickWandSignature)
6325 *wand; local
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 2753 *wand; local
2774 *wand; local
    [all...]

Completed in 7229 milliseconds