• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                 M   M   AAA    GGGG  IIIII   CCCC  K   K                    %
7 %                 MM MM  A   A  G        I    C      K  K                     %
8 %                 M M M  AAAAA  G GGG    I    C      KKK                      %
9 %                 M   M  A   A  G   G    I    C      K  K                     %
10 %                 M   M  A   A   GGGG  IIIII   CCCC  K   K                    %
11 %                                                                             %
12 %                     IIIII  M   M   AAA    GGGG  EEEEE                       %
13 %                       I    MM MM  A   A  G      E                           %
14 %                       I    M M M  AAAAA  G  GG  EEE                         %
15 %                       I    M   M  A   A  G   G  E                           %
16 %                     IIIII  M   M  A   A   GGGG  EEEEE                       %
17 %                                                                             %
18 %                                                                             %
19 %                          MagickWand Image Methods                           %
20 %                                                                             %
21 %                               Software Design                               %
22 %                                    Cristy                                   %
23 %                                 August 2003                                 %
24 %                                                                             %
25 %                                                                             %
26 %  Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization      %
27 %  dedicated to making software imaging solutions freely available.           %
28 %                                                                             %
29 %  You may not use this file except in compliance with the License.  You may  %
30 %  obtain a copy of the License at                                            %
31 %                                                                             %
32 %    https://imagemagick.org/script/license.php                               %
33 %                                                                             %
34 %  Unless required by applicable law or agreed to in writing, software        %
35 %  distributed under the License is distributed on an "AS IS" BASIS,          %
36 %  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   %
37 %  See the License for the specific language governing permissions and        %
38 %  limitations under the License.                                             %
39 %                                                                             %
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41 %
42 %
43 %
44 */
45 
46 /*
47   Include declarations.
48 */
49 #include "MagickWand/studio.h"
50 #include "MagickWand/MagickWand.h"
51 #include "MagickWand/magick-wand-private.h"
52 #include "MagickWand/wand.h"
53 #include "MagickWand/pixel-wand-private.h"
54 #include "MagickCore/image-private.h"
55 
56 /*
57   Define declarations.
58 */
59 #define MagickWandId  "MagickWand"
60 
61 /*
62 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63 %                                                                             %
64 %                                                                             %
65 %                                                                             %
66 +   C l o n e M a g i c k W a n d F r o m I m a g e s                         %
67 %                                                                             %
68 %                                                                             %
69 %                                                                             %
70 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71 %
72 %  CloneMagickWandFromImages() clones the magick wand and inserts a new image
73 %  list.
74 %
75 %  The format of the CloneMagickWandFromImages method is:
76 %
77 %      MagickWand *CloneMagickWandFromImages(const MagickWand *wand,
78 %        Image *images)
79 %
80 %  A description of each parameter follows:
81 %
82 %    o wand: the magick wand.
83 %
84 %    o images: replace the image list with these image(s).
85 %
86 */
CloneMagickWandFromImages(const MagickWand * wand,Image * images)87 static MagickWand *CloneMagickWandFromImages(const MagickWand *wand,
88   Image *images)
89 {
90   MagickWand
91     *clone_wand;
92 
93   assert(wand != (MagickWand *) NULL);
94   assert(wand->signature == MagickWandSignature);
95   if (wand->debug != MagickFalse)
96     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
97   clone_wand=(MagickWand *) AcquireMagickMemory(sizeof(*clone_wand));
98   if (clone_wand == (MagickWand *) NULL)
99     ThrowWandFatalException(ResourceLimitFatalError,"MemoryAllocationFailed",
100       images->filename);
101   (void) memset(clone_wand,0,sizeof(*clone_wand));
102   clone_wand->id=AcquireWandId();
103   (void) FormatLocaleString(clone_wand->name,MagickPathExtent,"%s-%.20g",
104     MagickWandId,(double) clone_wand->id);
105   clone_wand->exception=AcquireExceptionInfo();
106   InheritException(clone_wand->exception,wand->exception);
107   clone_wand->image_info=CloneImageInfo(wand->image_info);
108   clone_wand->images=images;
109   clone_wand->debug=IsEventLogging();
110   clone_wand->signature=MagickWandSignature;
111   if (clone_wand->debug != MagickFalse)
112     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",clone_wand->name);
113   return(clone_wand);
114 }
115 
116 /*
117 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
118 %                                                                             %
119 %                                                                             %
120 %                                                                             %
121 %   G e t I m a g e F r o m M a g i c k W a n d                               %
122 %                                                                             %
123 %                                                                             %
124 %                                                                             %
125 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
126 %
127 %  GetImageFromMagickWand() returns the current image from the magick wand.
128 %
129 %  The format of the GetImageFromMagickWand method is:
130 %
131 %      Image *GetImageFromMagickWand(const MagickWand *wand)
132 %
133 %  A description of each parameter follows:
134 %
135 %    o wand: the magick wand.
136 %
137 */
GetImageFromMagickWand(const MagickWand * wand)138 WandExport Image *GetImageFromMagickWand(const MagickWand *wand)
139 {
140   assert(wand != (MagickWand *) NULL);
141   assert(wand->signature == MagickWandSignature);
142   if (wand->debug != MagickFalse)
143     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
144   if (wand->images == (Image *) NULL)
145     {
146       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
147         "ContainsNoImages","`%s'",wand->name);
148       return((Image *) NULL);
149     }
150   return(wand->images);
151 }
152 
153 /*
154 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
155 %                                                                             %
156 %                                                                             %
157 %                                                                             %
158 %   M a g i c k A d a p t i v e S h a r p e n I m a g e                       %
159 %                                                                             %
160 %                                                                             %
161 %                                                                             %
162 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
163 %
164 %  MagickAdaptiveBlurImage() adaptively blurs the image by blurring
165 %  less intensely near image edges and more intensely far from edges. We
166 %  blur the image with a Gaussian operator of the given radius and standard
167 %  deviation (sigma).  For reasonable results, radius should be larger than
168 %  sigma.  Use a radius of 0 and MagickAdaptiveBlurImage() selects a
169 %  suitable radius for you.
170 %
171 %  The format of the MagickAdaptiveBlurImage method is:
172 %
173 %      MagickBooleanType MagickAdaptiveBlurImage(MagickWand *wand,
174 %        const double radius,const double sigma)
175 %
176 %  A description of each parameter follows:
177 %
178 %    o wand: the magick wand.
179 %
180 %    o radius: the radius of the Gaussian, in pixels, not counting the center
181 %      pixel.
182 %
183 %    o sigma: the standard deviation of the Gaussian, in pixels.
184 %
185 */
MagickAdaptiveBlurImage(MagickWand * wand,const double radius,const double sigma)186 WandExport MagickBooleanType MagickAdaptiveBlurImage(MagickWand *wand,
187   const double radius,const double sigma)
188 {
189   Image
190     *sharp_image;
191 
192   assert(wand != (MagickWand *) NULL);
193   assert(wand->signature == MagickWandSignature);
194   if (wand->debug != MagickFalse)
195     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
196   if (wand->images == (Image *) NULL)
197     ThrowWandException(WandError,"ContainsNoImages",wand->name);
198   sharp_image=AdaptiveBlurImage(wand->images,radius,sigma,wand->exception);
199   if (sharp_image == (Image *) NULL)
200     return(MagickFalse);
201   ReplaceImageInList(&wand->images,sharp_image);
202   return(MagickTrue);
203 }
204 
205 /*
206 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
207 %                                                                             %
208 %                                                                             %
209 %                                                                             %
210 %   M a g i c k A d a p t i v e R e s i z e I m a g e                         %
211 %                                                                             %
212 %                                                                             %
213 %                                                                             %
214 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
215 %
216 %  MagickAdaptiveResizeImage() adaptively resize image with data dependent
217 %  triangulation.
218 %
219 %      MagickBooleanType MagickAdaptiveResizeImage(MagickWand *wand,
220 %        const size_t columns,const size_t rows)
221 %
222 %  A description of each parameter follows:
223 %
224 %    o wand: the magick wand.
225 %
226 %    o columns: the number of columns in the scaled image.
227 %
228 %    o rows: the number of rows in the scaled image.
229 %
230 */
MagickAdaptiveResizeImage(MagickWand * wand,const size_t columns,const size_t rows)231 WandExport MagickBooleanType MagickAdaptiveResizeImage(MagickWand *wand,
232   const size_t columns,const size_t rows)
233 {
234   Image
235     *resize_image;
236 
237   assert(wand != (MagickWand *) NULL);
238   assert(wand->signature == MagickWandSignature);
239   if (wand->debug != MagickFalse)
240     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
241   if (wand->images == (Image *) NULL)
242     ThrowWandException(WandError,"ContainsNoImages",wand->name);
243   resize_image=AdaptiveResizeImage(wand->images,columns,rows,wand->exception);
244   if (resize_image == (Image *) NULL)
245     return(MagickFalse);
246   ReplaceImageInList(&wand->images,resize_image);
247   return(MagickTrue);
248 }
249 
250 /*
251 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
252 %                                                                             %
253 %                                                                             %
254 %                                                                             %
255 %   M a g i c k A d a p t i v e S h a r p e n I m a g e                       %
256 %                                                                             %
257 %                                                                             %
258 %                                                                             %
259 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
260 %
261 %  MagickAdaptiveSharpenImage() adaptively sharpens the image by sharpening
262 %  more intensely near image edges and less intensely far from edges. We
263 %  sharpen the image with a Gaussian operator of the given radius and standard
264 %  deviation (sigma).  For reasonable results, radius should be larger than
265 %  sigma.  Use a radius of 0 and MagickAdaptiveSharpenImage() selects a
266 %  suitable radius for you.
267 %
268 %  The format of the MagickAdaptiveSharpenImage method is:
269 %
270 %      MagickBooleanType MagickAdaptiveSharpenImage(MagickWand *wand,
271 %        const double radius,const double sigma)
272 %
273 %  A description of each parameter follows:
274 %
275 %    o wand: the magick wand.
276 %
277 %    o radius: the radius of the Gaussian, in pixels, not counting the center
278 %      pixel.
279 %
280 %    o sigma: the standard deviation of the Gaussian, in pixels.
281 %
282 */
MagickAdaptiveSharpenImage(MagickWand * wand,const double radius,const double sigma)283 WandExport MagickBooleanType MagickAdaptiveSharpenImage(MagickWand *wand,
284   const double radius,const double sigma)
285 {
286   Image
287     *sharp_image;
288 
289   assert(wand != (MagickWand *) NULL);
290   assert(wand->signature == MagickWandSignature);
291   if (wand->debug != MagickFalse)
292     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
293   if (wand->images == (Image *) NULL)
294     ThrowWandException(WandError,"ContainsNoImages",wand->name);
295   sharp_image=AdaptiveSharpenImage(wand->images,radius,sigma,wand->exception);
296   if (sharp_image == (Image *) NULL)
297     return(MagickFalse);
298   ReplaceImageInList(&wand->images,sharp_image);
299   return(MagickTrue);
300 }
301 
302 /*
303 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
304 %                                                                             %
305 %                                                                             %
306 %                                                                             %
307 %   M a g i c k A d a p t i v e T h r e s h o l d I m a g e                   %
308 %                                                                             %
309 %                                                                             %
310 %                                                                             %
311 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
312 %
313 %  MagickAdaptiveThresholdImage() selects an individual threshold for each pixel
314 %  based on the range of intensity values in its local neighborhood.  This
315 %  allows for thresholding of an image whose global intensity histogram
316 %  doesn't contain distinctive peaks.
317 %
318 %  The format of the AdaptiveThresholdImage method is:
319 %
320 %      MagickBooleanType MagickAdaptiveThresholdImage(MagickWand *wand,
321 %        const size_t width,const size_t height,const double bias)
322 %
323 %  A description of each parameter follows:
324 %
325 %    o wand: the magick wand.
326 %
327 %    o width: the width of the local neighborhood.
328 %
329 %    o height: the height of the local neighborhood.
330 %
331 %    o offset: the mean bias.
332 %
333 */
MagickAdaptiveThresholdImage(MagickWand * wand,const size_t width,const size_t height,const double bias)334 WandExport MagickBooleanType MagickAdaptiveThresholdImage(MagickWand *wand,
335   const size_t width,const size_t height,const double bias)
336 {
337   Image
338     *threshold_image;
339 
340   assert(wand != (MagickWand *) NULL);
341   assert(wand->signature == MagickWandSignature);
342   if (wand->debug != MagickFalse)
343     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
344   if (wand->images == (Image *) NULL)
345     ThrowWandException(WandError,"ContainsNoImages",wand->name);
346   threshold_image=AdaptiveThresholdImage(wand->images,width,height,bias,
347     wand->exception);
348   if (threshold_image == (Image *) NULL)
349     return(MagickFalse);
350   ReplaceImageInList(&wand->images,threshold_image);
351   return(MagickTrue);
352 }
353 
354 /*
355 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
356 %                                                                             %
357 %                                                                             %
358 %                                                                             %
359 %   M a g i c k A d d I m a g e                                               %
360 %                                                                             %
361 %                                                                             %
362 %                                                                             %
363 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
364 %
365 %  MagickAddImage() adds a clone of the images from the second wand and
366 %  inserts them into the first wand.
367 %
368 %  Use MagickSetLastIterator(), to append new images into an existing wand,
369 %  current image will be set to last image so later adds with also be
370 %  appened to end of wand.
371 %
372 %  Use MagickSetFirstIterator() to prepend new images into wand, any more
373 %  images added will also be prepended before other images in the wand.
374 %  However the order of a list of new images will not change.
375 %
376 %  Otherwise the new images will be inserted just after the current image,
377 %  and any later image will also be added after this current image but
378 %  before the previously added images.  Caution is advised when multiple
379 %  image adds are inserted into the middle of the wand image list.
380 %
381 %  The format of the MagickAddImage method is:
382 %
383 %      MagickBooleanType MagickAddImage(MagickWand *wand,
384 %        const MagickWand *add_wand)
385 %
386 %  A description of each parameter follows:
387 %
388 %    o wand: the magick wand.
389 %
390 %    o add_wand: A wand that contains the image list to be added
391 %
392 */
InsertImageInWand(MagickWand * wand,Image * images)393 static inline MagickBooleanType InsertImageInWand(MagickWand *wand,
394   Image *images)
395 {
396   if (wand->images == (Image *) NULL)
397     {
398       /*
399         No images in wand, just add them, set current as appropriate.
400       */
401       if (wand->insert_before != MagickFalse)
402         wand->images=GetFirstImageInList(images);
403       else
404         wand->images=GetLastImageInList(images);
405       return(MagickTrue);
406     }
407   /* user jumped to first image, so prepend new images - remain active */
408   if ((wand->insert_before != MagickFalse) &&
409        (wand->images->previous == (Image *) NULL))
410     {
411       PrependImageToList(&wand->images,images);
412       wand->images=GetFirstImageInList(images);
413       return(MagickTrue);
414     }
415   /*
416     Note you should never have 'insert_before' true when current image is not
417     the first image in the wand!  That is no insert before current image, only
418     after current image
419   */
420   if (wand->images->next == (Image *) NULL)
421     {
422       /*
423         At last image, append new images.
424       */
425       InsertImageInList(&wand->images,images);
426       wand->images=GetLastImageInList(images);
427       return(MagickTrue);
428     }
429   /*
430     Insert new images, just after the current image.
431   */
432   InsertImageInList(&wand->images,images);
433   return(MagickTrue);
434 }
435 
MagickAddImage(MagickWand * wand,const MagickWand * add_wand)436 WandExport MagickBooleanType MagickAddImage(MagickWand *wand,
437   const MagickWand *add_wand)
438 {
439   Image
440     *images;
441 
442   assert(wand != (MagickWand *) NULL);
443   assert(wand->signature == MagickWandSignature);
444   if (wand->debug != MagickFalse)
445     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
446   assert(add_wand != (MagickWand *) NULL);
447   assert(add_wand->signature == MagickWandSignature);
448   if (add_wand->images == (Image *) NULL)
449     ThrowWandException(WandError,"ContainsNoImages",add_wand->name);
450   /*
451     Clone images in second wand, and insert into first.
452   */
453   images=CloneImageList(add_wand->images,wand->exception);
454   if (images == (Image *) NULL)
455     return(MagickFalse);
456   return(InsertImageInWand(wand,images));
457 }
458 
459 /*
460 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
461 %                                                                             %
462 %                                                                             %
463 %                                                                             %
464 %     M a g i c k A d d N o i s e I m a g e                                   %
465 %                                                                             %
466 %                                                                             %
467 %                                                                             %
468 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
469 %
470 %  MagickAddNoiseImage() adds random noise to the image.
471 %
472 %  The format of the MagickAddNoiseImage method is:
473 %
474 %      MagickBooleanType MagickAddNoiseImage(MagickWand *wand,
475 %        const NoiseType noise_type,const double attenuate)
476 %
477 %  A description of each parameter follows:
478 %
479 %    o wand: the magick wand.
480 %
481 %    o noise_type:  The type of noise: Uniform, Gaussian, Multiplicative,
482 %      Impulse, Laplacian, or Poisson.
483 %
484 %    o attenuate:  attenuate the random distribution.
485 %
486 */
MagickAddNoiseImage(MagickWand * wand,const NoiseType noise_type,const double attenuate)487 WandExport MagickBooleanType MagickAddNoiseImage(MagickWand *wand,
488   const NoiseType noise_type,const double attenuate)
489 {
490   Image
491     *noise_image;
492 
493   assert(wand != (MagickWand *) NULL);
494   assert(wand->signature == MagickWandSignature);
495   if (wand->debug != MagickFalse)
496     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
497   if (wand->images == (Image *) NULL)
498     ThrowWandException(WandError,"ContainsNoImages",wand->name);
499   noise_image=AddNoiseImage(wand->images,noise_type,attenuate,wand->exception);
500   if (noise_image == (Image *) NULL)
501     return(MagickFalse);
502   ReplaceImageInList(&wand->images,noise_image);
503   return(MagickTrue);
504 }
505 
506 /*
507 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
508 %                                                                             %
509 %                                                                             %
510 %                                                                             %
511 %   M a g i c k A f f i n e T r a n s f o r m I m a g e                       %
512 %                                                                             %
513 %                                                                             %
514 %                                                                             %
515 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
516 %
517 %  MagickAffineTransformImage() transforms an image as dictated by the affine
518 %  matrix of the drawing wand.
519 %
520 %  The format of the MagickAffineTransformImage method is:
521 %
522 %      MagickBooleanType MagickAffineTransformImage(MagickWand *wand,
523 %        const DrawingWand *drawing_wand)
524 %
525 %  A description of each parameter follows:
526 %
527 %    o wand: the magick wand.
528 %
529 %    o drawing_wand: the draw wand.
530 %
531 */
MagickAffineTransformImage(MagickWand * wand,const DrawingWand * drawing_wand)532 WandExport MagickBooleanType MagickAffineTransformImage(MagickWand *wand,
533   const DrawingWand *drawing_wand)
534 {
535   DrawInfo
536     *draw_info;
537 
538   Image
539     *affine_image;
540 
541   assert(wand != (MagickWand *) NULL);
542   assert(wand->signature == MagickWandSignature);
543   if (wand->debug != MagickFalse)
544     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
545   if (wand->images == (Image *) NULL)
546     ThrowWandException(WandError,"ContainsNoImages",wand->name);
547   draw_info=PeekDrawingWand(drawing_wand);
548   if (draw_info == (DrawInfo *) NULL)
549     return(MagickFalse);
550   affine_image=AffineTransformImage(wand->images,&draw_info->affine,
551     wand->exception);
552   draw_info=DestroyDrawInfo(draw_info);
553   if (affine_image == (Image *) NULL)
554     return(MagickFalse);
555   ReplaceImageInList(&wand->images,affine_image);
556   return(MagickTrue);
557 }
558 
559 /*
560 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
561 %                                                                             %
562 %                                                                             %
563 %                                                                             %
564 %   M a g i c k A n n o t a t e I m a g e                                     %
565 %                                                                             %
566 %                                                                             %
567 %                                                                             %
568 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
569 %
570 %  MagickAnnotateImage() annotates an image with text.
571 %
572 %  The format of the MagickAnnotateImage method is:
573 %
574 %      MagickBooleanType MagickAnnotateImage(MagickWand *wand,
575 %        const DrawingWand *drawing_wand,const double x,const double y,
576 %        const double angle,const char *text)
577 %
578 %  A description of each parameter follows:
579 %
580 %    o wand: the magick wand.
581 %
582 %    o drawing_wand: the draw wand.
583 %
584 %    o x: x ordinate to left of text
585 %
586 %    o y: y ordinate to text baseline
587 %
588 %    o angle: rotate text relative to this angle.
589 %
590 %    o text: text to draw
591 %
592 */
MagickAnnotateImage(MagickWand * wand,const DrawingWand * drawing_wand,const double x,const double y,const double angle,const char * text)593 WandExport MagickBooleanType MagickAnnotateImage(MagickWand *wand,
594   const DrawingWand *drawing_wand,const double x,const double y,
595   const double angle,const char *text)
596 {
597   char
598     geometry[MagickPathExtent];
599 
600   DrawInfo
601     *draw_info;
602 
603   MagickBooleanType
604     status;
605 
606   assert(wand != (MagickWand *) NULL);
607   assert(wand->signature == MagickWandSignature);
608   if (wand->debug != MagickFalse)
609     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
610   if (wand->images == (Image *) NULL)
611     ThrowWandException(WandError,"ContainsNoImages",wand->name);
612   draw_info=PeekDrawingWand(drawing_wand);
613   if (draw_info == (DrawInfo *) NULL)
614     return(MagickFalse);
615   (void) CloneString(&draw_info->text,text);
616   (void) FormatLocaleString(geometry,MagickPathExtent,"%+g%+g",x,y);
617   draw_info->affine.sx=cos((double) DegreesToRadians(fmod(angle,360.0)));
618   draw_info->affine.rx=sin((double) DegreesToRadians(fmod(angle,360.0)));
619   draw_info->affine.ry=(-sin((double) DegreesToRadians(fmod(angle,360.0))));
620   draw_info->affine.sy=cos((double) DegreesToRadians(fmod(angle,360.0)));
621   (void) CloneString(&draw_info->geometry,geometry);
622   status=AnnotateImage(wand->images,draw_info,wand->exception);
623   draw_info=DestroyDrawInfo(draw_info);
624   return(status);
625 }
626 
627 /*
628 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
629 %                                                                             %
630 %                                                                             %
631 %                                                                             %
632 %   M a g i c k A n i m a t e I m a g e s                                     %
633 %                                                                             %
634 %                                                                             %
635 %                                                                             %
636 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
637 %
638 %  MagickAnimateImages() animates an image or image sequence.
639 %
640 %  The format of the MagickAnimateImages method is:
641 %
642 %      MagickBooleanType MagickAnimateImages(MagickWand *wand,
643 %        const char *server_name)
644 %
645 %  A description of each parameter follows:
646 %
647 %    o wand: the magick wand.
648 %
649 %    o server_name: the X server name.
650 %
651 */
MagickAnimateImages(MagickWand * wand,const char * server_name)652 WandExport MagickBooleanType MagickAnimateImages(MagickWand *wand,
653   const char *server_name)
654 {
655   MagickBooleanType
656     status;
657 
658   assert(wand != (MagickWand *) NULL);
659   assert(wand->signature == MagickWandSignature);
660   if (wand->debug != MagickFalse)
661     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
662   (void) CloneString(&wand->image_info->server_name,server_name);
663   status=AnimateImages(wand->image_info,wand->images,wand->exception);
664   return(status);
665 }
666 
667 /*
668 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
669 %                                                                             %
670 %                                                                             %
671 %                                                                             %
672 %   M a g i c k A p p e n d I m a g e s                                       %
673 %                                                                             %
674 %                                                                             %
675 %                                                                             %
676 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
677 %
678 %  MagickAppendImages() append the images in a wand from the current image
679 %  onwards, creating a new wand with the single image result.  This is
680 %  affected by the gravity and background settings of the first image.
681 %
682 %  Typically you would call either MagickResetIterator() or
683 %  MagickSetFirstImage() before calling this function to ensure that all
684 %  the images in the wand's image list will be appended together.
685 %
686 %  The format of the MagickAppendImages method is:
687 %
688 %      MagickWand *MagickAppendImages(MagickWand *wand,
689 %        const MagickBooleanType stack)
690 %
691 %  A description of each parameter follows:
692 %
693 %    o wand: the magick wand.
694 %
695 %    o stack: By default, images are stacked left-to-right. Set stack to
696 %      MagickTrue to stack them top-to-bottom.
697 %
698 */
MagickAppendImages(MagickWand * wand,const MagickBooleanType stack)699 WandExport MagickWand *MagickAppendImages(MagickWand *wand,
700   const MagickBooleanType stack)
701 {
702   Image
703     *append_image;
704 
705   assert(wand != (MagickWand *) NULL);
706   assert(wand->signature == MagickWandSignature);
707   if (wand->debug != MagickFalse)
708     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
709   if (wand->images == (Image *) NULL)
710     return((MagickWand *) NULL);
711   append_image=AppendImages(wand->images,stack,wand->exception);
712   if (append_image == (Image *) NULL)
713     return((MagickWand *) NULL);
714   return(CloneMagickWandFromImages(wand,append_image));
715 }
716 
717 /*
718 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
719 %                                                                             %
720 %                                                                             %
721 %                                                                             %
722 %   M a g i c k A u t o G a m m a I m a g e                                   %
723 %                                                                             %
724 %                                                                             %
725 %                                                                             %
726 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
727 %
728 %  MagickAutoGammaImage() extracts the 'mean' from the image and adjust the
729 %  image to try make set its gamma appropriatally.
730 %
731 %  The format of the MagickAutoGammaImage method is:
732 %
733 %      MagickBooleanType MagickAutoGammaImage(MagickWand *wand)
734 %
735 %  A description of each parameter follows:
736 %
737 %    o wand: the magick wand.
738 %
739 */
MagickAutoGammaImage(MagickWand * wand)740 WandExport MagickBooleanType MagickAutoGammaImage(MagickWand *wand)
741 {
742   MagickBooleanType
743     status;
744 
745   assert(wand != (MagickWand *) NULL);
746   assert(wand->signature == MagickWandSignature);
747   if (wand->debug != MagickFalse)
748     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
749   if (wand->images == (Image *) NULL)
750     ThrowWandException(WandError,"ContainsNoImages",wand->name);
751   status=AutoGammaImage(wand->images,wand->exception);
752   return(status);
753 }
754 
755 /*
756 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
757 %                                                                             %
758 %                                                                             %
759 %                                                                             %
760 %   M a g i c k A u t o L e v e l I m a g e                                   %
761 %                                                                             %
762 %                                                                             %
763 %                                                                             %
764 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
765 %
766 %  MagickAutoLevelImage() adjusts the levels of a particular image channel by
767 %  scaling the minimum and maximum values to the full quantum range.
768 %
769 %  The format of the MagickAutoLevelImage method is:
770 %
771 %      MagickBooleanType MagickAutoLevelImage(MagickWand *wand)
772 %
773 %  A description of each parameter follows:
774 %
775 %    o wand: the magick wand.
776 %
777 */
MagickAutoLevelImage(MagickWand * wand)778 WandExport MagickBooleanType MagickAutoLevelImage(MagickWand *wand)
779 {
780   MagickBooleanType
781     status;
782 
783   assert(wand != (MagickWand *) NULL);
784   assert(wand->signature == MagickWandSignature);
785   if (wand->debug != MagickFalse)
786     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
787   if (wand->images == (Image *) NULL)
788     ThrowWandException(WandError,"ContainsNoImages",wand->name);
789   status=AutoLevelImage(wand->images,wand->exception);
790   return(status);
791 }
792 
793 /*
794 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
795 %                                                                             %
796 %                                                                             %
797 %                                                                             %
798 %   M a g i c k A u t o O r i e n t I m a g e                                 %
799 %                                                                             %
800 %                                                                             %
801 %                                                                             %
802 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
803 %
804 %  MagickAutoOrientImage() adjusts an image so that its orientation is suitable
805 $  for viewing (i.e. top-left orientation).
806 %
807 %  The format of the MagickAutoOrientImage method is:
808 %
809 %      MagickBooleanType MagickAutoOrientImage(MagickWand *image)
810 %
811 %  A description of each parameter follows:
812 %
813 %    o wand: the magick wand.
814 %
815 */
MagickAutoOrientImage(MagickWand * wand)816 WandExport MagickBooleanType MagickAutoOrientImage(MagickWand *wand)
817 {
818 
819   Image
820     *orient_image;
821 
822   assert(wand != (MagickWand *) NULL);
823   assert(wand->signature == MagickWandSignature);
824   if (wand->debug != MagickFalse)
825     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
826   if (wand->images == (Image *) NULL)
827     ThrowWandException(WandError,"ContainsNoImages",wand->name);
828   orient_image=AutoOrientImage(wand->images,wand->images->orientation,
829     wand->exception);
830   if (orient_image == (Image *) NULL)
831     return(MagickFalse);
832   ReplaceImageInList(&wand->images,orient_image);
833   return(MagickTrue);
834 }
835 
836 /*
837 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
838 %                                                                             %
839 %                                                                             %
840 %                                                                             %
841 %   M a g i c k A u t o T h r e s h o l d I m a g e                           %
842 %                                                                             %
843 %                                                                             %
844 %                                                                             %
845 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
846 %
847 %  MagickAutoThresholdImage() automatically performs image thresholding
848 %  dependent on which method you specify.
849 %
850 %  The format of the AutoThresholdImage method is:
851 %
852 %      MagickBooleanType MagickAutoThresholdImage(MagickWand *wand,
853 %        const AutoThresholdMethod method)
854 %
855 %  A description of each parameter follows:
856 %
857 %    o wand: the magick wand.
858 %
859 %    o method: choose from KapurThresholdMethod, OTSUThresholdMethod, or
860 %      TriangleThresholdMethod.
861 %
862 */
MagickAutoThresholdImage(MagickWand * wand,const AutoThresholdMethod method)863 WandExport MagickBooleanType MagickAutoThresholdImage(MagickWand *wand,
864   const AutoThresholdMethod method)
865 {
866   assert(wand != (MagickWand *) NULL);
867   assert(wand->signature == MagickWandSignature);
868   if (wand->debug != MagickFalse)
869     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
870   if (wand->images == (Image *) NULL)
871     ThrowWandException(WandError,"ContainsNoImages",wand->name);
872   return(AutoThresholdImage(wand->images,method,wand->exception));
873 }
874 
875 /*
876 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
877 %                                                                             %
878 %                                                                             %
879 %                                                                             %
880 %   M a g i c k B l a c k T h r e s h o l d I m a g e                         %
881 %                                                                             %
882 %                                                                             %
883 %                                                                             %
884 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
885 %
886 %  MagickBlackThresholdImage() is like MagickThresholdImage() but  forces all
887 %  pixels below the threshold into black while leaving all pixels above the
888 %  threshold unchanged.
889 %
890 %  The format of the MagickBlackThresholdImage method is:
891 %
892 %      MagickBooleanType MagickBlackThresholdImage(MagickWand *wand,
893 %        const PixelWand *threshold)
894 %
895 %  A description of each parameter follows:
896 %
897 %    o wand: the magick wand.
898 %
899 %    o threshold: the pixel wand.
900 %
901 */
MagickBlackThresholdImage(MagickWand * wand,const PixelWand * threshold)902 WandExport MagickBooleanType MagickBlackThresholdImage(MagickWand *wand,
903   const PixelWand *threshold)
904 {
905   char
906     thresholds[MagickPathExtent];
907 
908   assert(wand != (MagickWand *) NULL);
909   assert(wand->signature == MagickWandSignature);
910   if (wand->debug != MagickFalse)
911     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
912   if (wand->images == (Image *) NULL)
913     ThrowWandException(WandError,"ContainsNoImages",wand->name);
914   (void) FormatLocaleString(thresholds,MagickPathExtent,
915     QuantumFormat "," QuantumFormat "," QuantumFormat "," QuantumFormat,
916     PixelGetRedQuantum(threshold),PixelGetGreenQuantum(threshold),
917     PixelGetBlueQuantum(threshold),PixelGetAlphaQuantum(threshold));
918   return(BlackThresholdImage(wand->images,thresholds,wand->exception));
919 }
920 
921 /*
922 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
923 %                                                                             %
924 %                                                                             %
925 %                                                                             %
926 %   M a g i c k B l u e S h i f t I m a g e                                   %
927 %                                                                             %
928 %                                                                             %
929 %                                                                             %
930 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
931 %
932 %  MagickBlueShiftImage() mutes the colors of the image to simulate a scene at
933 %  nighttime in the moonlight.
934 %
935 %  The format of the MagickBlueShiftImage method is:
936 %
937 %      MagickBooleanType MagickBlueShiftImage(MagickWand *wand,
938 %        const double factor)
939 %
940 %  A description of each parameter follows:
941 %
942 %    o wand: the magick wand.
943 %
944 %    o factor: the blue shift factor (default 1.5)
945 %
946 */
MagickBlueShiftImage(MagickWand * wand,const double factor)947 WandExport MagickBooleanType MagickBlueShiftImage(MagickWand *wand,
948   const double factor)
949 {
950   Image
951     *shift_image;
952 
953   assert(wand != (MagickWand *) NULL);
954   assert(wand->signature == MagickWandSignature);
955   if (wand->debug != MagickFalse)
956     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
957   if (wand->images == (Image *) NULL)
958     ThrowWandException(WandError,"ContainsNoImages",wand->name);
959   shift_image=BlueShiftImage(wand->images,factor,wand->exception);
960   if (shift_image == (Image *) NULL)
961     return(MagickFalse);
962   ReplaceImageInList(&wand->images,shift_image);
963   return(MagickTrue);
964 }
965 
966 /*
967 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
968 %                                                                             %
969 %                                                                             %
970 %                                                                             %
971 %   M a g i c k B l u r I m a g e                                             %
972 %                                                                             %
973 %                                                                             %
974 %                                                                             %
975 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
976 %
977 %  MagickBlurImage() blurs an image.  We convolve the image with a
978 %  gaussian operator of the given radius and standard deviation (sigma).
979 %  For reasonable results, the radius should be larger than sigma.  Use a
980 %  radius of 0 and BlurImage() selects a suitable radius for you.
981 %
982 %  The format of the MagickBlurImage method is:
983 %
984 %      MagickBooleanType MagickBlurImage(MagickWand *wand,const double radius,
985 %        const double sigma)
986 %
987 %  A description of each parameter follows:
988 %
989 %    o wand: the magick wand.
990 %
991 %    o radius: the radius of the , in pixels, not counting the center
992 %      pixel.
993 %
994 %    o sigma: the standard deviation of the , in pixels.
995 %
996 */
MagickBlurImage(MagickWand * wand,const double radius,const double sigma)997 WandExport MagickBooleanType MagickBlurImage(MagickWand *wand,
998   const double radius,const double sigma)
999 {
1000   Image
1001     *blur_image;
1002 
1003   assert(wand != (MagickWand *) NULL);
1004   assert(wand->signature == MagickWandSignature);
1005   if (wand->debug != MagickFalse)
1006     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1007   if (wand->images == (Image *) NULL)
1008     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1009   blur_image=BlurImage(wand->images,radius,sigma,wand->exception);
1010   if (blur_image == (Image *) NULL)
1011     return(MagickFalse);
1012   ReplaceImageInList(&wand->images,blur_image);
1013   return(MagickTrue);
1014 }
1015 
1016 /*
1017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1018 %                                                                             %
1019 %                                                                             %
1020 %                                                                             %
1021 %   M a g i c k B o r d e r I m a g e                                         %
1022 %                                                                             %
1023 %                                                                             %
1024 %                                                                             %
1025 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1026 %
1027 %  MagickBorderImage() surrounds the image with a border of the color defined
1028 %  by the bordercolor pixel wand.
1029 %
1030 %  The format of the MagickBorderImage method is:
1031 %
1032 %      MagickBooleanType MagickBorderImage(MagickWand *wand,
1033 %        const PixelWand *bordercolor,const size_t width,
1034 %        const size_t height,const CompositeOperator compose)
1035 %
1036 %  A description of each parameter follows:
1037 %
1038 %    o wand: the magick wand.
1039 %
1040 %    o bordercolor: the border color pixel wand.
1041 %
1042 %    o width: the border width.
1043 %
1044 %    o height: the border height.
1045 %
1046 %    o compose: the composite operator.
1047 %
1048 */
MagickBorderImage(MagickWand * wand,const PixelWand * bordercolor,const size_t width,const size_t height,const CompositeOperator compose)1049 WandExport MagickBooleanType MagickBorderImage(MagickWand *wand,
1050   const PixelWand *bordercolor,const size_t width,const size_t height,
1051   const CompositeOperator compose)
1052 {
1053   Image
1054     *border_image;
1055 
1056   RectangleInfo
1057     border_info;
1058 
1059   assert(wand != (MagickWand *) NULL);
1060   assert(wand->signature == MagickWandSignature);
1061   if (wand->debug != MagickFalse)
1062     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1063   if (wand->images == (Image *) NULL)
1064     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1065   border_info.width=width;
1066   border_info.height=height;
1067   border_info.x=0;
1068   border_info.y=0;
1069   PixelGetQuantumPacket(bordercolor,&wand->images->border_color);
1070   border_image=BorderImage(wand->images,&border_info,compose,wand->exception);
1071   if (border_image == (Image *) NULL)
1072     return(MagickFalse);
1073   ReplaceImageInList(&wand->images,border_image);
1074   return(MagickTrue);
1075 }
1076 
1077 /*
1078 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1079 %                                                                             %
1080 %                                                                             %
1081 %                                                                             %
1082 %   M a g i c k B r i g h t n e s s C o n t r a s t S t r e t c h I m a g e   %
1083 %                                                                             %
1084 %                                                                             %
1085 %                                                                             %
1086 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1087 %
1088 %  Use MagickBrightnessContrastImage() to change the brightness and/or contrast
1089 %  of an image.  It converts the brightness and contrast parameters into slope
1090 %  and intercept and calls a polynomical function to apply to the image.
1091 
1092 %
1093 %  The format of the MagickBrightnessContrastImage method is:
1094 %
1095 %      MagickBooleanType MagickBrightnessContrastImage(MagickWand *wand,
1096 %        const double brightness,const double contrast)
1097 %
1098 %  A description of each parameter follows:
1099 %
1100 %    o wand: the magick wand.
1101 %
1102 %    o brightness: the brightness percent (-100 .. 100).
1103 %
1104 %    o contrast: the contrast percent (-100 .. 100).
1105 %
1106 */
MagickBrightnessContrastImage(MagickWand * wand,const double brightness,const double contrast)1107 WandExport MagickBooleanType MagickBrightnessContrastImage(
1108   MagickWand *wand,const double brightness,const double contrast)
1109 {
1110   MagickBooleanType
1111     status;
1112 
1113   assert(wand != (MagickWand *) NULL);
1114   assert(wand->signature == MagickWandSignature);
1115   if (wand->debug != MagickFalse)
1116     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1117   if (wand->images == (Image *) NULL)
1118     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1119   status=BrightnessContrastImage(wand->images,brightness,contrast,
1120     wand->exception);
1121   return(status);
1122 }
1123 
1124 /*
1125 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1126 %                                                                             %
1127 %                                                                             %
1128 %                                                                             %
1129 %   M a g i c k C a n n y E d g e I m a g e                                   %
1130 %                                                                             %
1131 %                                                                             %
1132 %                                                                             %
1133 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1134 %
1135 %  MagickCannyEdgeImage() uses a multi-stage algorithm to detect a wide range of
1136 %  edges in images.
1137 %
1138 %  The format of the MagickCannyEdgeImage method is:
1139 %
1140 %      MagickBooleanType MagickCannyEdgeImage(MagickWand *wand,
1141 %        const double radius,const double sigma,const double lower_percent,
1142 %        const double upper_percent)
1143 %
1144 %  A description of each parameter follows:
1145 %
1146 %    o wand: the magick wand.
1147 %
1148 %    o radius: the radius of the gaussian smoothing filter.
1149 %
1150 %    o sigma: the sigma of the gaussian smoothing filter.
1151 %
1152 %    o lower_percent: percentage of edge pixels in the lower threshold.
1153 %
1154 %    o upper_percent: percentage of edge pixels in the upper threshold.
1155 %
1156 */
MagickCannyEdgeImage(MagickWand * wand,const double radius,const double sigma,const double lower_percent,const double upper_percent)1157 WandExport MagickBooleanType MagickCannyEdgeImage(MagickWand *wand,
1158   const double radius,const double sigma,const double lower_percent,
1159   const double upper_percent)
1160 {
1161   Image
1162     *edge_image;
1163 
1164   assert(wand != (MagickWand *) NULL);
1165   assert(wand->signature == MagickWandSignature);
1166   if (wand->debug != MagickFalse)
1167     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1168   if (wand->images == (Image *) NULL)
1169     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1170   edge_image=CannyEdgeImage(wand->images,radius,sigma,lower_percent,
1171     upper_percent,wand->exception);
1172   if (edge_image == (Image *) NULL)
1173     return(MagickFalse);
1174   ReplaceImageInList(&wand->images,edge_image);
1175   return(MagickTrue);
1176 }
1177 
1178 /*
1179 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1180 %                                                                             %
1181 %                                                                             %
1182 %                                                                             %
1183 %   M a g i c k C h a n n e l F x I m a g e                                   %
1184 %                                                                             %
1185 %                                                                             %
1186 %                                                                             %
1187 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1188 %
1189 %  MagickChannelFxImage() applies a channel expression to the specified image.
1190 %  The expression consists of one or more channels, either mnemonic or numeric
1191 %  (e.g. red, 1), separated by actions as follows:
1192 %
1193 %    <=>     exchange two channels (e.g. red<=>blue)
1194 %    =>      transfer a channel to another (e.g. red=>green)
1195 %    ,       separate channel operations (e.g. red, green)
1196 %    |       read channels from next input image (e.g. red | green)
1197 %    ;       write channels to next output image (e.g. red; green; blue)
1198 %
1199 %  A channel without a operation symbol implies extract. For example, to create
1200 %  3 grayscale images from the red, green, and blue channels of an image, use:
1201 %
1202 %    -channel-fx "red; green; blue"
1203 %
1204 %  The format of the MagickChannelFxImage method is:
1205 %
1206 %      MagickWand *MagickChannelFxImage(MagickWand *wand,const char *expression)
1207 %
1208 %  A description of each parameter follows:
1209 %
1210 %    o wand: the magick wand.
1211 %
1212 %    o expression: the expression.
1213 %
1214 */
MagickChannelFxImage(MagickWand * wand,const char * expression)1215 WandExport MagickWand *MagickChannelFxImage(MagickWand *wand,
1216   const char *expression)
1217 {
1218   Image
1219     *fx_image;
1220 
1221   assert(wand != (MagickWand *) NULL);
1222   assert(wand->signature == MagickWandSignature);
1223   if (wand->debug != MagickFalse)
1224     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1225   if (wand->images == (Image *) NULL)
1226     return((MagickWand *) NULL);
1227   fx_image=ChannelFxImage(wand->images,expression,wand->exception);
1228   if (fx_image == (Image *) NULL)
1229     return((MagickWand *) NULL);
1230   return(CloneMagickWandFromImages(wand,fx_image));
1231 }
1232 
1233 /*
1234 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1235 %                                                                             %
1236 %                                                                             %
1237 %                                                                             %
1238 %   M a g i c k C h a r c o a l I m a g e                                     %
1239 %                                                                             %
1240 %                                                                             %
1241 %                                                                             %
1242 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1243 %
1244 %  MagickCharcoalImage() simulates a charcoal drawing.
1245 %
1246 %  The format of the MagickCharcoalImage method is:
1247 %
1248 %      MagickBooleanType MagickCharcoalImage(MagickWand *wand,
1249 %        const double radius,const double sigma)
1250 %
1251 %  A description of each parameter follows:
1252 %
1253 %    o wand: the magick wand.
1254 %
1255 %    o radius: the radius of the Gaussian, in pixels, not counting the center
1256 %      pixel.
1257 %
1258 %    o sigma: the standard deviation of the Gaussian, in pixels.
1259 %
1260 */
MagickCharcoalImage(MagickWand * wand,const double radius,const double sigma)1261 WandExport MagickBooleanType MagickCharcoalImage(MagickWand *wand,
1262   const double radius,const double sigma)
1263 {
1264   Image
1265     *charcoal_image;
1266 
1267   assert(wand != (MagickWand *) NULL);
1268   assert(wand->signature == MagickWandSignature);
1269   if (wand->debug != MagickFalse)
1270     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1271   if (wand->images == (Image *) NULL)
1272     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1273   charcoal_image=CharcoalImage(wand->images,radius,sigma,wand->exception);
1274   if (charcoal_image == (Image *) NULL)
1275     return(MagickFalse);
1276   ReplaceImageInList(&wand->images,charcoal_image);
1277   return(MagickTrue);
1278 }
1279 
1280 /*
1281 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1282 %                                                                             %
1283 %                                                                             %
1284 %                                                                             %
1285 %   M a g i c k C h o p I m a g e                                             %
1286 %                                                                             %
1287 %                                                                             %
1288 %                                                                             %
1289 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1290 %
1291 %  MagickChopImage() removes a region of an image and collapses the image to
1292 %  occupy the removed portion
1293 %
1294 %  The format of the MagickChopImage method is:
1295 %
1296 %      MagickBooleanType MagickChopImage(MagickWand *wand,
1297 %        const size_t width,const size_t height,const ssize_t x,
1298 %        const ssize_t y)
1299 %
1300 %  A description of each parameter follows:
1301 %
1302 %    o wand: the magick wand.
1303 %
1304 %    o width: the region width.
1305 %
1306 %    o height: the region height.
1307 %
1308 %    o x: the region x offset.
1309 %
1310 %    o y: the region y offset.
1311 %
1312 %
1313 */
MagickChopImage(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y)1314 WandExport MagickBooleanType MagickChopImage(MagickWand *wand,
1315   const size_t width,const size_t height,const ssize_t x,
1316   const ssize_t y)
1317 {
1318   Image
1319     *chop_image;
1320 
1321   RectangleInfo
1322     chop;
1323 
1324   assert(wand != (MagickWand *) NULL);
1325   assert(wand->signature == MagickWandSignature);
1326   if (wand->debug != MagickFalse)
1327     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1328   if (wand->images == (Image *) NULL)
1329     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1330   chop.width=width;
1331   chop.height=height;
1332   chop.x=x;
1333   chop.y=y;
1334   chop_image=ChopImage(wand->images,&chop,wand->exception);
1335   if (chop_image == (Image *) NULL)
1336     return(MagickFalse);
1337   ReplaceImageInList(&wand->images,chop_image);
1338   return(MagickTrue);
1339 }
1340 
1341 /*
1342 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1343 %                                                                             %
1344 %                                                                             %
1345 %                                                                             %
1346 %   M a g i c k C L A H E I m a g e                                           %
1347 %                                                                             %
1348 %                                                                             %
1349 %                                                                             %
1350 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1351 %
1352 %  MagickCLAHEImage() is a variant of adaptive histogram equalization in which
1353 %  the contrast amplification is limited, so as to reduce this problem of noise
1354 %  amplification.
1355 %
1356 %  The format of the CLAHEImage method is:
1357 %
1358 %      MagickBooleanType MagickCLAHEImage(MagickWand *wand,const size_t width,
1359 %        const size_t height,const double number_bins,const double clip_limit)
1360 %
1361 %  A description of each parameter follows:
1362 %
1363 %    o wand: the magick wand.
1364 %
1365 %    o width: the width of the tile divisions to use in horizontal direction.
1366 %
1367 %    o height: the height of the tile divisions to use in vertical direction.
1368 %
1369 %    o number_bins: number of bins for histogram ("dynamic range").
1370 %
1371 %    o clip_limit: contrast limit for localised changes in contrast. A limit
1372 %      less than 1 results in standard non-contrast limited AHE.
1373 %
1374 */
MagickCLAHEImage(MagickWand * wand,const size_t width,const size_t height,const double number_bins,const double clip_limit)1375 WandExport MagickBooleanType MagickCLAHEImage(MagickWand *wand,
1376   const size_t width,const size_t height,const double number_bins,
1377   const double clip_limit)
1378 {
1379   MagickBooleanType
1380     status;
1381 
1382   assert(wand != (MagickWand *) NULL);
1383   assert(wand->signature == MagickWandSignature);
1384   if (wand->debug != MagickFalse)
1385     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1386   if (wand->images == (Image *) NULL)
1387     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1388   status=CLAHEImage(wand->images,width,height,(size_t) number_bins,clip_limit,
1389     wand->exception);
1390   return(status);
1391 }
1392 
1393 /*
1394 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1395 %                                                                             %
1396 %                                                                             %
1397 %                                                                             %
1398 %   M a g i c k C l a m p I m a g e                                           %
1399 %                                                                             %
1400 %                                                                             %
1401 %                                                                             %
1402 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1403 %
1404 %  MagickClampImage() restricts the color range from 0 to the quantum depth.
1405 %
1406 %  The format of the MagickClampImage method is:
1407 %
1408 %      MagickBooleanType MagickClampImage(MagickWand *wand)
1409 %
1410 %  A description of each parameter follows:
1411 %
1412 %    o wand: the magick wand.
1413 %
1414 %    o channel: the channel.
1415 %
1416 */
MagickClampImage(MagickWand * wand)1417 WandExport MagickBooleanType MagickClampImage(MagickWand *wand)
1418 {
1419   assert(wand != (MagickWand *) NULL);
1420   assert(wand->signature == MagickWandSignature);
1421   if (wand->debug != MagickFalse)
1422     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1423   if (wand->images == (Image *) NULL)
1424     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1425   return(ClampImage(wand->images,wand->exception));
1426 }
1427 
1428 /*
1429 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1430 %                                                                             %
1431 %                                                                             %
1432 %                                                                             %
1433 %   M a g i c k C l i p I m a g e                                             %
1434 %                                                                             %
1435 %                                                                             %
1436 %                                                                             %
1437 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1438 %
1439 %  MagickClipImage() clips along the first path from the 8BIM profile, if
1440 %  present.
1441 %
1442 %  The format of the MagickClipImage method is:
1443 %
1444 %      MagickBooleanType MagickClipImage(MagickWand *wand)
1445 %
1446 %  A description of each parameter follows:
1447 %
1448 %    o wand: the magick wand.
1449 %
1450 */
MagickClipImage(MagickWand * wand)1451 WandExport MagickBooleanType MagickClipImage(MagickWand *wand)
1452 {
1453   MagickBooleanType
1454     status;
1455 
1456   assert(wand != (MagickWand *) NULL);
1457   assert(wand->signature == MagickWandSignature);
1458   if (wand->debug != MagickFalse)
1459     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1460   if (wand->images == (Image *) NULL)
1461     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1462   status=ClipImage(wand->images,wand->exception);
1463   return(status);
1464 }
1465 
1466 /*
1467 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1468 %                                                                             %
1469 %                                                                             %
1470 %                                                                             %
1471 %   M a g i c k C l i p I m a g e P a t h                                     %
1472 %                                                                             %
1473 %                                                                             %
1474 %                                                                             %
1475 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1476 %
1477 %  MagickClipImagePath() clips along the named paths from the 8BIM profile, if
1478 %  present. Later operations take effect inside the path.  Id may be a number
1479 %  if preceded with #, to work on a numbered path, e.g., "#1" to use the first
1480 %  path.
1481 %
1482 %  The format of the MagickClipImagePath method is:
1483 %
1484 %      MagickBooleanType MagickClipImagePath(MagickWand *wand,
1485 %        const char *pathname,const MagickBooleanType inside)
1486 %
1487 %  A description of each parameter follows:
1488 %
1489 %    o wand: the magick wand.
1490 %
1491 %    o pathname: name of clipping path resource. If name is preceded by #, use
1492 %      clipping path numbered by name.
1493 %
1494 %    o inside: if non-zero, later operations take effect inside clipping path.
1495 %      Otherwise later operations take effect outside clipping path.
1496 %
1497 */
MagickClipImagePath(MagickWand * wand,const char * pathname,const MagickBooleanType inside)1498 WandExport MagickBooleanType MagickClipImagePath(MagickWand *wand,
1499   const char *pathname,const MagickBooleanType inside)
1500 {
1501   MagickBooleanType
1502     status;
1503 
1504   assert(wand != (MagickWand *) NULL);
1505   assert(wand->signature == MagickWandSignature);
1506   if (wand->debug != MagickFalse)
1507     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1508   if (wand->images == (Image *) NULL)
1509     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1510   status=ClipImagePath(wand->images,pathname,inside,wand->exception);
1511   return(status);
1512 }
1513 
1514 /*
1515 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1516 %                                                                             %
1517 %                                                                             %
1518 %                                                                             %
1519 %   M a g i c k C l u t I m a g e                                             %
1520 %                                                                             %
1521 %                                                                             %
1522 %                                                                             %
1523 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1524 %
1525 %  MagickClutImage() replaces colors in the image from a color lookup table.
1526 %
1527 %  The format of the MagickClutImage method is:
1528 %
1529 %      MagickBooleanType MagickClutImage(MagickWand *wand,
1530 %        const MagickWand *clut_wand,const PixelInterpolateMethod method)
1531 %
1532 %  A description of each parameter follows:
1533 %
1534 %    o wand: the magick wand.
1535 %
1536 %    o clut_image: the clut image.
1537 %
1538 %    o method: the pixel interpolation method.
1539 %
1540 */
MagickClutImage(MagickWand * wand,const MagickWand * clut_wand,const PixelInterpolateMethod method)1541 WandExport MagickBooleanType MagickClutImage(MagickWand *wand,
1542   const MagickWand *clut_wand,const PixelInterpolateMethod method)
1543 {
1544   MagickBooleanType
1545     status;
1546 
1547   assert(wand != (MagickWand *) NULL);
1548   assert(wand->signature == MagickWandSignature);
1549   if (wand->debug != MagickFalse)
1550     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1551   if ((wand->images == (Image *) NULL) || (clut_wand->images == (Image *) NULL))
1552     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1553   status=ClutImage(wand->images,clut_wand->images,method,wand->exception);
1554   return(status);
1555 }
1556 
1557 /*
1558 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1559 %                                                                             %
1560 %                                                                             %
1561 %                                                                             %
1562 %   M a g i c k C o a l e s c e I m a g e s                                   %
1563 %                                                                             %
1564 %                                                                             %
1565 %                                                                             %
1566 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1567 %
1568 %  MagickCoalesceImages() composites a set of images while respecting any page
1569 %  offsets and disposal methods.  GIF, MIFF, and MNG animation sequences
1570 %  typically start with an image background and each subsequent image
1571 %  varies in size and offset.  MagickCoalesceImages() returns a new sequence
1572 %  where each image in the sequence is the same size as the first and
1573 %  composited with the next image in the sequence.
1574 %
1575 %  The format of the MagickCoalesceImages method is:
1576 %
1577 %      MagickWand *MagickCoalesceImages(MagickWand *wand)
1578 %
1579 %  A description of each parameter follows:
1580 %
1581 %    o wand: the magick wand.
1582 %
1583 */
MagickCoalesceImages(MagickWand * wand)1584 WandExport MagickWand *MagickCoalesceImages(MagickWand *wand)
1585 {
1586   Image
1587     *coalesce_image;
1588 
1589   assert(wand != (MagickWand *) NULL);
1590   assert(wand->signature == MagickWandSignature);
1591   if (wand->debug != MagickFalse)
1592     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1593   if (wand->images == (Image *) NULL)
1594     return((MagickWand *) NULL);
1595   coalesce_image=CoalesceImages(wand->images,wand->exception);
1596   if (coalesce_image == (Image *) NULL)
1597     return((MagickWand *) NULL);
1598   return(CloneMagickWandFromImages(wand,coalesce_image));
1599 }
1600 
1601 /*
1602 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1603 %                                                                             %
1604 %                                                                             %
1605 %                                                                             %
1606 %   M a g i c k C o l o r D e c i s i o n I m a g e                           %
1607 %                                                                             %
1608 %                                                                             %
1609 %                                                                             %
1610 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1611 %
1612 %  MagickColorDecisionListImage() accepts a lightweight Color Correction
1613 %  Collection (CCC) file which solely contains one or more color corrections
1614 %  and applies the color correction to the image.  Here is a sample CCC file:
1615 %
1616 %    <ColorCorrectionCollection xmlns="urn:ASC:CDL:v1.2">
1617 %          <ColorCorrection id="cc03345">
1618 %                <SOPNode>
1619 %                     <Slope> 0.9 1.2 0.5 </Slope>
1620 %                     <Offset> 0.4 -0.5 0.6 </Offset>
1621 %                     <Power> 1.0 0.8 1.5 </Power>
1622 %                </SOPNode>
1623 %                <SATNode>
1624 %                     <Saturation> 0.85 </Saturation>
1625 %                </SATNode>
1626 %          </ColorCorrection>
1627 %    </ColorCorrectionCollection>
1628 %
1629 %  which includes the offset, slope, and power for each of the RGB channels
1630 %  as well as the saturation.
1631 %
1632 %  The format of the MagickColorDecisionListImage method is:
1633 %
1634 %      MagickBooleanType MagickColorDecisionListImage(MagickWand *wand,
1635 %        const char *color_correction_collection)
1636 %
1637 %  A description of each parameter follows:
1638 %
1639 %    o wand: the magick wand.
1640 %
1641 %    o color_correction_collection: the color correction collection in XML.
1642 %
1643 */
MagickColorDecisionListImage(MagickWand * wand,const char * color_correction_collection)1644 WandExport MagickBooleanType MagickColorDecisionListImage(MagickWand *wand,
1645   const char *color_correction_collection)
1646 {
1647   MagickBooleanType
1648     status;
1649 
1650   assert(wand != (MagickWand *) NULL);
1651   assert(wand->signature == MagickWandSignature);
1652   if (wand->debug != MagickFalse)
1653     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1654   if (wand->images == (Image *) NULL)
1655     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1656   status=ColorDecisionListImage(wand->images,color_correction_collection,
1657     wand->exception);
1658   return(status);
1659 }
1660 
1661 /*
1662 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1663 %                                                                             %
1664 %                                                                             %
1665 %                                                                             %
1666 %   M a g i c k C o l o r i z e I m a g e                                     %
1667 %                                                                             %
1668 %                                                                             %
1669 %                                                                             %
1670 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1671 %
1672 %  MagickColorizeImage() blends the fill color with each pixel in the image.
1673 %
1674 %  The format of the MagickColorizeImage method is:
1675 %
1676 %      MagickBooleanType MagickColorizeImage(MagickWand *wand,
1677 %        const PixelWand *colorize,const PixelWand *blend)
1678 %
1679 %  A description of each parameter follows:
1680 %
1681 %    o wand: the magick wand.
1682 %
1683 %    o colorize: the colorize pixel wand.
1684 %
1685 %    o alpha: the alpha pixel wand.
1686 %
1687 */
MagickColorizeImage(MagickWand * wand,const PixelWand * colorize,const PixelWand * blend)1688 WandExport MagickBooleanType MagickColorizeImage(MagickWand *wand,
1689   const PixelWand *colorize,const PixelWand *blend)
1690 {
1691   char
1692     percent_blend[MagickPathExtent];
1693 
1694   Image
1695     *colorize_image;
1696 
1697   PixelInfo
1698     target;
1699 
1700   assert(wand != (MagickWand *) NULL);
1701   assert(wand->signature == MagickWandSignature);
1702   if (wand->debug != MagickFalse)
1703     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1704   if (wand->images == (Image *) NULL)
1705     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1706   GetPixelInfo(wand->images,&target);
1707   if (target.colorspace != CMYKColorspace)
1708     (void) FormatLocaleString(percent_blend,MagickPathExtent,
1709       "%g,%g,%g,%g",(double) (100.0*QuantumScale*
1710       PixelGetRedQuantum(blend)),(double) (100.0*QuantumScale*
1711       PixelGetGreenQuantum(blend)),(double) (100.0*QuantumScale*
1712       PixelGetBlueQuantum(blend)),(double) (100.0*QuantumScale*
1713       PixelGetAlphaQuantum(blend)));
1714   else
1715     (void) FormatLocaleString(percent_blend,MagickPathExtent,
1716       "%g,%g,%g,%g,%g",(double) (100.0*QuantumScale*
1717       PixelGetRedQuantum(blend)),(double) (100.0*QuantumScale*
1718       PixelGetGreenQuantum(blend)),(double) (100.0*QuantumScale*
1719       PixelGetBlueQuantum(blend)),(double) (100.0*QuantumScale*
1720       PixelGetBlackQuantum(blend)),(double) (100.0*QuantumScale*
1721       PixelGetAlphaQuantum(blend)));
1722   target=PixelGetPixel(colorize);
1723   colorize_image=ColorizeImage(wand->images,percent_blend,&target,
1724     wand->exception);
1725   if (colorize_image == (Image *) NULL)
1726     return(MagickFalse);
1727   ReplaceImageInList(&wand->images,colorize_image);
1728   return(MagickTrue);
1729 }
1730 
1731 /*
1732 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1733 %                                                                             %
1734 %                                                                             %
1735 %                                                                             %
1736 %   M a g i c k C o l o r M a t r i x I m a g e                               %
1737 %                                                                             %
1738 %                                                                             %
1739 %                                                                             %
1740 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1741 %
1742 %  MagickColorMatrixImage() apply color transformation to an image. The method
1743 %  permits saturation changes, hue rotation, luminance to alpha, and various
1744 %  other effects.  Although variable-sized transformation matrices can be used,
1745 %  typically one uses a 5x5 matrix for an RGBA image and a 6x6 for CMYKA
1746 %  (or RGBA with offsets).  The matrix is similar to those used by Adobe Flash
1747 %  except offsets are in column 6 rather than 5 (in support of CMYKA images)
1748 %  and offsets are normalized (divide Flash offset by 255).
1749 %
1750 %  The format of the MagickColorMatrixImage method is:
1751 %
1752 %      MagickBooleanType MagickColorMatrixImage(MagickWand *wand,
1753 %        const KernelInfo *color_matrix)
1754 %
1755 %  A description of each parameter follows:
1756 %
1757 %    o wand: the magick wand.
1758 %
1759 %    o color_matrix:  the color matrix.
1760 %
1761 */
MagickColorMatrixImage(MagickWand * wand,const KernelInfo * color_matrix)1762 WandExport MagickBooleanType MagickColorMatrixImage(MagickWand *wand,
1763   const KernelInfo *color_matrix)
1764 {
1765   Image
1766     *color_image;
1767 
1768   assert(wand != (MagickWand *) NULL);
1769   assert(wand->signature == MagickWandSignature);
1770   if (wand->debug != MagickFalse)
1771     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1772   if (color_matrix == (const KernelInfo *) NULL)
1773     return(MagickFalse);
1774   if (wand->images == (Image *) NULL)
1775     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1776   color_image=ColorMatrixImage(wand->images,color_matrix,wand->exception);
1777   if (color_image == (Image *) NULL)
1778     return(MagickFalse);
1779   ReplaceImageInList(&wand->images,color_image);
1780   return(MagickTrue);
1781 }
1782 
1783 /*
1784 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1785 %                                                                             %
1786 %                                                                             %
1787 %                                                                             %
1788 %   M a g i c k C o m b i n e I m a g e s                                     %
1789 %                                                                             %
1790 %                                                                             %
1791 %                                                                             %
1792 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1793 %
1794 %  MagickCombineImages() combines one or more images into a single image.  The
1795 %  grayscale value of the pixels of each image in the sequence is assigned in
1796 %  order to the specified  hannels of the combined image.   The typical
1797 %  ordering would be image 1 => Red, 2 => Green, 3 => Blue, etc.
1798 %
1799 %  The format of the MagickCombineImages method is:
1800 %
1801 %      MagickWand *MagickCombineImages(MagickWand *wand,
1802 %        const ColorspaceType colorspace)
1803 %
1804 %  A description of each parameter follows:
1805 %
1806 %    o wand: the magick wand.
1807 %
1808 %    o colorspace: the colorspace.
1809 %
1810 */
MagickCombineImages(MagickWand * wand,const ColorspaceType colorspace)1811 WandExport MagickWand *MagickCombineImages(MagickWand *wand,
1812   const ColorspaceType colorspace)
1813 {
1814   Image
1815     *combine_image;
1816 
1817   assert(wand != (MagickWand *) NULL);
1818   assert(wand->signature == MagickWandSignature);
1819   if (wand->debug != MagickFalse)
1820     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1821   if (wand->images == (Image *) NULL)
1822     return((MagickWand *) NULL);
1823   combine_image=CombineImages(wand->images,colorspace,wand->exception);
1824   if (combine_image == (Image *) NULL)
1825     return((MagickWand *) NULL);
1826   return(CloneMagickWandFromImages(wand,combine_image));
1827 }
1828 
1829 /*
1830 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1831 %                                                                             %
1832 %                                                                             %
1833 %                                                                             %
1834 %   M a g i c k C o m m e n t I m a g e                                       %
1835 %                                                                             %
1836 %                                                                             %
1837 %                                                                             %
1838 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1839 %
1840 %  MagickCommentImage() adds a comment to your image.
1841 %
1842 %  The format of the MagickCommentImage method is:
1843 %
1844 %      MagickBooleanType MagickCommentImage(MagickWand *wand,
1845 %        const char *comment)
1846 %
1847 %  A description of each parameter follows:
1848 %
1849 %    o wand: the magick wand.
1850 %
1851 %    o comment: the image comment.
1852 %
1853 */
MagickCommentImage(MagickWand * wand,const char * comment)1854 WandExport MagickBooleanType MagickCommentImage(MagickWand *wand,
1855   const char *comment)
1856 {
1857   MagickBooleanType
1858     status;
1859 
1860   assert(wand != (MagickWand *) NULL);
1861   assert(wand->signature == MagickWandSignature);
1862   if (wand->debug != MagickFalse)
1863     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1864   if (wand->images == (Image *) NULL)
1865     ThrowWandException(WandError,"ContainsNoImages",wand->name);
1866   status=SetImageProperty(wand->images,"comment",comment,wand->exception);
1867   return(status);
1868 }
1869 
1870 /*
1871 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1872 %                                                                             %
1873 %                                                                             %
1874 %                                                                             %
1875 %   M a g i c k C o m p a r e I m a g e L a y e r s                           %
1876 %                                                                             %
1877 %                                                                             %
1878 %                                                                             %
1879 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1880 %
1881 %  MagickCompareImagesLayers() compares each image with the next in a sequence
1882 %  and returns the maximum bounding region of any pixel differences it
1883 %  discovers.
1884 %
1885 %  The format of the MagickCompareImagesLayers method is:
1886 %
1887 %      MagickWand *MagickCompareImagesLayers(MagickWand *wand,
1888 %        const LayerMethod method)
1889 %
1890 %  A description of each parameter follows:
1891 %
1892 %    o wand: the magick wand.
1893 %
1894 %    o method: the compare method.
1895 %
1896 */
MagickCompareImagesLayers(MagickWand * wand,const LayerMethod method)1897 WandExport MagickWand *MagickCompareImagesLayers(MagickWand *wand,
1898   const LayerMethod method)
1899 {
1900   Image
1901     *layers_image;
1902 
1903   assert(wand != (MagickWand *) NULL);
1904   assert(wand->signature == MagickWandSignature);
1905   if (wand->debug != MagickFalse)
1906     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1907   if (wand->images == (Image *) NULL)
1908     return((MagickWand *) NULL);
1909   layers_image=CompareImagesLayers(wand->images,method,wand->exception);
1910   if (layers_image == (Image *) NULL)
1911     return((MagickWand *) NULL);
1912   return(CloneMagickWandFromImages(wand,layers_image));
1913 }
1914 
1915 /*
1916 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1917 %                                                                             %
1918 %                                                                             %
1919 %                                                                             %
1920 %   M a g i c k C o m p a r e I m a g e s                                     %
1921 %                                                                             %
1922 %                                                                             %
1923 %                                                                             %
1924 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1925 %
1926 %  MagickCompareImages() compares an image to a reconstructed image and returns
1927 %  the specified difference image.
1928 %
1929 %  The format of the MagickCompareImages method is:
1930 %
1931 %      MagickWand *MagickCompareImages(MagickWand *wand,
1932 %        const MagickWand *reference,const MetricType metric,
1933 %        double *distortion)
1934 %
1935 %  A description of each parameter follows:
1936 %
1937 %    o wand: the magick wand.
1938 %
1939 %    o reference: the reference wand.
1940 %
1941 %    o metric: the metric.
1942 %
1943 %    o distortion: the computed distortion between the images.
1944 %
1945 */
MagickCompareImages(MagickWand * wand,const MagickWand * reference,const MetricType metric,double * distortion)1946 WandExport MagickWand *MagickCompareImages(MagickWand *wand,
1947   const MagickWand *reference,const MetricType metric,double *distortion)
1948 {
1949   Image
1950     *compare_image;
1951 
1952 
1953   assert(wand != (MagickWand *) NULL);
1954   assert(wand->signature == MagickWandSignature);
1955   if (wand->debug != MagickFalse)
1956     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1957   if ((wand->images == (Image *) NULL) || (reference->images == (Image *) NULL))
1958     {
1959       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
1960         "ContainsNoImages","`%s'",wand->name);
1961       return((MagickWand *) NULL);
1962     }
1963   compare_image=CompareImages(wand->images,reference->images,metric,distortion,
1964     wand->exception);
1965   if (compare_image == (Image *) NULL)
1966     return((MagickWand *) NULL);
1967   return(CloneMagickWandFromImages(wand,compare_image));
1968 }
1969 
1970 /*
1971 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1972 %                                                                             %
1973 %                                                                             %
1974 %                                                                             %
1975 %   M a g i c k C o m p l e x I m a g e s                                     %
1976 %                                                                             %
1977 %                                                                             %
1978 %                                                                             %
1979 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1980 %
1981 %  MagickComplexImages() performs complex mathematics on an image sequence.
1982 %
1983 %  The format of the MagickComplexImages method is:
1984 %
1985 %      MagickWand *MagickComplexImages(MagickWand *wand,
1986 %        const ComplexOperator op)
1987 %
1988 %  A description of each parameter follows:
1989 %
1990 %    o wand: the magick wand.
1991 %
1992 %    o op: A complex operator. Choose from AddComplexOperator,
1993 %      ConjugateComplexOperator,DivideComplexOperator,
1994 %      MagnitudePhaseComplexOperator,MultiplyComplexOperator,
1995 %      RealImaginaryComplexOperator, SubtractComplexOperator.
1996 %
1997 */
MagickComplexImages(MagickWand * wand,const ComplexOperator op)1998 WandExport MagickWand *MagickComplexImages(MagickWand *wand,
1999   const ComplexOperator op)
2000 {
2001   Image
2002     *complex_image;
2003 
2004   assert(wand != (MagickWand *) NULL);
2005   assert(wand->signature == MagickWandSignature);
2006   if (wand->debug != MagickFalse)
2007     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2008   if (wand->images == (Image *) NULL)
2009     return((MagickWand *) NULL);
2010   complex_image=ComplexImages(wand->images,op,wand->exception);
2011   if (complex_image == (Image *) NULL)
2012     return((MagickWand *) NULL);
2013   return(CloneMagickWandFromImages(wand,complex_image));
2014 }
2015 
2016 /*
2017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2018 %                                                                             %
2019 %                                                                             %
2020 %                                                                             %
2021 %   M a g i c k C o m p o s i t e I m a g e                                   %
2022 %                                                                             %
2023 %                                                                             %
2024 %                                                                             %
2025 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2026 %
2027 %  MagickCompositeImage() composite one image onto another at the specified
2028 %  offset.
2029 %
2030 %  The format of the MagickCompositeImage method is:
2031 %
2032 %      MagickBooleanType MagickCompositeImage(MagickWand *wand,
2033 %        const MagickWand *source_wand,const CompositeOperator compose,
2034 %        const MagickBooleanType clip_to_self,const ssize_t x,const ssize_t y)
2035 %
2036 %  A description of each parameter follows:
2037 %
2038 %    o wand: the magick wand holding the destination images
2039 %
2040 %    o source_image: the magick wand holding source image.
2041 %
2042 %    o compose: This operator affects how the composite is applied to the
2043 %      image.  The default is Over.  These are some of the compose methods
2044 %      availble.
2045 %
2046 %        OverCompositeOp       InCompositeOp         OutCompositeOp
2047 %        AtopCompositeOp       XorCompositeOp        PlusCompositeOp
2048 %        MinusCompositeOp      AddCompositeOp        SubtractCompositeOp
2049 %        DifferenceCompositeOp BumpmapCompositeOp    CopyCompositeOp
2050 %        DisplaceCompositeOp
2051 %
2052 %    o clip_to_self: set to MagickTrue to limit composition to area composed.
2053 %
2054 %    o x: the column offset of the composited image.
2055 %
2056 %    o y: the row offset of the composited image.
2057 %
2058 */
MagickCompositeImage(MagickWand * wand,const MagickWand * source_wand,const CompositeOperator compose,const MagickBooleanType clip_to_self,const ssize_t x,const ssize_t y)2059 WandExport MagickBooleanType MagickCompositeImage(MagickWand *wand,
2060   const MagickWand *source_wand,const CompositeOperator compose,
2061   const MagickBooleanType clip_to_self,const ssize_t x,const ssize_t y)
2062 {
2063   MagickBooleanType
2064     status;
2065 
2066   assert(wand != (MagickWand *) NULL);
2067   assert(wand->signature == MagickWandSignature);
2068   if (wand->debug != MagickFalse)
2069     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2070   if ((wand->images == (Image *) NULL) ||
2071       (source_wand->images == (Image *) NULL))
2072     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2073   status=CompositeImage(wand->images,source_wand->images,compose,clip_to_self,
2074     x,y,wand->exception);
2075   return(status);
2076 }
2077 
2078 /*
2079 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2080 %                                                                             %
2081 %                                                                             %
2082 %                                                                             %
2083 %   M a g i c k C o m p o s i t e I m a g e G r a v i t y                     %
2084 %                                                                             %
2085 %                                                                             %
2086 %                                                                             %
2087 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2088 %
2089 %  MagickCompositeImageGravity() composite one image onto another using the
2090 %  specified gravity.
2091 %
2092 %  The format of the MagickCompositeImageGravity method is:
2093 %
2094 %      MagickBooleanType MagickCompositeImageGravity(MagickWand *wand,
2095 %        const MagickWand *source_wand,const CompositeOperator compose,
2096 %        const GravityType gravity)
2097 %
2098 %  A description of each parameter follows:
2099 %
2100 %    o wand: the magick wand holding the destination images
2101 %
2102 %    o source_image: the magick wand holding source image.
2103 %
2104 %    o compose: This operator affects how the composite is applied to the
2105 %      image.  The default is Over.  These are some of the compose methods
2106 %      availble.
2107 %
2108 %        OverCompositeOp       InCompositeOp         OutCompositeOp
2109 %        AtopCompositeOp       XorCompositeOp        PlusCompositeOp
2110 %        MinusCompositeOp      AddCompositeOp        SubtractCompositeOp
2111 %        DifferenceCompositeOp BumpmapCompositeOp    CopyCompositeOp
2112 %        DisplaceCompositeOp
2113 %
2114 %    o gravity: positioning gravity (NorthWestGravity, NorthGravity,
2115 %               NorthEastGravity, WestGravity, CenterGravity,
2116 %               EastGravity, SouthWestGravity, SouthGravity,
2117 %               SouthEastGravity)
2118 %
2119 */
MagickCompositeImageGravity(MagickWand * wand,const MagickWand * source_wand,const CompositeOperator compose,const GravityType gravity)2120 WandExport MagickBooleanType MagickCompositeImageGravity(MagickWand *wand,
2121   const MagickWand *source_wand,const CompositeOperator compose,
2122   const GravityType gravity)
2123 {
2124   MagickBooleanType
2125     status;
2126 
2127   RectangleInfo
2128     geometry;
2129 
2130   assert(wand != (MagickWand *) NULL);
2131   assert(wand->signature == MagickWandSignature);
2132   if (wand->debug != MagickFalse)
2133     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2134   if ((wand->images == (Image *) NULL) ||
2135       (source_wand->images == (Image *) NULL))
2136     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2137   SetGeometry(source_wand->images,&geometry);
2138   GravityAdjustGeometry(wand->images->columns,wand->images->rows,gravity,
2139     &geometry);
2140   status=CompositeImage(wand->images,source_wand->images,compose,MagickTrue,
2141     geometry.x,geometry.y,wand->exception);
2142   return(status);
2143 }
2144 
2145 /*
2146 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2147 %                                                                             %
2148 %                                                                             %
2149 %                                                                             %
2150 %   M a g i c k C o m p o s i t e L a y e r s                                 %
2151 %                                                                             %
2152 %                                                                             %
2153 %                                                                             %
2154 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2155 %
2156 %  MagickCompositeLayers() composite the images in the source wand over the
2157 %  images in the destination wand in sequence, starting with the current
2158 %  image in both lists.
2159 %
2160 %  Each layer from the two image lists are composted together until the end of
2161 %  one of the image lists is reached.  The offset of each composition is also
2162 %  adjusted to match the virtual canvas offsets of each layer. As such the
2163 %  given offset is relative to the virtual canvas, and not the actual image.
2164 %
2165 %  Composition uses given x and y offsets, as the 'origin' location of the
2166 %  source images virtual canvas (not the real image) allowing you to compose a
2167 %  list of 'layer images' into the destiantioni images.  This makes it well
2168 %  sutiable for directly composing 'Clears Frame Animations' or 'Coaleased
2169 %  Animations' onto a static or other 'Coaleased Animation' destination image
2170 %  list.  GIF disposal handling is not looked at.
2171 %
2172 %  Special case:- If one of the image sequences is the last image (just a
2173 %  single image remaining), that image is repeatally composed with all the
2174 %  images in the other image list.  Either the source or destination lists may
2175 %  be the single image, for this situation.
2176 %
2177 %  In the case of a single destination image (or last image given), that image
2178 %  will ve cloned to match the number of images remaining in the source image
2179 %  list.
2180 %
2181 %  This is equivelent to the "-layer Composite" Shell API operator.
2182 %
2183 %  The format of the MagickCompositeLayers method is:
2184 %
2185 %      MagickBooleanType MagickCompositeLayers(MagickWand *wand,
2186 %        const MagickWand *source_wand, const CompositeOperator compose,
2187 %        const ssize_t x,const ssize_t y)
2188 %
2189 %  A description of each parameter follows:
2190 %
2191 %    o wand: the magick wand holding destaintion images
2192 %
2193 %    o source_wand: the wand holding the source images
2194 %
2195 %    o compose, x, y:  composition arguments
2196 %
2197 */
MagickCompositeLayers(MagickWand * wand,const MagickWand * source_wand,const CompositeOperator compose,const ssize_t x,const ssize_t y)2198 WandExport MagickBooleanType MagickCompositeLayers(MagickWand *wand,
2199   const MagickWand *source_wand,const CompositeOperator compose,
2200   const ssize_t x,const ssize_t y)
2201 {
2202   MagickBooleanType
2203     status;
2204 
2205   assert(wand != (MagickWand *) NULL);
2206   assert(wand->signature == MagickWandSignature);
2207   if (wand->debug != MagickFalse)
2208     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2209   if ((wand->images == (Image *) NULL) ||
2210       (source_wand->images == (Image *) NULL))
2211     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2212   CompositeLayers(wand->images,compose,source_wand->images,x,y,wand->exception);
2213   status=MagickTrue;  /* FUTURE: determine status from exceptions */
2214   return(status);
2215 }
2216 
2217 /*
2218 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2219 %                                                                             %
2220 %                                                                             %
2221 %                                                                             %
2222 %   M a g i c k C o n n e c t e d C o m p o n e n t s I m a g e               %
2223 %                                                                             %
2224 %                                                                             %
2225 %                                                                             %
2226 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2227 %
2228 %  MagickConnectedComponentsImage() returns the connected-components of the
2229 %  image uniquely labeled.  The returned connected components image colors
2230 %  member defines the number of unique objects.  Choose from 4 or 8-way
2231 %  connectivity.
2232 %
2233 %  The format of the MagickConnectedComponentsImage method is:
2234 %
2235 %      MagickBooleanType MagickConnectedComponentsImage(MagickWand *wand,
2236 %        const size_t connectivity,CCObjectInfo **objects)
2237 %
2238 %  A description of each parameter follows:
2239 %
2240 %    o wand: the magick wand.
2241 %
2242 %    o connectivity: how many neighbors to visit, choose from 4 or 8.
2243 %
2244 %    o objects: return the attributes of each unique object.
2245 %
2246 */
MagickConnectedComponentsImage(MagickWand * wand,const size_t connectivity,CCObjectInfo ** objects)2247 WandExport MagickBooleanType MagickConnectedComponentsImage(MagickWand *wand,
2248   const size_t connectivity,CCObjectInfo **objects)
2249 {
2250   Image
2251     *connected_components_image;
2252 
2253   assert(wand != (MagickWand *) NULL);
2254   assert(wand->signature == MagickWandSignature);
2255   if (wand->debug != MagickFalse)
2256     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2257   if (wand->images == (Image *) NULL)
2258     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2259   connected_components_image=ConnectedComponentsImage(wand->images,connectivity,
2260     objects,wand->exception);
2261   if (connected_components_image == (Image *) NULL)
2262     return(MagickFalse);
2263   ReplaceImageInList(&wand->images,connected_components_image);
2264   return(MagickTrue);
2265 }
2266 
2267 /*
2268 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2269 %                                                                             %
2270 %                                                                             %
2271 %                                                                             %
2272 %   M a g i c k C o n t r a s t I m a g e                                     %
2273 %                                                                             %
2274 %                                                                             %
2275 %                                                                             %
2276 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2277 %
2278 %  MagickContrastImage() enhances the intensity differences between the lighter
2279 %  and darker elements of the image.  Set sharpen to a value other than 0 to
2280 %  increase the image contrast otherwise the contrast is reduced.
2281 %
2282 %  The format of the MagickContrastImage method is:
2283 %
2284 %      MagickBooleanType MagickContrastImage(MagickWand *wand,
2285 %        const MagickBooleanType sharpen)
2286 %
2287 %  A description of each parameter follows:
2288 %
2289 %    o wand: the magick wand.
2290 %
2291 %    o sharpen: Increase or decrease image contrast.
2292 %
2293 %
2294 */
MagickContrastImage(MagickWand * wand,const MagickBooleanType sharpen)2295 WandExport MagickBooleanType MagickContrastImage(MagickWand *wand,
2296   const MagickBooleanType sharpen)
2297 {
2298   MagickBooleanType
2299     status;
2300 
2301   assert(wand != (MagickWand *) NULL);
2302   assert(wand->signature == MagickWandSignature);
2303   if (wand->debug != MagickFalse)
2304     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2305   if (wand->images == (Image *) NULL)
2306     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2307   status=ContrastImage(wand->images,sharpen,wand->exception);
2308   return(status);
2309 }
2310 
2311 /*
2312 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2313 %                                                                             %
2314 %                                                                             %
2315 %                                                                             %
2316 %   M a g i c k C o n t r a s t S t r e t c h I m a g e                       %
2317 %                                                                             %
2318 %                                                                             %
2319 %                                                                             %
2320 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2321 %
2322 %  MagickContrastStretchImage() enhances the contrast of a color image by
2323 %  adjusting the pixels color to span the entire range of colors available.
2324 %  You can also reduce the influence of a particular channel with a gamma
2325 %  value of 0.
2326 %
2327 %  The format of the MagickContrastStretchImage method is:
2328 %
2329 %      MagickBooleanType MagickContrastStretchImage(MagickWand *wand,
2330 %        const double black_point,const double white_point)
2331 %
2332 %  A description of each parameter follows:
2333 %
2334 %    o wand: the magick wand.
2335 %
2336 %    o black_point: the black point.
2337 %
2338 %    o white_point: the white point.
2339 %
2340 */
MagickContrastStretchImage(MagickWand * wand,const double black_point,const double white_point)2341 WandExport MagickBooleanType MagickContrastStretchImage(MagickWand *wand,
2342   const double black_point,const double white_point)
2343 {
2344   MagickBooleanType
2345     status;
2346 
2347   assert(wand != (MagickWand *) NULL);
2348   assert(wand->signature == MagickWandSignature);
2349   if (wand->debug != MagickFalse)
2350     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2351   if (wand->images == (Image *) NULL)
2352     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2353   status=ContrastStretchImage(wand->images,black_point,white_point,
2354     wand->exception);
2355   return(status);
2356 }
2357 
2358 /*
2359 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2360 %                                                                             %
2361 %                                                                             %
2362 %                                                                             %
2363 %   M a g i c k C o n v o l v e I m a g e                                     %
2364 %                                                                             %
2365 %                                                                             %
2366 %                                                                             %
2367 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2368 %
2369 %  MagickConvolveImage() applies a custom convolution kernel to the image.
2370 %
2371 %  The format of the MagickConvolveImage method is:
2372 %
2373 %      MagickBooleanType MagickConvolveImage(MagickWand *wand,
2374 %        const KernelInfo *kernel)
2375 %
2376 %  A description of each parameter follows:
2377 %
2378 %    o wand: the magick wand.
2379 %
2380 %    o kernel: An array of doubles representing the convolution kernel.
2381 %
2382 */
MagickConvolveImage(MagickWand * wand,const KernelInfo * kernel)2383 WandExport MagickBooleanType MagickConvolveImage(MagickWand *wand,
2384   const KernelInfo *kernel)
2385 {
2386   Image
2387     *filter_image;
2388 
2389   assert(wand != (MagickWand *) NULL);
2390   assert(wand->signature == MagickWandSignature);
2391   if (wand->debug != MagickFalse)
2392     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2393   if (kernel == (const KernelInfo *) NULL)
2394     return(MagickFalse);
2395   if (wand->images == (Image *) NULL)
2396     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2397   filter_image=ConvolveImage(wand->images,kernel,wand->exception);
2398   if (filter_image == (Image *) NULL)
2399     return(MagickFalse);
2400   ReplaceImageInList(&wand->images,filter_image);
2401   return(MagickTrue);
2402 }
2403 
2404 /*
2405 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2406 %                                                                             %
2407 %                                                                             %
2408 %                                                                             %
2409 %   M a g i c k C r o p I m a g e                                             %
2410 %                                                                             %
2411 %                                                                             %
2412 %                                                                             %
2413 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2414 %
2415 %  MagickCropImage() extracts a region of the image.
2416 %
2417 %  The format of the MagickCropImage method is:
2418 %
2419 %      MagickBooleanType MagickCropImage(MagickWand *wand,
2420 %        const size_t width,const size_t height,const ssize_t x,const ssize_t y)
2421 %
2422 %  A description of each parameter follows:
2423 %
2424 %    o wand: the magick wand.
2425 %
2426 %    o width: the region width.
2427 %
2428 %    o height: the region height.
2429 %
2430 %    o x: the region x-offset.
2431 %
2432 %    o y: the region y-offset.
2433 %
2434 */
MagickCropImage(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y)2435 WandExport MagickBooleanType MagickCropImage(MagickWand *wand,
2436   const size_t width,const size_t height,const ssize_t x,const ssize_t y)
2437 {
2438   Image
2439     *crop_image;
2440 
2441   RectangleInfo
2442     crop;
2443 
2444   assert(wand != (MagickWand *) NULL);
2445   assert(wand->signature == MagickWandSignature);
2446   if (wand->debug != MagickFalse)
2447     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2448   if (wand->images == (Image *) NULL)
2449     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2450   crop.width=width;
2451   crop.height=height;
2452   crop.x=x;
2453   crop.y=y;
2454   crop_image=CropImage(wand->images,&crop,wand->exception);
2455   if (crop_image == (Image *) NULL)
2456     return(MagickFalse);
2457   ReplaceImageInList(&wand->images,crop_image);
2458   return(MagickTrue);
2459 }
2460 
2461 /*
2462 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2463 %                                                                             %
2464 %                                                                             %
2465 %                                                                             %
2466 %   M a g i c k C y c l e C o l o r m a p I m a g e                           %
2467 %                                                                             %
2468 %                                                                             %
2469 %                                                                             %
2470 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2471 %
2472 %  MagickCycleColormapImage() displaces an image's colormap by a given number
2473 %  of positions.  If you cycle the colormap a number of times you can produce
2474 %  a psychodelic effect.
2475 %
2476 %  The format of the MagickCycleColormapImage method is:
2477 %
2478 %      MagickBooleanType MagickCycleColormapImage(MagickWand *wand,
2479 %        const ssize_t displace)
2480 %
2481 %  A description of each parameter follows:
2482 %
2483 %    o wand: the magick wand.
2484 %
2485 %    o pixel_wand: the pixel wand.
2486 %
2487 */
MagickCycleColormapImage(MagickWand * wand,const ssize_t displace)2488 WandExport MagickBooleanType MagickCycleColormapImage(MagickWand *wand,
2489   const ssize_t displace)
2490 {
2491   MagickBooleanType
2492     status;
2493 
2494   assert(wand != (MagickWand *) NULL);
2495   assert(wand->signature == MagickWandSignature);
2496   if (wand->debug != MagickFalse)
2497     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2498   if (wand->images == (Image *) NULL)
2499     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2500   status=CycleColormapImage(wand->images,displace,wand->exception);
2501   return(status);
2502 }
2503 
2504 /*
2505 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2506 %                                                                             %
2507 %                                                                             %
2508 %                                                                             %
2509 %   M a g i c k C o n s t i t u t e I m a g e                                 %
2510 %                                                                             %
2511 %                                                                             %
2512 %                                                                             %
2513 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2514 %
2515 %  MagickConstituteImage() adds an image to the wand comprised of the pixel
2516 %  data you supply.  The pixel data must be in scanline order top-to-bottom.
2517 %  The data can be char, short int, int, float, or double.  Float and double
2518 %  require the pixels to be normalized [0..1], otherwise [0..Max],  where Max
2519 %  is the maximum value the type can accomodate (e.g. 255 for char).  For
2520 %  example, to create a 640x480 image from unsigned red-green-blue character
2521 %  data, use
2522 %
2523 %      MagickConstituteImage(wand,640,480,"RGB",CharPixel,pixels);
2524 %
2525 %  The format of the MagickConstituteImage method is:
2526 %
2527 %      MagickBooleanType MagickConstituteImage(MagickWand *wand,
2528 %        const size_t columns,const size_t rows,const char *map,
2529 %        const StorageType storage,void *pixels)
2530 %
2531 %  A description of each parameter follows:
2532 %
2533 %    o wand: the magick wand.
2534 %
2535 %    o columns: width in pixels of the image.
2536 %
2537 %    o rows: height in pixels of the image.
2538 %
2539 %    o map:  This string reflects the expected ordering of the pixel array.
2540 %      It can be any combination or order of R = red, G = green, B = blue,
2541 %      A = alpha (0 is transparent), O = alpha (0 is opaque), C = cyan,
2542 %      Y = yellow, M = magenta, K = black, I = intensity (for grayscale),
2543 %      P = pad.
2544 %
2545 %    o storage: Define the data type of the pixels.  Float and double types are
2546 %      expected to be normalized [0..1] otherwise [0..QuantumRange].  Choose from
2547 %      these types: CharPixel, DoublePixel, FloatPixel, IntegerPixel,
2548 %      LongPixel, QuantumPixel, or ShortPixel.
2549 %
2550 %    o pixels: This array of values contain the pixel components as defined by
2551 %      map and type.  You must preallocate this array where the expected
2552 %      length varies depending on the values of width, height, map, and type.
2553 %
2554 %
2555 */
MagickConstituteImage(MagickWand * wand,const size_t columns,const size_t rows,const char * map,const StorageType storage,const void * pixels)2556 WandExport MagickBooleanType MagickConstituteImage(MagickWand *wand,
2557   const size_t columns,const size_t rows,const char *map,
2558   const StorageType storage,const void *pixels)
2559 {
2560   Image
2561     *images;
2562 
2563   assert(wand != (MagickWand *) NULL);
2564   assert(wand->signature == MagickWandSignature);
2565   if (wand->debug != MagickFalse)
2566     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2567   images=ConstituteImage(columns,rows,map,storage,pixels,wand->exception);
2568   if (images == (Image *) NULL)
2569     return(MagickFalse);
2570   return(InsertImageInWand(wand,images));
2571 }
2572 
2573 /*
2574 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2575 %                                                                             %
2576 %                                                                             %
2577 %                                                                             %
2578 %   M a g i c k D e c i p h e r I m a g e                                     %
2579 %                                                                             %
2580 %                                                                             %
2581 %                                                                             %
2582 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2583 %
2584 %  MagickDecipherImage() converts cipher pixels to plain pixels.
2585 %
2586 %  The format of the MagickDecipherImage method is:
2587 %
2588 %      MagickBooleanType MagickDecipherImage(MagickWand *wand,
2589 %        const char *passphrase)
2590 %
2591 %  A description of each parameter follows:
2592 %
2593 %    o wand: the magick wand.
2594 %
2595 %    o passphrase: the passphrase.
2596 %
2597 */
MagickDecipherImage(MagickWand * wand,const char * passphrase)2598 WandExport MagickBooleanType MagickDecipherImage(MagickWand *wand,
2599   const char *passphrase)
2600 {
2601   assert(wand != (MagickWand *) NULL);
2602   assert(wand->signature == MagickWandSignature);
2603   if (wand->debug != MagickFalse)
2604     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2605   if (wand->images == (Image *) NULL)
2606     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2607   return(DecipherImage(wand->images,passphrase,wand->exception));
2608 }
2609 
2610 /*
2611 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2612 %                                                                             %
2613 %                                                                             %
2614 %                                                                             %
2615 %   M a g i c k D e c o n s t r u c t I m a g e s                             %
2616 %                                                                             %
2617 %                                                                             %
2618 %                                                                             %
2619 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2620 %
2621 %  MagickDeconstructImages() compares each image with the next in a sequence
2622 %  and returns the maximum bounding region of any pixel differences it
2623 %  discovers.
2624 %
2625 %  The format of the MagickDeconstructImages method is:
2626 %
2627 %      MagickWand *MagickDeconstructImages(MagickWand *wand)
2628 %
2629 %  A description of each parameter follows:
2630 %
2631 %    o wand: the magick wand.
2632 %
2633 */
MagickDeconstructImages(MagickWand * wand)2634 WandExport MagickWand *MagickDeconstructImages(MagickWand *wand)
2635 {
2636   Image
2637     *deconstruct_image;
2638 
2639   assert(wand != (MagickWand *) NULL);
2640   assert(wand->signature == MagickWandSignature);
2641   if (wand->debug != MagickFalse)
2642     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2643   if (wand->images == (Image *) NULL)
2644     return((MagickWand *) NULL);
2645   deconstruct_image=CompareImagesLayers(wand->images,CompareAnyLayer,
2646     wand->exception);
2647   if (deconstruct_image == (Image *) NULL)
2648     return((MagickWand *) NULL);
2649   return(CloneMagickWandFromImages(wand,deconstruct_image));
2650 }
2651 
2652 /*
2653 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2654 %                                                                             %
2655 %                                                                             %
2656 %                                                                             %
2657 %     M a g i c k D e s k e w I m a g e                                       %
2658 %                                                                             %
2659 %                                                                             %
2660 %                                                                             %
2661 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2662 %
2663 %  MagickDeskewImage() removes skew from the image.  Skew is an artifact that
2664 %  occurs in scanned images because of the camera being misaligned,
2665 %  imperfections in the scanning or surface, or simply because the paper was
2666 %  not placed completely flat when scanned.
2667 %
2668 %  The format of the MagickDeskewImage method is:
2669 %
2670 %      MagickBooleanType MagickDeskewImage(MagickWand *wand,
2671 %        const double threshold)
2672 %
2673 %  A description of each parameter follows:
2674 %
2675 %    o wand: the magick wand.
2676 %
2677 %    o threshold: separate background from foreground.
2678 %
2679 */
MagickDeskewImage(MagickWand * wand,const double threshold)2680 WandExport MagickBooleanType MagickDeskewImage(MagickWand *wand,
2681   const double threshold)
2682 {
2683   Image
2684     *sepia_image;
2685 
2686   assert(wand != (MagickWand *) NULL);
2687   assert(wand->signature == MagickWandSignature);
2688   if (wand->debug != MagickFalse)
2689     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2690   if (wand->images == (Image *) NULL)
2691     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2692   sepia_image=DeskewImage(wand->images,threshold,wand->exception);
2693   if (sepia_image == (Image *) NULL)
2694     return(MagickFalse);
2695   ReplaceImageInList(&wand->images,sepia_image);
2696   return(MagickTrue);
2697 }
2698 
2699 /*
2700 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2701 %                                                                             %
2702 %                                                                             %
2703 %                                                                             %
2704 %     M a g i c k D e s p e c k l e I m a g e                                 %
2705 %                                                                             %
2706 %                                                                             %
2707 %                                                                             %
2708 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2709 %
2710 %  MagickDespeckleImage() reduces the speckle noise in an image while
2711 %  perserving the edges of the original image.
2712 %
2713 %  The format of the MagickDespeckleImage method is:
2714 %
2715 %      MagickBooleanType MagickDespeckleImage(MagickWand *wand)
2716 %
2717 %  A description of each parameter follows:
2718 %
2719 %    o wand: the magick wand.
2720 %
2721 */
MagickDespeckleImage(MagickWand * wand)2722 WandExport MagickBooleanType MagickDespeckleImage(MagickWand *wand)
2723 {
2724   Image
2725     *despeckle_image;
2726 
2727   assert(wand != (MagickWand *) NULL);
2728   assert(wand->signature == MagickWandSignature);
2729   if (wand->debug != MagickFalse)
2730     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2731   if (wand->images == (Image *) NULL)
2732     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2733   despeckle_image=DespeckleImage(wand->images,wand->exception);
2734   if (despeckle_image == (Image *) NULL)
2735     return(MagickFalse);
2736   ReplaceImageInList(&wand->images,despeckle_image);
2737   return(MagickTrue);
2738 }
2739 
2740 /*
2741 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2742 %                                                                             %
2743 %                                                                             %
2744 %                                                                             %
2745 %   M a g i c k D e s t r o y I m a g e                                       %
2746 %                                                                             %
2747 %                                                                             %
2748 %                                                                             %
2749 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2750 %
2751 %  MagickDestroyImage() dereferences an image, deallocating memory associated
2752 %  with the image if the reference count becomes zero.
2753 %
2754 %  The format of the MagickDestroyImage method is:
2755 %
2756 %      Image *MagickDestroyImage(Image *image)
2757 %
2758 %  A description of each parameter follows:
2759 %
2760 %    o image: the image.
2761 %
2762 */
MagickDestroyImage(Image * image)2763 WandExport Image *MagickDestroyImage(Image *image)
2764 {
2765   return(DestroyImage(image));
2766 }
2767 
2768 /*
2769 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2770 %                                                                             %
2771 %                                                                             %
2772 %                                                                             %
2773 %   M a g i c k D i s p l a y I m a g e                                       %
2774 %                                                                             %
2775 %                                                                             %
2776 %                                                                             %
2777 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2778 %
2779 %  MagickDisplayImage() displays an image.
2780 %
2781 %  The format of the MagickDisplayImage method is:
2782 %
2783 %      MagickBooleanType MagickDisplayImage(MagickWand *wand,
2784 %        const char *server_name)
2785 %
2786 %  A description of each parameter follows:
2787 %
2788 %    o wand: the magick wand.
2789 %
2790 %    o server_name: the X server name.
2791 %
2792 */
MagickDisplayImage(MagickWand * wand,const char * server_name)2793 WandExport MagickBooleanType MagickDisplayImage(MagickWand *wand,
2794   const char *server_name)
2795 {
2796   Image
2797     *image;
2798 
2799   MagickBooleanType
2800     status;
2801 
2802   assert(wand != (MagickWand *) NULL);
2803   assert(wand->signature == MagickWandSignature);
2804   if (wand->debug != MagickFalse)
2805     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2806   if (wand->images == (Image *) NULL)
2807     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2808   image=CloneImage(wand->images,0,0,MagickTrue,wand->exception);
2809   if (image == (Image *) NULL)
2810     return(MagickFalse);
2811   (void) CloneString(&wand->image_info->server_name,server_name);
2812   status=DisplayImages(wand->image_info,image,wand->exception);
2813   image=DestroyImage(image);
2814   return(status);
2815 }
2816 
2817 /*
2818 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2819 %                                                                             %
2820 %                                                                             %
2821 %                                                                             %
2822 %   M a g i c k D i s p l a y I m a g e s                                     %
2823 %                                                                             %
2824 %                                                                             %
2825 %                                                                             %
2826 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2827 %
2828 %  MagickDisplayImages() displays an image or image sequence.
2829 %
2830 %  The format of the MagickDisplayImages method is:
2831 %
2832 %      MagickBooleanType MagickDisplayImages(MagickWand *wand,
2833 %        const char *server_name)
2834 %
2835 %  A description of each parameter follows:
2836 %
2837 %    o wand: the magick wand.
2838 %
2839 %    o server_name: the X server name.
2840 %
2841 */
MagickDisplayImages(MagickWand * wand,const char * server_name)2842 WandExport MagickBooleanType MagickDisplayImages(MagickWand *wand,
2843   const char *server_name)
2844 {
2845   MagickBooleanType
2846     status;
2847 
2848   assert(wand != (MagickWand *) NULL);
2849   assert(wand->signature == MagickWandSignature);
2850   if (wand->debug != MagickFalse)
2851     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2852   (void) CloneString(&wand->image_info->server_name,server_name);
2853   status=DisplayImages(wand->image_info,wand->images,wand->exception);
2854   return(status);
2855 }
2856 
2857 /*
2858 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2859 %                                                                             %
2860 %                                                                             %
2861 %                                                                             %
2862 %   M a g i c k D i s t o r t I m a g e                                       %
2863 %                                                                             %
2864 %                                                                             %
2865 %                                                                             %
2866 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2867 %
2868 %  MagickDistortImage() distorts an image using various distortion methods, by
2869 %  mapping color lookups of the source image to a new destination image
2870 %  usally of the same size as the source image, unless 'bestfit' is set to
2871 %  true.
2872 %
2873 %  If 'bestfit' is enabled, and distortion allows it, the destination image is
2874 %  adjusted to ensure the whole source 'image' will just fit within the final
2875 %  destination image, which will be sized and offset accordingly.  Also in
2876 %  many cases the virtual offset of the source image will be taken into
2877 %  account in the mapping.
2878 %
2879 %  The format of the MagickDistortImage method is:
2880 %
2881 %      MagickBooleanType MagickDistortImage(MagickWand *wand,
2882 %        const DistortMethod method,const size_t number_arguments,
2883 %        const double *arguments,const MagickBooleanType bestfit)
2884 %
2885 %  A description of each parameter follows:
2886 %
2887 %    o image: the image to be distorted.
2888 %
2889 %    o method: the method of image distortion.
2890 %
2891 %        ArcDistortion always ignores the source image offset, and always
2892 %        'bestfit' the destination image with the top left corner offset
2893 %        relative to the polar mapping center.
2894 %
2895 %        Bilinear has no simple inverse mapping so it does not allow 'bestfit'
2896 %        style of image distortion.
2897 %
2898 %        Affine, Perspective, and Bilinear, do least squares fitting of the
2899 %        distortion when more than the minimum number of control point pairs
2900 %        are provided.
2901 %
2902 %        Perspective, and Bilinear, falls back to a Affine distortion when less
2903 %        that 4 control point pairs are provided. While Affine distortions let
2904 %        you use any number of control point pairs, that is Zero pairs is a
2905 %        no-Op (viewport only) distrotion, one pair is a translation and two
2906 %        pairs of control points do a scale-rotate-translate, without any
2907 %        shearing.
2908 %
2909 %    o number_arguments: the number of arguments given for this distortion
2910 %      method.
2911 %
2912 %    o arguments: the arguments for this distortion method.
2913 %
2914 %    o bestfit: Attempt to resize destination to fit distorted source.
2915 %
2916 */
MagickDistortImage(MagickWand * wand,const DistortMethod method,const size_t number_arguments,const double * arguments,const MagickBooleanType bestfit)2917 WandExport MagickBooleanType MagickDistortImage(MagickWand *wand,
2918   const DistortMethod method,const size_t number_arguments,
2919   const double *arguments,const MagickBooleanType bestfit)
2920 {
2921   Image
2922     *distort_image;
2923 
2924   assert(wand != (MagickWand *) NULL);
2925   assert(wand->signature == MagickWandSignature);
2926   if (wand->debug != MagickFalse)
2927     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2928   if (wand->images == (Image *) NULL)
2929     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2930   distort_image=DistortImage(wand->images,method,number_arguments,arguments,
2931     bestfit,wand->exception);
2932   if (distort_image == (Image *) NULL)
2933     return(MagickFalse);
2934   ReplaceImageInList(&wand->images,distort_image);
2935   return(MagickTrue);
2936 }
2937 
2938 /*
2939 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2940 %                                                                             %
2941 %                                                                             %
2942 %                                                                             %
2943 %   M a g i c k D r a w I m a g e                                             %
2944 %                                                                             %
2945 %                                                                             %
2946 %                                                                             %
2947 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2948 %
2949 %  MagickDrawImage() renders the drawing wand on the current image.
2950 %
2951 %  The format of the MagickDrawImage method is:
2952 %
2953 %      MagickBooleanType MagickDrawImage(MagickWand *wand,
2954 %        const DrawingWand *drawing_wand)
2955 %
2956 %  A description of each parameter follows:
2957 %
2958 %    o wand: the magick wand.
2959 %
2960 %    o drawing_wand: the draw wand.
2961 %
2962 */
MagickDrawImage(MagickWand * wand,const DrawingWand * drawing_wand)2963 WandExport MagickBooleanType MagickDrawImage(MagickWand *wand,
2964   const DrawingWand *drawing_wand)
2965 {
2966   char
2967     *primitive;
2968 
2969   DrawInfo
2970     *draw_info;
2971 
2972   MagickBooleanType
2973     status;
2974 
2975   assert(wand != (MagickWand *) NULL);
2976   assert(wand->signature == MagickWandSignature);
2977   if (wand->debug != MagickFalse)
2978     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2979   if (wand->images == (Image *) NULL)
2980     ThrowWandException(WandError,"ContainsNoImages",wand->name);
2981   draw_info=PeekDrawingWand(drawing_wand);
2982   if ((draw_info == (DrawInfo *) NULL) ||
2983       (draw_info->primitive == (char *) NULL))
2984     return(MagickFalse);
2985   primitive=AcquireString(draw_info->primitive);
2986   draw_info=DestroyDrawInfo(draw_info);
2987   draw_info=CloneDrawInfo(wand->image_info,(DrawInfo *) NULL);
2988   draw_info->primitive=primitive;
2989   status=DrawImage(wand->images,draw_info,wand->exception);
2990   draw_info=DestroyDrawInfo(draw_info);
2991   return(status);
2992 }
2993 
2994 /*
2995 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2996 %                                                                             %
2997 %                                                                             %
2998 %                                                                             %
2999 %   M a g i c k E d g e I m a g e                                             %
3000 %                                                                             %
3001 %                                                                             %
3002 %                                                                             %
3003 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3004 %
3005 %  MagickEdgeImage() enhance edges within the image with a convolution filter
3006 %  of the given radius.  Use a radius of 0 and Edge() selects a suitable
3007 %  radius for you.
3008 %
3009 %  The format of the MagickEdgeImage method is:
3010 %
3011 %      MagickBooleanType MagickEdgeImage(MagickWand *wand,const double radius)
3012 %
3013 %  A description of each parameter follows:
3014 %
3015 %    o wand: the magick wand.
3016 %
3017 %    o radius: the radius of the pixel neighborhood.
3018 %
3019 */
MagickEdgeImage(MagickWand * wand,const double radius)3020 WandExport MagickBooleanType MagickEdgeImage(MagickWand *wand,
3021   const double radius)
3022 {
3023   Image
3024     *edge_image;
3025 
3026   assert(wand != (MagickWand *) NULL);
3027   assert(wand->signature == MagickWandSignature);
3028   if (wand->debug != MagickFalse)
3029     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3030   if (wand->images == (Image *) NULL)
3031     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3032   edge_image=EdgeImage(wand->images,radius,wand->exception);
3033   if (edge_image == (Image *) NULL)
3034     return(MagickFalse);
3035   ReplaceImageInList(&wand->images,edge_image);
3036   return(MagickTrue);
3037 }
3038 
3039 /*
3040 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3041 %                                                                             %
3042 %                                                                             %
3043 %                                                                             %
3044 %   M a g i c k E m b o s s I m a g e                                         %
3045 %                                                                             %
3046 %                                                                             %
3047 %                                                                             %
3048 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3049 %
3050 %  MagickEmbossImage() returns a grayscale image with a three-dimensional
3051 %  effect.  We convolve the image with a Gaussian operator of the given radius
3052 %  and standard deviation (sigma).  For reasonable results, radius should be
3053 %  larger than sigma.  Use a radius of 0 and Emboss() selects a suitable
3054 %  radius for you.
3055 %
3056 %  The format of the MagickEmbossImage method is:
3057 %
3058 %      MagickBooleanType MagickEmbossImage(MagickWand *wand,const double radius,
3059 %        const double sigma)
3060 %
3061 %  A description of each parameter follows:
3062 %
3063 %    o wand: the magick wand.
3064 %
3065 %    o radius: the radius of the Gaussian, in pixels, not counting the center
3066 %      pixel.
3067 %
3068 %    o sigma: the standard deviation of the Gaussian, in pixels.
3069 %
3070 */
MagickEmbossImage(MagickWand * wand,const double radius,const double sigma)3071 WandExport MagickBooleanType MagickEmbossImage(MagickWand *wand,
3072   const double radius,const double sigma)
3073 {
3074   Image
3075     *emboss_image;
3076 
3077   assert(wand != (MagickWand *) NULL);
3078   assert(wand->signature == MagickWandSignature);
3079   if (wand->debug != MagickFalse)
3080     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3081   if (wand->images == (Image *) NULL)
3082     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3083   emboss_image=EmbossImage(wand->images,radius,sigma,wand->exception);
3084   if (emboss_image == (Image *) NULL)
3085     return(MagickFalse);
3086   ReplaceImageInList(&wand->images,emboss_image);
3087   return(MagickTrue);
3088 }
3089 
3090 /*
3091 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3092 %                                                                             %
3093 %                                                                             %
3094 %                                                                             %
3095 %   M a g i c k E n c i p h e r I m a g e                                     %
3096 %                                                                             %
3097 %                                                                             %
3098 %                                                                             %
3099 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3100 %
3101 %  MagickEncipherImage() converts plaint pixels to cipher pixels.
3102 %
3103 %  The format of the MagickEncipherImage method is:
3104 %
3105 %      MagickBooleanType MagickEncipherImage(MagickWand *wand,
3106 %        const char *passphrase)
3107 %
3108 %  A description of each parameter follows:
3109 %
3110 %    o wand: the magick wand.
3111 %
3112 %    o passphrase: the passphrase.
3113 %
3114 */
MagickEncipherImage(MagickWand * wand,const char * passphrase)3115 WandExport MagickBooleanType MagickEncipherImage(MagickWand *wand,
3116   const char *passphrase)
3117 {
3118   assert(wand != (MagickWand *) NULL);
3119   assert(wand->signature == MagickWandSignature);
3120   if (wand->debug != MagickFalse)
3121     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3122   if (wand->images == (Image *) NULL)
3123     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3124   return(EncipherImage(wand->images,passphrase,wand->exception));
3125 }
3126 
3127 /*
3128 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3129 %                                                                             %
3130 %                                                                             %
3131 %                                                                             %
3132 %   M a g i c k E n h a n c e I m a g e                                       %
3133 %                                                                             %
3134 %                                                                             %
3135 %                                                                             %
3136 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3137 %
3138 %  MagickEnhanceImage() applies a digital filter that improves the quality of a
3139 %  noisy image.
3140 %
3141 %  The format of the MagickEnhanceImage method is:
3142 %
3143 %      MagickBooleanType MagickEnhanceImage(MagickWand *wand)
3144 %
3145 %  A description of each parameter follows:
3146 %
3147 %    o wand: the magick wand.
3148 %
3149 */
MagickEnhanceImage(MagickWand * wand)3150 WandExport MagickBooleanType MagickEnhanceImage(MagickWand *wand)
3151 {
3152   Image
3153     *enhance_image;
3154 
3155   assert(wand != (MagickWand *) NULL);
3156   assert(wand->signature == MagickWandSignature);
3157   if (wand->debug != MagickFalse)
3158     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3159   if (wand->images == (Image *) NULL)
3160     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3161   enhance_image=EnhanceImage(wand->images,wand->exception);
3162   if (enhance_image == (Image *) NULL)
3163     return(MagickFalse);
3164   ReplaceImageInList(&wand->images,enhance_image);
3165   return(MagickTrue);
3166 }
3167 
3168 /*
3169 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3170 %                                                                             %
3171 %                                                                             %
3172 %                                                                             %
3173 %   M a g i c k E q u a l i z e I m a g e                                     %
3174 %                                                                             %
3175 %                                                                             %
3176 %                                                                             %
3177 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3178 %
3179 %  MagickEqualizeImage() equalizes the image histogram.
3180 %
3181 %  The format of the MagickEqualizeImage method is:
3182 %
3183 %      MagickBooleanType MagickEqualizeImage(MagickWand *wand)
3184 %
3185 %  A description of each parameter follows:
3186 %
3187 %    o wand: the magick wand.
3188 %
3189 %    o channel: the image channel(s).
3190 %
3191 */
MagickEqualizeImage(MagickWand * wand)3192 WandExport MagickBooleanType MagickEqualizeImage(MagickWand *wand)
3193 {
3194   MagickBooleanType
3195     status;
3196 
3197   assert(wand != (MagickWand *) NULL);
3198   assert(wand->signature == MagickWandSignature);
3199   if (wand->debug != MagickFalse)
3200     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3201   if (wand->images == (Image *) NULL)
3202     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3203   status=EqualizeImage(wand->images,wand->exception);
3204   return(status);
3205 }
3206 
3207 /*
3208 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3209 %                                                                             %
3210 %                                                                             %
3211 %                                                                             %
3212 %   M a g i c k E v a l u a t e I m a g e                                     %
3213 %                                                                             %
3214 %                                                                             %
3215 %                                                                             %
3216 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3217 %
3218 %  MagickEvaluateImage() applys an arithmetic, relational, or logical
3219 %  expression to an image.  Use these operators to lighten or darken an image,
3220 %  to increase or decrease contrast in an image, or to produce the "negative"
3221 %  of an image.
3222 %
3223 %  The format of the MagickEvaluateImage method is:
3224 %
3225 %      MagickBooleanType MagickEvaluateImage(MagickWand *wand,
3226 %        const MagickEvaluateOperator operator,const double value)
3227 %      MagickBooleanType MagickEvaluateImages(MagickWand *wand,
3228 %        const MagickEvaluateOperator operator)
3229 %
3230 %  A description of each parameter follows:
3231 %
3232 %    o wand: the magick wand.
3233 %
3234 %    o op: A channel operator.
3235 %
3236 %    o value: A value value.
3237 %
3238 */
3239 
MagickEvaluateImages(MagickWand * wand,const MagickEvaluateOperator op)3240 WandExport MagickWand *MagickEvaluateImages(MagickWand *wand,
3241   const MagickEvaluateOperator op)
3242 {
3243   Image
3244     *evaluate_image;
3245 
3246   assert(wand != (MagickWand *) NULL);
3247   assert(wand->signature == MagickWandSignature);
3248   if (wand->debug != MagickFalse)
3249     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3250   if (wand->images == (Image *) NULL)
3251     return((MagickWand *) NULL);
3252   evaluate_image=EvaluateImages(wand->images,op,wand->exception);
3253   if (evaluate_image == (Image *) NULL)
3254     return((MagickWand *) NULL);
3255   return(CloneMagickWandFromImages(wand,evaluate_image));
3256 }
3257 
MagickEvaluateImage(MagickWand * wand,const MagickEvaluateOperator op,const double value)3258 WandExport MagickBooleanType MagickEvaluateImage(MagickWand *wand,
3259   const MagickEvaluateOperator op,const double value)
3260 {
3261   MagickBooleanType
3262     status;
3263 
3264   assert(wand != (MagickWand *) NULL);
3265   assert(wand->signature == MagickWandSignature);
3266   if (wand->debug != MagickFalse)
3267     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3268   if (wand->images == (Image *) NULL)
3269     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3270   status=EvaluateImage(wand->images,op,value,wand->exception);
3271   return(status);
3272 }
3273 
3274 /*
3275 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3276 %                                                                             %
3277 %                                                                             %
3278 %                                                                             %
3279 %   M a g i c k E x p o r t I m a g e P i x e l s                             %
3280 %                                                                             %
3281 %                                                                             %
3282 %                                                                             %
3283 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3284 %
3285 %  MagickExportImagePixels() extracts pixel data from an image and returns it
3286 %  to you.  The method returns MagickTrue on success otherwise MagickFalse if
3287 %  an error is encountered.  The data is returned as char, short int, int,
3288 %  ssize_t, float, or double in the order specified by map.
3289 %
3290 %  Suppose you want to extract the first scanline of a 640x480 image as
3291 %  character data in red-green-blue order:
3292 %
3293 %      MagickExportImagePixels(wand,0,0,640,1,"RGB",CharPixel,pixels);
3294 %
3295 %  The format of the MagickExportImagePixels method is:
3296 %
3297 %      MagickBooleanType MagickExportImagePixels(MagickWand *wand,
3298 %        const ssize_t x,const ssize_t y,const size_t columns,
3299 %        const size_t rows,const char *map,const StorageType storage,
3300 %        void *pixels)
3301 %
3302 %  A description of each parameter follows:
3303 %
3304 %    o wand: the magick wand.
3305 %
3306 %    o x, y, columns, rows:  These values define the perimeter
3307 %      of a region of pixels you want to extract.
3308 %
3309 %    o map:  This string reflects the expected ordering of the pixel array.
3310 %      It can be any combination or order of R = red, G = green, B = blue,
3311 %      A = alpha (0 is transparent), O = alpha (0 is opaque), C = cyan,
3312 %      Y = yellow, M = magenta, K = black, I = intensity (for grayscale),
3313 %      P = pad.
3314 %
3315 %    o storage: Define the data type of the pixels.  Float and double types are
3316 %      expected to be normalized [0..1] otherwise [0..QuantumRange].  Choose from
3317 %      these types: CharPixel, DoublePixel, FloatPixel, IntegerPixel,
3318 %      LongPixel, QuantumPixel, or ShortPixel.
3319 %
3320 %    o pixels: This array of values contain the pixel components as defined by
3321 %      map and type.  You must preallocate this array where the expected
3322 %      length varies depending on the values of width, height, map, and type.
3323 %
3324 */
MagickExportImagePixels(MagickWand * wand,const ssize_t x,const ssize_t y,const size_t columns,const size_t rows,const char * map,const StorageType storage,void * pixels)3325 WandExport MagickBooleanType MagickExportImagePixels(MagickWand *wand,
3326   const ssize_t x,const ssize_t y,const size_t columns,
3327   const size_t rows,const char *map,const StorageType storage,
3328   void *pixels)
3329 {
3330   MagickBooleanType
3331     status;
3332 
3333   assert(wand != (MagickWand *) NULL);
3334   assert(wand->signature == MagickWandSignature);
3335   if (wand->debug != MagickFalse)
3336     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3337   if (wand->images == (Image *) NULL)
3338     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3339   status=ExportImagePixels(wand->images,x,y,columns,rows,map,
3340     storage,pixels,wand->exception);
3341   return(status);
3342 }
3343 
3344 /*
3345 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3346 %                                                                             %
3347 %                                                                             %
3348 %                                                                             %
3349 %   M a g i c k E x t e n t I m a g e                                         %
3350 %                                                                             %
3351 %                                                                             %
3352 %                                                                             %
3353 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3354 %
3355 %  MagickExtentImage() extends the image as defined by the geometry, gravity,
3356 %  and wand background color.  Set the (x,y) offset of the geometry to move
3357 %  the original wand relative to the extended wand.
3358 %
3359 %  The format of the MagickExtentImage method is:
3360 %
3361 %      MagickBooleanType MagickExtentImage(MagickWand *wand,const size_t width,
3362 %        const size_t height,const ssize_t x,const ssize_t y)
3363 %
3364 %  A description of each parameter follows:
3365 %
3366 %    o wand: the magick wand.
3367 %
3368 %    o width: the region width.
3369 %
3370 %    o height: the region height.
3371 %
3372 %    o x: the region x offset.
3373 %
3374 %    o y: the region y offset.
3375 %
3376 */
MagickExtentImage(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y)3377 WandExport MagickBooleanType MagickExtentImage(MagickWand *wand,
3378   const size_t width,const size_t height,const ssize_t x,const ssize_t y)
3379 {
3380   Image
3381     *extent_image;
3382 
3383   RectangleInfo
3384     extent;
3385 
3386   assert(wand != (MagickWand *) NULL);
3387   assert(wand->signature == MagickWandSignature);
3388   if (wand->debug != MagickFalse)
3389     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3390   if (wand->images == (Image *) NULL)
3391     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3392   extent.width=width;
3393   extent.height=height;
3394   extent.x=x;
3395   extent.y=y;
3396   extent_image=ExtentImage(wand->images,&extent,wand->exception);
3397   if (extent_image == (Image *) NULL)
3398     return(MagickFalse);
3399   ReplaceImageInList(&wand->images,extent_image);
3400   return(MagickTrue);
3401 }
3402 
3403 /*
3404 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3405 %                                                                             %
3406 %                                                                             %
3407 %                                                                             %
3408 %   M a g i c k F l i p I m a g e                                             %
3409 %                                                                             %
3410 %                                                                             %
3411 %                                                                             %
3412 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3413 %
3414 %  MagickFlipImage() creates a vertical mirror image by reflecting the pixels
3415 %  around the central x-axis.
3416 %
3417 %  The format of the MagickFlipImage method is:
3418 %
3419 %      MagickBooleanType MagickFlipImage(MagickWand *wand)
3420 %
3421 %  A description of each parameter follows:
3422 %
3423 %    o wand: the magick wand.
3424 %
3425 */
MagickFlipImage(MagickWand * wand)3426 WandExport MagickBooleanType MagickFlipImage(MagickWand *wand)
3427 {
3428   Image
3429     *flip_image;
3430 
3431   assert(wand != (MagickWand *) NULL);
3432   assert(wand->signature == MagickWandSignature);
3433   if (wand->debug != MagickFalse)
3434     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3435   if (wand->images == (Image *) NULL)
3436     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3437   flip_image=FlipImage(wand->images,wand->exception);
3438   if (flip_image == (Image *) NULL)
3439     return(MagickFalse);
3440   ReplaceImageInList(&wand->images,flip_image);
3441   return(MagickTrue);
3442 }
3443 
3444 /*
3445 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3446 %                                                                             %
3447 %                                                                             %
3448 %                                                                             %
3449 %   M a g i c k F l o o d f i l l P a i n t I m a g e                         %
3450 %                                                                             %
3451 %                                                                             %
3452 %                                                                             %
3453 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3454 %
3455 %  MagickFloodfillPaintImage() changes the color value of any pixel that matches
3456 %  target and is an immediate neighbor.  If the method FillToBorderMethod is
3457 %  specified, the color value is changed for any neighbor pixel that does not
3458 %  match the bordercolor member of image.
3459 %
3460 %  The format of the MagickFloodfillPaintImage method is:
3461 %
3462 %      MagickBooleanType MagickFloodfillPaintImage(MagickWand *wand,
3463 %        const PixelWand *fill,const double fuzz,const PixelWand *bordercolor,
3464 %        const ssize_t x,const ssize_t y,const MagickBooleanType invert)
3465 %
3466 %  A description of each parameter follows:
3467 %
3468 %    o wand: the magick wand.
3469 %
3470 %    o fill: the floodfill color pixel wand.
3471 %
3472 %    o fuzz: By default target must match a particular pixel color
3473 %      exactly.  However, in many cases two colors may differ by a small amount.
3474 %      The fuzz member of image defines how much tolerance is acceptable to
3475 %      consider two colors as the same.  For example, set fuzz to 10 and the
3476 %      color red at intensities of 100 and 102 respectively are now interpreted
3477 %      as the same color for the purposes of the floodfill.
3478 %
3479 %    o bordercolor: the border color pixel wand.
3480 %
3481 %    o x,y: the starting location of the operation.
3482 %
3483 %    o invert: paint any pixel that does not match the target color.
3484 %
3485 */
MagickFloodfillPaintImage(MagickWand * wand,const PixelWand * fill,const double fuzz,const PixelWand * bordercolor,const ssize_t x,const ssize_t y,const MagickBooleanType invert)3486 WandExport MagickBooleanType MagickFloodfillPaintImage(MagickWand *wand,
3487   const PixelWand *fill,const double fuzz,const PixelWand *bordercolor,
3488   const ssize_t x,const ssize_t y,const MagickBooleanType invert)
3489 {
3490   DrawInfo
3491     *draw_info;
3492 
3493   MagickBooleanType
3494     status;
3495 
3496   PixelInfo
3497     target;
3498 
3499   assert(wand != (MagickWand *) NULL);
3500   assert(wand->signature == MagickWandSignature);
3501   if (wand->debug != MagickFalse)
3502     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3503   if (wand->images == (Image *) NULL)
3504     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3505   draw_info=CloneDrawInfo(wand->image_info,(DrawInfo *) NULL);
3506   PixelGetQuantumPacket(fill,&draw_info->fill);
3507   (void) GetOneVirtualPixelInfo(wand->images,TileVirtualPixelMethod,x %
3508     wand->images->columns,y % wand->images->rows,&target,wand->exception);
3509   if (bordercolor != (PixelWand *) NULL)
3510     PixelGetMagickColor(bordercolor,&target);
3511   wand->images->fuzz=fuzz;
3512   status=FloodfillPaintImage(wand->images,draw_info,&target,x,y,invert,
3513     wand->exception);
3514   draw_info=DestroyDrawInfo(draw_info);
3515   return(status);
3516 }
3517 
3518 /*
3519 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3520 %                                                                             %
3521 %                                                                             %
3522 %                                                                             %
3523 %   M a g i c k F l o p I m a g e                                             %
3524 %                                                                             %
3525 %                                                                             %
3526 %                                                                             %
3527 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3528 %
3529 %  MagickFlopImage() creates a horizontal mirror image by reflecting the pixels
3530 %  around the central y-axis.
3531 %
3532 %  The format of the MagickFlopImage method is:
3533 %
3534 %      MagickBooleanType MagickFlopImage(MagickWand *wand)
3535 %
3536 %  A description of each parameter follows:
3537 %
3538 %    o wand: the magick wand.
3539 %
3540 */
MagickFlopImage(MagickWand * wand)3541 WandExport MagickBooleanType MagickFlopImage(MagickWand *wand)
3542 {
3543   Image
3544     *flop_image;
3545 
3546   assert(wand != (MagickWand *) NULL);
3547   assert(wand->signature == MagickWandSignature);
3548   if (wand->debug != MagickFalse)
3549     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3550   if (wand->images == (Image *) NULL)
3551     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3552   flop_image=FlopImage(wand->images,wand->exception);
3553   if (flop_image == (Image *) NULL)
3554     return(MagickFalse);
3555   ReplaceImageInList(&wand->images,flop_image);
3556   return(MagickTrue);
3557 }
3558 
3559 /*
3560 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3561 %                                                                             %
3562 %                                                                             %
3563 %                                                                             %
3564 %   M a g i c k F o u r i e r T r a n s f o r m I m a g e                     %
3565 %                                                                             %
3566 %                                                                             %
3567 %                                                                             %
3568 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3569 %
3570 %  MagickForwardFourierTransformImage() implements the discrete Fourier
3571 %  transform (DFT) of the image either as a magnitude / phase or real /
3572 %  imaginary image pair.
3573 %
3574 %  The format of the MagickForwardFourierTransformImage method is:
3575 %
3576 %      MagickBooleanType MagickForwardFourierTransformImage(MagickWand *wand,
3577 %        const MagickBooleanType magnitude)
3578 %
3579 %  A description of each parameter follows:
3580 %
3581 %    o wand: the magick wand.
3582 %
3583 %    o magnitude: if true, return as magnitude / phase pair otherwise a real /
3584 %      imaginary image pair.
3585 %
3586 */
MagickForwardFourierTransformImage(MagickWand * wand,const MagickBooleanType magnitude)3587 WandExport MagickBooleanType MagickForwardFourierTransformImage(
3588   MagickWand *wand,const MagickBooleanType magnitude)
3589 {
3590   Image
3591     *forward_image;
3592 
3593   assert(wand != (MagickWand *) NULL);
3594   assert(wand->signature == MagickWandSignature);
3595   if (wand->debug != MagickFalse)
3596     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3597   if (wand->images == (Image *) NULL)
3598     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3599   forward_image=ForwardFourierTransformImage(wand->images,magnitude,
3600     wand->exception);
3601   if (forward_image == (Image *) NULL)
3602     return(MagickFalse);
3603   ReplaceImageInList(&wand->images,forward_image);
3604   return(MagickTrue);
3605 }
3606 
3607 /*
3608 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3609 %                                                                             %
3610 %                                                                             %
3611 %                                                                             %
3612 %   M a g i c k F r a m e I m a g e                                           %
3613 %                                                                             %
3614 %                                                                             %
3615 %                                                                             %
3616 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3617 %
3618 %  MagickFrameImage() adds a simulated three-dimensional border around the
3619 %  image.  The width and height specify the border width of the vertical and
3620 %  horizontal sides of the frame.  The inner and outer bevels indicate the
3621 %  width of the inner and outer shadows of the frame.
3622 %
3623 %  The format of the MagickFrameImage method is:
3624 %
3625 %      MagickBooleanType MagickFrameImage(MagickWand *wand,
3626 %        const PixelWand *matte_color,const size_t width,
3627 %        const size_t height,const ssize_t inner_bevel,
3628 %        const ssize_t outer_bevel,const CompositeOperator compose)
3629 %
3630 %  A description of each parameter follows:
3631 %
3632 %    o wand: the magick wand.
3633 %
3634 %    o matte_color: the frame color pixel wand.
3635 %
3636 %    o width: the border width.
3637 %
3638 %    o height: the border height.
3639 %
3640 %    o inner_bevel: the inner bevel width.
3641 %
3642 %    o outer_bevel: the outer bevel width.
3643 %
3644 %    o compose: the composite operator.
3645 %
3646 */
MagickFrameImage(MagickWand * wand,const PixelWand * matte_color,const size_t width,const size_t height,const ssize_t inner_bevel,const ssize_t outer_bevel,const CompositeOperator compose)3647 WandExport MagickBooleanType MagickFrameImage(MagickWand *wand,
3648   const PixelWand *matte_color,const size_t width,const size_t height,
3649   const ssize_t inner_bevel,const ssize_t outer_bevel,
3650   const CompositeOperator compose)
3651 {
3652   Image
3653     *frame_image;
3654 
3655   FrameInfo
3656     frame_info;
3657 
3658   assert(wand != (MagickWand *) NULL);
3659   assert(wand->signature == MagickWandSignature);
3660   if (wand->debug != MagickFalse)
3661     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3662   if (wand->images == (Image *) NULL)
3663     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3664   (void) memset(&frame_info,0,sizeof(frame_info));
3665   frame_info.width=wand->images->columns+2*width;
3666   frame_info.height=wand->images->rows+2*height;
3667   frame_info.x=(ssize_t) width;
3668   frame_info.y=(ssize_t) height;
3669   frame_info.inner_bevel=inner_bevel;
3670   frame_info.outer_bevel=outer_bevel;
3671   PixelGetQuantumPacket(matte_color,&wand->images->matte_color);
3672   frame_image=FrameImage(wand->images,&frame_info,compose,wand->exception);
3673   if (frame_image == (Image *) NULL)
3674     return(MagickFalse);
3675   ReplaceImageInList(&wand->images,frame_image);
3676   return(MagickTrue);
3677 }
3678 
3679 /*
3680 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3681 %                                                                             %
3682 %                                                                             %
3683 %                                                                             %
3684 %   M a g i c k F u n c t i o n I m a g e                                     %
3685 %                                                                             %
3686 %                                                                             %
3687 %                                                                             %
3688 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3689 %
3690 %  MagickFunctionImage() applys an arithmetic, relational, or logical
3691 %  expression to an image.  Use these operators to lighten or darken an image,
3692 %  to increase or decrease contrast in an image, or to produce the "negative"
3693 %  of an image.
3694 %
3695 %  The format of the MagickFunctionImage method is:
3696 %
3697 %      MagickBooleanType MagickFunctionImage(MagickWand *wand,
3698 %        const MagickFunction function,const size_t number_arguments,
3699 %        const double *arguments)
3700 %
3701 %  A description of each parameter follows:
3702 %
3703 %    o wand: the magick wand.
3704 %
3705 %    o function: the image function.
3706 %
3707 %    o number_arguments: the number of function arguments.
3708 %
3709 %    o arguments: the function arguments.
3710 %
3711 */
MagickFunctionImage(MagickWand * wand,const MagickFunction function,const size_t number_arguments,const double * arguments)3712 WandExport MagickBooleanType MagickFunctionImage(MagickWand *wand,
3713   const MagickFunction function,const size_t number_arguments,
3714   const double *arguments)
3715 {
3716   MagickBooleanType
3717     status;
3718 
3719   assert(wand != (MagickWand *) NULL);
3720   assert(wand->signature == MagickWandSignature);
3721   if (wand->debug != MagickFalse)
3722     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3723   if (wand->images == (Image *) NULL)
3724     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3725   status=FunctionImage(wand->images,function,number_arguments,arguments,
3726     wand->exception);
3727   return(status);
3728 }
3729 
3730 /*
3731 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3732 %                                                                             %
3733 %                                                                             %
3734 %                                                                             %
3735 %   M a g i c k F x I m a g e                                                 %
3736 %                                                                             %
3737 %                                                                             %
3738 %                                                                             %
3739 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3740 %
3741 %  MagickFxImage() evaluate expression for each pixel in the image.
3742 %
3743 %  The format of the MagickFxImage method is:
3744 %
3745 %      MagickWand *MagickFxImage(MagickWand *wand,const char *expression)
3746 %
3747 %  A description of each parameter follows:
3748 %
3749 %    o wand: the magick wand.
3750 %
3751 %    o expression: the expression.
3752 %
3753 */
MagickFxImage(MagickWand * wand,const char * expression)3754 WandExport MagickWand *MagickFxImage(MagickWand *wand,const char *expression)
3755 {
3756   Image
3757     *fx_image;
3758 
3759   assert(wand != (MagickWand *) NULL);
3760   assert(wand->signature == MagickWandSignature);
3761   if (wand->debug != MagickFalse)
3762     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3763   if (wand->images == (Image *) NULL)
3764     return((MagickWand *) NULL);
3765   fx_image=FxImage(wand->images,expression,wand->exception);
3766   if (fx_image == (Image *) NULL)
3767     return((MagickWand *) NULL);
3768   return(CloneMagickWandFromImages(wand,fx_image));
3769 }
3770 
3771 /*
3772 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3773 %                                                                             %
3774 %                                                                             %
3775 %                                                                             %
3776 %   M a g i c k G a m m a I m a g e                                           %
3777 %                                                                             %
3778 %                                                                             %
3779 %                                                                             %
3780 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3781 %
3782 %  MagickGammaImage() gamma-corrects an image.  The same image viewed on
3783 %  different devices will have perceptual differences in the way the image's
3784 %  intensities are represented on the screen.  Specify individual gamma levels
3785 %  for the red, green, and blue channels, or adjust all three with the gamma
3786 %  parameter.  Values typically range from 0.8 to 2.3.
3787 %
3788 %  You can also reduce the influence of a particular channel with a gamma
3789 %  value of 0.
3790 %
3791 %  The format of the MagickGammaImage method is:
3792 %
3793 %      MagickBooleanType MagickGammaImage(MagickWand *wand,const double gamma)
3794 %
3795 %  A description of each parameter follows:
3796 %
3797 %    o wand: the magick wand.
3798 %
3799 %    o level: Define the level of gamma correction.
3800 %
3801 */
MagickGammaImage(MagickWand * wand,const double gamma)3802 WandExport MagickBooleanType MagickGammaImage(MagickWand *wand,
3803   const double gamma)
3804 {
3805   MagickBooleanType
3806     status;
3807 
3808   assert(wand != (MagickWand *) NULL);
3809   assert(wand->signature == MagickWandSignature);
3810   if (wand->debug != MagickFalse)
3811     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3812   if (wand->images == (Image *) NULL)
3813     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3814   status=GammaImage(wand->images,gamma,wand->exception);
3815   return(status);
3816 }
3817 
3818 /*
3819 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3820 %                                                                             %
3821 %                                                                             %
3822 %                                                                             %
3823 %   M a g i c k G a u s s i a n B l u r I m a g e                             %
3824 %                                                                             %
3825 %                                                                             %
3826 %                                                                             %
3827 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3828 %
3829 %  MagickGaussianBlurImage() blurs an image.  We convolve the image with a
3830 %  Gaussian operator of the given radius and standard deviation (sigma).
3831 %  For reasonable results, the radius should be larger than sigma.  Use a
3832 %  radius of 0 and MagickGaussianBlurImage() selects a suitable radius for you.
3833 %
3834 %  The format of the MagickGaussianBlurImage method is:
3835 %
3836 %      MagickBooleanType MagickGaussianBlurImage(MagickWand *wand,
3837 %        const double radius,const double sigma)
3838 %
3839 %  A description of each parameter follows:
3840 %
3841 %    o wand: the magick wand.
3842 %
3843 %    o radius: the radius of the Gaussian, in pixels, not counting the center
3844 %      pixel.
3845 %
3846 %    o sigma: the standard deviation of the Gaussian, in pixels.
3847 %
3848 */
MagickGaussianBlurImage(MagickWand * wand,const double radius,const double sigma)3849 WandExport MagickBooleanType MagickGaussianBlurImage(MagickWand *wand,
3850   const double radius,const double sigma)
3851 {
3852   Image
3853     *blur_image;
3854 
3855   assert(wand != (MagickWand *) NULL);
3856   assert(wand->signature == MagickWandSignature);
3857   if (wand->debug != MagickFalse)
3858     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3859   if (wand->images == (Image *) NULL)
3860     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3861   blur_image=GaussianBlurImage(wand->images,radius,sigma,wand->exception);
3862   if (blur_image == (Image *) NULL)
3863     return(MagickFalse);
3864   ReplaceImageInList(&wand->images,blur_image);
3865   return(MagickTrue);
3866 }
3867 
3868 /*
3869 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3870 %                                                                             %
3871 %                                                                             %
3872 %                                                                             %
3873 %   M a g i c k G e t I m a g e                                               %
3874 %                                                                             %
3875 %                                                                             %
3876 %                                                                             %
3877 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3878 %
3879 %  MagickGetImage() gets the image at the current image index.
3880 %
3881 %  The format of the MagickGetImage method is:
3882 %
3883 %      MagickWand *MagickGetImage(MagickWand *wand)
3884 %
3885 %  A description of each parameter follows:
3886 %
3887 %    o wand: the magick wand.
3888 %
3889 */
MagickGetImage(MagickWand * wand)3890 WandExport MagickWand *MagickGetImage(MagickWand *wand)
3891 {
3892   Image
3893     *image;
3894 
3895   assert(wand != (MagickWand *) NULL);
3896   assert(wand->signature == MagickWandSignature);
3897   if (wand->debug != MagickFalse)
3898     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3899   if (wand->images == (Image *) NULL)
3900     {
3901       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
3902         "ContainsNoImages","`%s'",wand->name);
3903       return((MagickWand *) NULL);
3904     }
3905   image=CloneImage(wand->images,0,0,MagickTrue,wand->exception);
3906   if (image == (Image *) NULL)
3907     return((MagickWand *) NULL);
3908   return(CloneMagickWandFromImages(wand,image));
3909 }
3910 
3911 /*
3912 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3913 %                                                                             %
3914 %                                                                             %
3915 %                                                                             %
3916 %   M a g i c k G e t I m a g e A l p h a C h a n n e l                       %
3917 %                                                                             %
3918 %                                                                             %
3919 %                                                                             %
3920 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3921 %
3922 %  MagickGetImageAlphaChannel() returns MagickFalse if the image alpha channel
3923 %  is not activated.  That is, the image is RGB rather than RGBA or CMYK rather
3924 %  than CMYKA.
3925 %
3926 %  The format of the MagickGetImageAlphaChannel method is:
3927 %
3928 %      MagickBooleanType MagickGetImageAlphaChannel(MagickWand *wand)
3929 %
3930 %  A description of each parameter follows:
3931 %
3932 %    o wand: the magick wand.
3933 %
3934 */
MagickGetImageAlphaChannel(MagickWand * wand)3935 WandExport MagickBooleanType MagickGetImageAlphaChannel(MagickWand *wand)
3936 {
3937   assert(wand != (MagickWand *) NULL);
3938   assert(wand->signature == MagickWandSignature);
3939   if (wand->debug != MagickFalse)
3940     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3941   if (wand->images == (Image *) NULL)
3942     ThrowWandException(WandError,"ContainsNoImages",wand->name);
3943   return(GetImageAlphaChannel(wand->images));
3944 }
3945 
3946 /*
3947 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3948 %                                                                             %
3949 %                                                                             %
3950 %                                                                             %
3951 %   M a g i c k G e t I m a g e C l i p M a s k                               %
3952 %                                                                             %
3953 %                                                                             %
3954 %                                                                             %
3955 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3956 %
3957 %  MagickGetImageMask() gets the image clip mask at the current image index.
3958 %
3959 %  The format of the MagickGetImageMask method is:
3960 %
3961 %      MagickWand *MagickGetImageMask(MagickWand *wand)
3962 %
3963 %  A description of each parameter follows:
3964 %
3965 %    o wand: the magick wand.
3966 %
3967 %    o type: type of mask, ReadPixelMask or WritePixelMask.
3968 %
3969 */
MagickGetImageMask(MagickWand * wand,const PixelMask type)3970 WandExport MagickWand *MagickGetImageMask(MagickWand *wand,
3971   const PixelMask type)
3972 {
3973   Image
3974     *image;
3975 
3976   assert(wand != (MagickWand *) NULL);
3977   assert(wand->signature == MagickWandSignature);
3978   if (wand->debug != MagickFalse)
3979     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3980   if (wand->images == (Image *) NULL)
3981     {
3982       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
3983         "ContainsNoImages","`%s'",wand->name);
3984       return((MagickWand *) NULL);
3985     }
3986   image=GetImageMask(wand->images,type,wand->exception);
3987   if (image == (Image *) NULL)
3988     return((MagickWand *) NULL);
3989   return(CloneMagickWandFromImages(wand,image));
3990 }
3991 
3992 /*
3993 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3994 %                                                                             %
3995 %                                                                             %
3996 %                                                                             %
3997 %   M a g i c k G e t I m a g e B a c k g r o u n d C o l o r                 %
3998 %                                                                             %
3999 %                                                                             %
4000 %                                                                             %
4001 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4002 %
4003 %  MagickGetImageBackgroundColor() returns the image background color.
4004 %
4005 %  The format of the MagickGetImageBackgroundColor method is:
4006 %
4007 %      MagickBooleanType MagickGetImageBackgroundColor(MagickWand *wand,
4008 %        PixelWand *background_color)
4009 %
4010 %  A description of each parameter follows:
4011 %
4012 %    o wand: the magick wand.
4013 %
4014 %    o background_color: Return the background color.
4015 %
4016 */
MagickGetImageBackgroundColor(MagickWand * wand,PixelWand * background_color)4017 WandExport MagickBooleanType MagickGetImageBackgroundColor(MagickWand *wand,
4018   PixelWand *background_color)
4019 {
4020   assert(wand != (MagickWand *) NULL);
4021   assert(wand->signature == MagickWandSignature);
4022   if (wand->debug != MagickFalse)
4023     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4024   if (wand->images == (Image *) NULL)
4025     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4026   PixelSetPixelColor(background_color,&wand->images->background_color);
4027   return(MagickTrue);
4028 }
4029 
4030 /*
4031 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4032 %                                                                             %
4033 %                                                                             %
4034 %                                                                             %
4035 %   M a g i c k G e t I m a g e B l o b                                       %
4036 %                                                                             %
4037 %                                                                             %
4038 %                                                                             %
4039 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4040 %
4041 %  MagickGetImageBlob() implements direct to memory image formats.  It returns
4042 %  the image as a blob (a formatted "file" in memory) and its length, starting
4043 %  from the current position in the image sequence.  Use MagickSetImageFormat()
4044 %  to set the format to write to the blob (GIF, JPEG,  PNG, etc.).
4045 %
4046 %  Utilize MagickResetIterator() to ensure the write is from the beginning of
4047 %  the image sequence.
4048 %
4049 %  Use MagickRelinquishMemory() to free the blob when you are done with it.
4050 %
4051 %  The format of the MagickGetImageBlob method is:
4052 %
4053 %      unsigned char *MagickGetImageBlob(MagickWand *wand,size_t *length)
4054 %
4055 %  A description of each parameter follows:
4056 %
4057 %    o wand: the magick wand.
4058 %
4059 %    o length: the length of the blob.
4060 %
4061 */
MagickGetImageBlob(MagickWand * wand,size_t * length)4062 WandExport unsigned char *MagickGetImageBlob(MagickWand *wand,size_t *length)
4063 {
4064   unsigned char
4065     *blob;
4066 
4067   assert(wand != (MagickWand *) NULL);
4068   assert(wand->signature == MagickWandSignature);
4069   if (wand->debug != MagickFalse)
4070     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4071   if (wand->images == (Image *) NULL)
4072     {
4073       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4074         "ContainsNoImages","`%s'",wand->name);
4075       return((unsigned char *) NULL);
4076     }
4077   blob=(unsigned char *) ImageToBlob(wand->image_info,wand->images,length,
4078     wand->exception);
4079   return(blob);
4080 }
4081 
4082 /*
4083 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4084 %                                                                             %
4085 %                                                                             %
4086 %                                                                             %
4087 %   M a g i c k G e t I m a g e s B l o b                                     %
4088 %                                                                             %
4089 %                                                                             %
4090 %                                                                             %
4091 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4092 %
4093 %  MagickGetImagesBlob() implements direct to memory image formats.  It
4094 %  returns the image sequence as a blob and its length.  The format of the image
4095 %  determines the format of the returned blob (GIF, JPEG,  PNG, etc.).  To
4096 %  return a different image format, use MagickSetImageFormat().
4097 %
4098 %  Note, some image formats do not permit multiple images to the same image
4099 %  stream (e.g. JPEG).  in this instance, just the first image of the
4100 %  sequence is returned as a blob.
4101 %
4102 %  The format of the MagickGetImagesBlob method is:
4103 %
4104 %      unsigned char *MagickGetImagesBlob(MagickWand *wand,size_t *length)
4105 %
4106 %  A description of each parameter follows:
4107 %
4108 %    o wand: the magick wand.
4109 %
4110 %    o length: the length of the blob.
4111 %
4112 */
MagickGetImagesBlob(MagickWand * wand,size_t * length)4113 WandExport unsigned char *MagickGetImagesBlob(MagickWand *wand,size_t *length)
4114 {
4115   unsigned char
4116     *blob;
4117 
4118   assert(wand != (MagickWand *) NULL);
4119   assert(wand->signature == MagickWandSignature);
4120   if (wand->debug != MagickFalse)
4121     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4122   if (wand->images == (Image *) NULL)
4123     {
4124       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4125         "ContainsNoImages","`%s'",wand->name);
4126       return((unsigned char *) NULL);
4127     }
4128   blob=(unsigned char *) ImagesToBlob(wand->image_info,GetFirstImageInList(
4129     wand->images),length,wand->exception);
4130   return(blob);
4131 }
4132 
4133 /*
4134 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4135 %                                                                             %
4136 %                                                                             %
4137 %                                                                             %
4138 %   M a g i c k G e t I m a g e B l u e P r i m a r y                         %
4139 %                                                                             %
4140 %                                                                             %
4141 %                                                                             %
4142 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4143 %
4144 %  MagickGetImageBluePrimary() returns the chromaticy blue primary point for the
4145 %  image.
4146 %
4147 %  The format of the MagickGetImageBluePrimary method is:
4148 %
4149 %      MagickBooleanType MagickGetImageBluePrimary(MagickWand *wand,double *x,
4150 %        double *y,double *z)
4151 %
4152 %  A description of each parameter follows:
4153 %
4154 %    o wand: the magick wand.
4155 %
4156 %    o x: the chromaticity blue primary x-point.
4157 %
4158 %    o y: the chromaticity blue primary y-point.
4159 %
4160 %    o z: the chromaticity blue primary z-point.
4161 %
4162 */
MagickGetImageBluePrimary(MagickWand * wand,double * x,double * y,double * z)4163 WandExport MagickBooleanType MagickGetImageBluePrimary(MagickWand *wand,
4164   double *x,double *y,double *z)
4165 {
4166   assert(wand != (MagickWand *) NULL);
4167   assert(wand->signature == MagickWandSignature);
4168   if (wand->debug != MagickFalse)
4169     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4170   if (wand->images == (Image *) NULL)
4171     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4172   *x=wand->images->chromaticity.blue_primary.x;
4173   *y=wand->images->chromaticity.blue_primary.y;
4174   *z=wand->images->chromaticity.blue_primary.z;
4175   return(MagickTrue);
4176 }
4177 
4178 /*
4179 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4180 %                                                                             %
4181 %                                                                             %
4182 %                                                                             %
4183 %   M a g i c k G e t I m a g e B o r d e r C o l o r                         %
4184 %                                                                             %
4185 %                                                                             %
4186 %                                                                             %
4187 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4188 %
4189 %  MagickGetImageBorderColor() returns the image border color.
4190 %
4191 %  The format of the MagickGetImageBorderColor method is:
4192 %
4193 %      MagickBooleanType MagickGetImageBorderColor(MagickWand *wand,
4194 %        PixelWand *border_color)
4195 %
4196 %  A description of each parameter follows:
4197 %
4198 %    o wand: the magick wand.
4199 %
4200 %    o border_color: Return the border color.
4201 %
4202 */
MagickGetImageBorderColor(MagickWand * wand,PixelWand * border_color)4203 WandExport MagickBooleanType MagickGetImageBorderColor(MagickWand *wand,
4204   PixelWand *border_color)
4205 {
4206   assert(wand != (MagickWand *) NULL);
4207   assert(wand->signature == MagickWandSignature);
4208   if (wand->debug != MagickFalse)
4209     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4210   if (wand->images == (Image *) NULL)
4211     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4212   PixelSetPixelColor(border_color,&wand->images->border_color);
4213   return(MagickTrue);
4214 }
4215 
4216 /*
4217 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4218 %                                                                             %
4219 %                                                                             %
4220 %                                                                             %
4221 %   M a g i c k G e t I m a g e F e a t u r e s                               %
4222 %                                                                             %
4223 %                                                                             %
4224 %                                                                             %
4225 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4226 %
4227 %  MagickGetImageFeatures() returns features for each channel in the
4228 %  image in each of four directions (horizontal, vertical, left and right
4229 %  diagonals) for the specified distance.  The features include the angular
4230 %  second moment, contrast, correlation, sum of squares: variance, inverse
4231 %  difference moment, sum average, sum varience, sum entropy, entropy,
4232 %  difference variance, difference entropy, information measures of
4233 %  correlation 1, information measures of correlation 2, and maximum
4234 %  correlation coefficient.  You can access the red channel contrast, for
4235 %  example, like this:
4236 %
4237 %      channel_features=MagickGetImageFeatures(wand,1);
4238 %      contrast=channel_features[RedPixelChannel].contrast[0];
4239 %
4240 %  Use MagickRelinquishMemory() to free the statistics buffer.
4241 %
4242 %  The format of the MagickGetImageFeatures method is:
4243 %
4244 %      ChannelFeatures *MagickGetImageFeatures(MagickWand *wand,
4245 %        const size_t distance)
4246 %
4247 %  A description of each parameter follows:
4248 %
4249 %    o wand: the magick wand.
4250 %
4251 %    o distance: the distance.
4252 %
4253 */
MagickGetImageFeatures(MagickWand * wand,const size_t distance)4254 WandExport ChannelFeatures *MagickGetImageFeatures(MagickWand *wand,
4255   const size_t distance)
4256 {
4257   assert(wand != (MagickWand *) NULL);
4258   assert(wand->signature == MagickWandSignature);
4259   if (wand->debug != MagickFalse)
4260     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4261   if (wand->images == (Image *) NULL)
4262     {
4263       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4264         "ContainsNoImages","`%s'",wand->name);
4265       return((ChannelFeatures *) NULL);
4266     }
4267   return(GetImageFeatures(wand->images,distance,wand->exception));
4268 }
4269 
4270 /*
4271 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4272 %                                                                             %
4273 %                                                                             %
4274 %                                                                             %
4275 %   M a g i c k G e t I m a g e K u r t o s i s                               %
4276 %                                                                             %
4277 %                                                                             %
4278 %                                                                             %
4279 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4280 %
4281 %  MagickGetImageKurtosis() gets the kurtosis and skewness of one or
4282 %  more image channels.
4283 %
4284 %  The format of the MagickGetImageKurtosis method is:
4285 %
4286 %      MagickBooleanType MagickGetImageKurtosis(MagickWand *wand,
4287 %        double *kurtosis,double *skewness)
4288 %
4289 %  A description of each parameter follows:
4290 %
4291 %    o wand: the magick wand.
4292 %
4293 %    o kurtosis:  The kurtosis for the specified channel(s).
4294 %
4295 %    o skewness:  The skewness for the specified channel(s).
4296 %
4297 */
MagickGetImageKurtosis(MagickWand * wand,double * kurtosis,double * skewness)4298 WandExport MagickBooleanType MagickGetImageKurtosis(MagickWand *wand,
4299   double *kurtosis,double *skewness)
4300 {
4301   MagickBooleanType
4302     status;
4303 
4304   assert(wand != (MagickWand *) NULL);
4305   assert(wand->signature == MagickWandSignature);
4306   if (wand->debug != MagickFalse)
4307     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4308   if (wand->images == (Image *) NULL)
4309     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4310   status=GetImageKurtosis(wand->images,kurtosis,skewness,wand->exception);
4311   return(status);
4312 }
4313 
4314 /*
4315 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4316 %                                                                             %
4317 %                                                                             %
4318 %                                                                             %
4319 %   M a g i c k G e t I m a g e M e a n                                       %
4320 %                                                                             %
4321 %                                                                             %
4322 %                                                                             %
4323 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4324 %
4325 %  MagickGetImageMean() gets the mean and standard deviation of one or more
4326 %  image channels.
4327 %
4328 %  The format of the MagickGetImageMean method is:
4329 %
4330 %      MagickBooleanType MagickGetImageMean(MagickWand *wand,double *mean,
4331 %        double *standard_deviation)
4332 %
4333 %  A description of each parameter follows:
4334 %
4335 %    o wand: the magick wand.
4336 %
4337 %    o channel: the image channel(s).
4338 %
4339 %    o mean:  The mean pixel value for the specified channel(s).
4340 %
4341 %    o standard_deviation:  The standard deviation for the specified channel(s).
4342 %
4343 */
MagickGetImageMean(MagickWand * wand,double * mean,double * standard_deviation)4344 WandExport MagickBooleanType MagickGetImageMean(MagickWand *wand,double *mean,
4345   double *standard_deviation)
4346 {
4347   MagickBooleanType
4348     status;
4349 
4350   assert(wand != (MagickWand *) NULL);
4351   assert(wand->signature == MagickWandSignature);
4352   if (wand->debug != MagickFalse)
4353     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4354   if (wand->images == (Image *) NULL)
4355     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4356   status=GetImageMean(wand->images,mean,standard_deviation,wand->exception);
4357   return(status);
4358 }
4359 
4360 /*
4361 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4362 %                                                                             %
4363 %                                                                             %
4364 %                                                                             %
4365 %   M a g i c k G e t I m a g e R a n g e                                     %
4366 %                                                                             %
4367 %                                                                             %
4368 %                                                                             %
4369 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4370 %
4371 %  MagickGetImageRange() gets the range for one or more image channels.
4372 %
4373 %  The format of the MagickGetImageRange method is:
4374 %
4375 %      MagickBooleanType MagickGetImageRange(MagickWand *wand,double *minima,
4376 %        double *maxima)
4377 %
4378 %  A description of each parameter follows:
4379 %
4380 %    o wand: the magick wand.
4381 %
4382 %    o minima:  The minimum pixel value for the specified channel(s).
4383 %
4384 %    o maxima:  The maximum pixel value for the specified channel(s).
4385 %
4386 */
MagickGetImageRange(MagickWand * wand,double * minima,double * maxima)4387 WandExport MagickBooleanType MagickGetImageRange(MagickWand *wand,
4388   double *minima,double *maxima)
4389 {
4390   MagickBooleanType
4391     status;
4392 
4393   assert(wand != (MagickWand *) NULL);
4394   assert(wand->signature == MagickWandSignature);
4395   if (wand->debug != MagickFalse)
4396     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4397   if (wand->images == (Image *) NULL)
4398     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4399   status=GetImageRange(wand->images,minima,maxima,wand->exception);
4400   return(status);
4401 }
4402 
4403 /*
4404 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4405 %                                                                             %
4406 %                                                                             %
4407 %                                                                             %
4408 %   M a g i c k G e t I m a g e S t a t i s t i c s                           %
4409 %                                                                             %
4410 %                                                                             %
4411 %                                                                             %
4412 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4413 %
4414 %  MagickGetImageStatistics() returns statistics for each channel in the
4415 %  image.  The statistics include the channel depth, its minima and
4416 %  maxima, the mean, the standard deviation, the kurtosis and the skewness.
4417 %  You can access the red channel mean, for example, like this:
4418 %
4419 %      channel_statistics=MagickGetImageStatistics(wand);
4420 %      red_mean=channel_statistics[RedPixelChannel].mean;
4421 %
4422 %  Use MagickRelinquishMemory() to free the statistics buffer.
4423 %
4424 %  The format of the MagickGetImageStatistics method is:
4425 %
4426 %      ChannelStatistics *MagickGetImageStatistics(MagickWand *wand)
4427 %
4428 %  A description of each parameter follows:
4429 %
4430 %    o wand: the magick wand.
4431 %
4432 */
MagickGetImageStatistics(MagickWand * wand)4433 WandExport ChannelStatistics *MagickGetImageStatistics(MagickWand *wand)
4434 {
4435   assert(wand != (MagickWand *) NULL);
4436   assert(wand->signature == MagickWandSignature);
4437   if (wand->debug != MagickFalse)
4438     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4439   if (wand->images == (Image *) NULL)
4440     {
4441       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4442         "ContainsNoImages","`%s'",wand->name);
4443       return((ChannelStatistics *) NULL);
4444     }
4445   return(GetImageStatistics(wand->images,wand->exception));
4446 }
4447 
4448 /*
4449 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4450 %                                                                             %
4451 %                                                                             %
4452 %                                                                             %
4453 %   M a g i c k G e t I m a g e C o l o r m a p C o l o r                     %
4454 %                                                                             %
4455 %                                                                             %
4456 %                                                                             %
4457 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4458 %
4459 %  MagickGetImageColormapColor() returns the color of the specified colormap
4460 %  index.
4461 %
4462 %  The format of the MagickGetImageColormapColor method is:
4463 %
4464 %      MagickBooleanType MagickGetImageColormapColor(MagickWand *wand,
4465 %        const size_t index,PixelWand *color)
4466 %
4467 %  A description of each parameter follows:
4468 %
4469 %    o wand: the magick wand.
4470 %
4471 %    o index: the offset into the image colormap.
4472 %
4473 %    o color: Return the colormap color in this wand.
4474 %
4475 */
MagickGetImageColormapColor(MagickWand * wand,const size_t index,PixelWand * color)4476 WandExport MagickBooleanType MagickGetImageColormapColor(MagickWand *wand,
4477   const size_t index,PixelWand *color)
4478 {
4479   assert(wand != (MagickWand *) NULL);
4480   assert(wand->signature == MagickWandSignature);
4481   if (wand->debug != MagickFalse)
4482     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4483   if (wand->images == (Image *) NULL)
4484     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4485   if ((wand->images->colormap == (PixelInfo *) NULL) ||
4486       (index >= wand->images->colors))
4487     {
4488       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4489         "InvalidColormapIndex","`%s'",wand->name);
4490       return(MagickFalse);
4491     }
4492   PixelSetPixelColor(color,wand->images->colormap+index);
4493   return(MagickTrue);
4494 }
4495 
4496 /*
4497 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4498 %                                                                             %
4499 %                                                                             %
4500 %                                                                             %
4501 %   M a g i c k G e t I m a g e C o l o r s                                   %
4502 %                                                                             %
4503 %                                                                             %
4504 %                                                                             %
4505 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4506 %
4507 %  MagickGetImageColors() gets the number of unique colors in the image.
4508 %
4509 %  The format of the MagickGetImageColors method is:
4510 %
4511 %      size_t MagickGetImageColors(MagickWand *wand)
4512 %
4513 %  A description of each parameter follows:
4514 %
4515 %    o wand: the magick wand.
4516 %
4517 */
MagickGetImageColors(MagickWand * wand)4518 WandExport size_t MagickGetImageColors(MagickWand *wand)
4519 {
4520   assert(wand != (MagickWand *) NULL);
4521   assert(wand->signature == MagickWandSignature);
4522   if (wand->debug != MagickFalse)
4523     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4524   if (wand->images == (Image *) NULL)
4525     {
4526       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4527         "ContainsNoImages","`%s'",wand->name);
4528       return(0);
4529     }
4530   return(GetNumberColors(wand->images,(FILE *) NULL,wand->exception));
4531 }
4532 
4533 /*
4534 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4535 %                                                                             %
4536 %                                                                             %
4537 %                                                                             %
4538 %   M a g i c k G e t I m a g e C o l o r s p a c e                           %
4539 %                                                                             %
4540 %                                                                             %
4541 %                                                                             %
4542 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4543 %
4544 %  MagickGetImageColorspace() gets the image colorspace.
4545 %
4546 %  The format of the MagickGetImageColorspace method is:
4547 %
4548 %      ColorspaceType MagickGetImageColorspace(MagickWand *wand)
4549 %
4550 %  A description of each parameter follows:
4551 %
4552 %    o wand: the magick wand.
4553 %
4554 */
MagickGetImageColorspace(MagickWand * wand)4555 WandExport ColorspaceType MagickGetImageColorspace(MagickWand *wand)
4556 {
4557   assert(wand != (MagickWand *) NULL);
4558   assert(wand->signature == MagickWandSignature);
4559   if (wand->debug != MagickFalse)
4560     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4561   if (wand->images == (Image *) NULL)
4562     {
4563       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4564         "ContainsNoImages","`%s'",wand->name);
4565       return(UndefinedColorspace);
4566     }
4567   return(wand->images->colorspace);
4568 }
4569 
4570 /*
4571 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4572 %                                                                             %
4573 %                                                                             %
4574 %                                                                             %
4575 %   M a g i c k G e t I m a g e C o m p o s e                                 %
4576 %                                                                             %
4577 %                                                                             %
4578 %                                                                             %
4579 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4580 %
4581 %  MagickGetImageCompose() returns the composite operator associated with the
4582 %  image.
4583 %
4584 %  The format of the MagickGetImageCompose method is:
4585 %
4586 %      CompositeOperator MagickGetImageCompose(MagickWand *wand)
4587 %
4588 %  A description of each parameter follows:
4589 %
4590 %    o wand: the magick wand.
4591 %
4592 */
MagickGetImageCompose(MagickWand * wand)4593 WandExport CompositeOperator MagickGetImageCompose(MagickWand *wand)
4594 {
4595   assert(wand != (MagickWand *) NULL);
4596   assert(wand->signature == MagickWandSignature);
4597   if (wand->debug != MagickFalse)
4598     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4599   if (wand->images == (Image *) NULL)
4600     {
4601       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4602         "ContainsNoImages","`%s'",wand->name);
4603       return(UndefinedCompositeOp);
4604     }
4605   return(wand->images->compose);
4606 }
4607 
4608 /*
4609 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4610 %                                                                             %
4611 %                                                                             %
4612 %                                                                             %
4613 %   M a g i c k G e t I m a g e C o m p r e s s i o n                         %
4614 %                                                                             %
4615 %                                                                             %
4616 %                                                                             %
4617 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4618 %
4619 %  MagickGetImageCompression() gets the image compression.
4620 %
4621 %  The format of the MagickGetImageCompression method is:
4622 %
4623 %      CompressionType MagickGetImageCompression(MagickWand *wand)
4624 %
4625 %  A description of each parameter follows:
4626 %
4627 %    o wand: the magick wand.
4628 %
4629 */
MagickGetImageCompression(MagickWand * wand)4630 WandExport CompressionType MagickGetImageCompression(MagickWand *wand)
4631 {
4632   assert(wand != (MagickWand *) NULL);
4633   assert(wand->signature == MagickWandSignature);
4634   if (wand->debug != MagickFalse)
4635     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4636   if (wand->images == (Image *) NULL)
4637     {
4638       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4639         "ContainsNoImages","`%s'",wand->name);
4640       return(UndefinedCompression);
4641     }
4642   return(wand->images->compression);
4643 }
4644 
4645 /*
4646 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4647 %                                                                             %
4648 %                                                                             %
4649 %                                                                             %
4650 %   M a g i c k G e t I m a g e C o m p r e s s i o n Q u a l i t y           %
4651 %                                                                             %
4652 %                                                                             %
4653 %                                                                             %
4654 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4655 %
4656 %  MagickGetImageCompressionQuality() gets the image compression quality.
4657 %
4658 %  The format of the MagickGetImageCompressionQuality method is:
4659 %
4660 %      size_t MagickGetImageCompressionQuality(MagickWand *wand)
4661 %
4662 %  A description of each parameter follows:
4663 %
4664 %    o wand: the magick wand.
4665 %
4666 */
MagickGetImageCompressionQuality(MagickWand * wand)4667 WandExport size_t MagickGetImageCompressionQuality(MagickWand *wand)
4668 {
4669   assert(wand != (MagickWand *) NULL);
4670   assert(wand->signature == MagickWandSignature);
4671   if (wand->debug != MagickFalse)
4672     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4673   if (wand->images == (Image *) NULL)
4674     {
4675       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4676         "ContainsNoImages","`%s'",wand->name);
4677       return(0UL);
4678     }
4679   return(wand->images->quality);
4680 }
4681 
4682 /*
4683 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4684 %                                                                             %
4685 %                                                                             %
4686 %                                                                             %
4687 %   M a g i c k G e t I m a g e D e l a y                                     %
4688 %                                                                             %
4689 %                                                                             %
4690 %                                                                             %
4691 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4692 %
4693 %  MagickGetImageDelay() gets the image delay.
4694 %
4695 %  The format of the MagickGetImageDelay method is:
4696 %
4697 %      size_t MagickGetImageDelay(MagickWand *wand)
4698 %
4699 %  A description of each parameter follows:
4700 %
4701 %    o wand: the magick wand.
4702 %
4703 */
MagickGetImageDelay(MagickWand * wand)4704 WandExport size_t MagickGetImageDelay(MagickWand *wand)
4705 {
4706   assert(wand != (MagickWand *) NULL);
4707   assert(wand->signature == MagickWandSignature);
4708   if (wand->debug != MagickFalse)
4709     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4710   if (wand->images == (Image *) NULL)
4711     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4712   return(wand->images->delay);
4713 }
4714 
4715 /*
4716 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4717 %                                                                             %
4718 %                                                                             %
4719 %                                                                             %
4720 %   M a g i c k G e t I m a g e D e p t h                                     %
4721 %                                                                             %
4722 %                                                                             %
4723 %                                                                             %
4724 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4725 %
4726 %  MagickGetImageDepth() gets the image depth.
4727 %
4728 %  The format of the MagickGetImageDepth method is:
4729 %
4730 %      size_t MagickGetImageDepth(MagickWand *wand)
4731 %
4732 %  A description of each parameter follows:
4733 %
4734 %    o wand: the magick wand.
4735 %
4736 */
MagickGetImageDepth(MagickWand * wand)4737 WandExport size_t MagickGetImageDepth(MagickWand *wand)
4738 {
4739   assert(wand != (MagickWand *) NULL);
4740   assert(wand->signature == MagickWandSignature);
4741   if (wand->debug != MagickFalse)
4742     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4743   if (wand->images == (Image *) NULL)
4744     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4745   return(wand->images->depth);
4746 }
4747 
4748 /*
4749 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4750 %                                                                             %
4751 %                                                                             %
4752 %                                                                             %
4753 %   M a g i c k G e t I m a g e D i s p o s e                                 %
4754 %                                                                             %
4755 %                                                                             %
4756 %                                                                             %
4757 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4758 %
4759 %  MagickGetImageDispose() gets the image disposal method.
4760 %
4761 %  The format of the MagickGetImageDispose method is:
4762 %
4763 %      DisposeType MagickGetImageDispose(MagickWand *wand)
4764 %
4765 %  A description of each parameter follows:
4766 %
4767 %    o wand: the magick wand.
4768 %
4769 */
MagickGetImageDispose(MagickWand * wand)4770 WandExport DisposeType MagickGetImageDispose(MagickWand *wand)
4771 {
4772   assert(wand != (MagickWand *) NULL);
4773   assert(wand->signature == MagickWandSignature);
4774   if (wand->debug != MagickFalse)
4775     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4776   if (wand->images == (Image *) NULL)
4777     {
4778       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4779         "ContainsNoImages","`%s'",wand->name);
4780       return(UndefinedDispose);
4781     }
4782   return((DisposeType) wand->images->dispose);
4783 }
4784 
4785 /*
4786 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4787 %                                                                             %
4788 %                                                                             %
4789 %                                                                             %
4790 %   M a g i c k G e t I m a g e D i s t o r t i o n                           %
4791 %                                                                             %
4792 %                                                                             %
4793 %                                                                             %
4794 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4795 %
4796 %  MagickGetImageDistortion() compares an image to a reconstructed image and
4797 %  returns the specified distortion metric.
4798 %
4799 %  The format of the MagickGetImageDistortion method is:
4800 %
4801 %      MagickBooleanType MagickGetImageDistortion(MagickWand *wand,
4802 %        const MagickWand *reference,const MetricType metric,
4803 %        double *distortion)
4804 %
4805 %  A description of each parameter follows:
4806 %
4807 %    o wand: the magick wand.
4808 %
4809 %    o reference: the reference wand.
4810 %
4811 %    o metric: the metric.
4812 %
4813 %    o distortion: the computed distortion between the images.
4814 %
4815 */
MagickGetImageDistortion(MagickWand * wand,const MagickWand * reference,const MetricType metric,double * distortion)4816 WandExport MagickBooleanType MagickGetImageDistortion(MagickWand *wand,
4817   const MagickWand *reference,const MetricType metric,double *distortion)
4818 {
4819   MagickBooleanType
4820     status;
4821 
4822   assert(wand != (MagickWand *) NULL);
4823   assert(wand->signature == MagickWandSignature);
4824   if (wand->debug != MagickFalse)
4825     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4826   if ((wand->images == (Image *) NULL) || (reference->images == (Image *) NULL))
4827     ThrowWandException(WandError,"ContainsNoImages",wand->name);
4828   status=GetImageDistortion(wand->images,reference->images,metric,distortion,
4829     wand->exception);
4830   return(status);
4831 }
4832 
4833 /*
4834 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4835 %                                                                             %
4836 %                                                                             %
4837 %                                                                             %
4838 %   M a g i c k G e t I m a g e D i s t o r t i o n s                         %
4839 %                                                                             %
4840 %                                                                             %
4841 %                                                                             %
4842 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4843 %
4844 %  MagickGetImageDistortions() compares one or more pixel channels of an
4845 %  image to a reconstructed image and returns the specified distortion metrics.
4846 %
4847 %  Use MagickRelinquishMemory() to free the metrics when you are done with them.
4848 %
4849 %  The format of the MagickGetImageDistortion method is:
4850 %
4851 %      double *MagickGetImageDistortion(MagickWand *wand,
4852 %        const MagickWand *reference,const MetricType metric)
4853 %
4854 %  A description of each parameter follows:
4855 %
4856 %    o wand: the magick wand.
4857 %
4858 %    o reference: the reference wand.
4859 %
4860 %    o metric: the metric.
4861 %
4862 */
MagickGetImageDistortions(MagickWand * wand,const MagickWand * reference,const MetricType metric)4863 WandExport double *MagickGetImageDistortions(MagickWand *wand,
4864   const MagickWand *reference,const MetricType metric)
4865 {
4866   double
4867     *channel_distortion;
4868 
4869   assert(wand != (MagickWand *) NULL);
4870   assert(wand->signature == MagickWandSignature);
4871   if (wand->debug != MagickFalse)
4872     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4873   assert(reference != (MagickWand *) NULL);
4874   assert(reference->signature == MagickWandSignature);
4875   if ((wand->images == (Image *) NULL) || (reference->images == (Image *) NULL))
4876     {
4877       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4878         "ContainsNoImages","`%s'",wand->name);
4879       return((double *) NULL);
4880     }
4881   channel_distortion=GetImageDistortions(wand->images,reference->images,
4882     metric,wand->exception);
4883   return(channel_distortion);
4884 }
4885 
4886 /*
4887 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4888 %                                                                             %
4889 %                                                                             %
4890 %                                                                             %
4891 %   M a g i c k G e t I m a g e E n d i a n                                   %
4892 %                                                                             %
4893 %                                                                             %
4894 %                                                                             %
4895 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4896 %
4897 %  MagickGetImageEndian() gets the image endian.
4898 %
4899 %  The format of the MagickGetImageEndian method is:
4900 %
4901 %      EndianType MagickGetImageEndian(MagickWand *wand)
4902 %
4903 %  A description of each parameter follows:
4904 %
4905 %    o wand: the magick wand.
4906 %
4907 */
MagickGetImageEndian(MagickWand * wand)4908 WandExport EndianType MagickGetImageEndian(MagickWand *wand)
4909 {
4910   assert(wand != (MagickWand *) NULL);
4911   assert(wand->signature == MagickWandSignature);
4912   if (wand->debug != MagickFalse)
4913     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4914   if (wand->images == (Image *) NULL)
4915     {
4916       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4917         "ContainsNoImages","`%s'",wand->name);
4918       return(UndefinedEndian);
4919     }
4920   return(wand->images->endian);
4921 }
4922 
4923 /*
4924 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4925 %                                                                             %
4926 %                                                                             %
4927 %                                                                             %
4928 %   M a g i c k G e t I m a g e F i l e n a m e                               %
4929 %                                                                             %
4930 %                                                                             %
4931 %                                                                             %
4932 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4933 %
4934 %  MagickGetImageFilename() returns the filename of a particular image in a
4935 %  sequence.
4936 %
4937 %  The format of the MagickGetImageFilename method is:
4938 %
4939 %      char *MagickGetImageFilename(MagickWand *wand)
4940 %
4941 %  A description of each parameter follows:
4942 %
4943 %    o wand: the magick wand.
4944 %
4945 */
MagickGetImageFilename(MagickWand * wand)4946 WandExport char *MagickGetImageFilename(MagickWand *wand)
4947 {
4948   assert(wand != (MagickWand *) NULL);
4949   assert(wand->signature == MagickWandSignature);
4950   if (wand->debug != MagickFalse)
4951     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4952   if (wand->images == (Image *) NULL)
4953     {
4954       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4955         "ContainsNoImages","`%s'",wand->name);
4956       return((char *) NULL);
4957     }
4958   return(AcquireString(wand->images->filename));
4959 }
4960 
4961 /*
4962 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4963 %                                                                             %
4964 %                                                                             %
4965 %                                                                             %
4966 %   M a g i c k G e t I m a g e F o r m a t                                   %
4967 %                                                                             %
4968 %                                                                             %
4969 %                                                                             %
4970 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4971 %
4972 %  MagickGetImageFormat() returns the format of a particular image in a
4973 %  sequence.
4974 %
4975 %  The format of the MagickGetImageFormat method is:
4976 %
4977 %      char *MagickGetImageFormat(MagickWand *wand)
4978 %
4979 %  A description of each parameter follows:
4980 %
4981 %    o wand: the magick wand.
4982 %
4983 */
MagickGetImageFormat(MagickWand * wand)4984 WandExport char *MagickGetImageFormat(MagickWand *wand)
4985 {
4986   assert(wand != (MagickWand *) NULL);
4987   assert(wand->signature == MagickWandSignature);
4988   if (wand->debug != MagickFalse)
4989     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4990   if (wand->images == (Image *) NULL)
4991     {
4992       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
4993         "ContainsNoImages","`%s'",wand->name);
4994       return((char *) NULL);
4995     }
4996   return(AcquireString(wand->images->magick));
4997 }
4998 
4999 /*
5000 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5001 %                                                                             %
5002 %                                                                             %
5003 %                                                                             %
5004 %   M a g i c k G e t I m a g e F u z z                                       %
5005 %                                                                             %
5006 %                                                                             %
5007 %                                                                             %
5008 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5009 %
5010 %  MagickGetImageFuzz() gets the image fuzz.
5011 %
5012 %  The format of the MagickGetImageFuzz method is:
5013 %
5014 %      double MagickGetImageFuzz(MagickWand *wand)
5015 %
5016 %  A description of each parameter follows:
5017 %
5018 %    o wand: the magick wand.
5019 %
5020 */
MagickGetImageFuzz(MagickWand * wand)5021 WandExport double MagickGetImageFuzz(MagickWand *wand)
5022 {
5023   assert(wand != (MagickWand *) NULL);
5024   assert(wand->signature == MagickWandSignature);
5025   if (wand->debug != MagickFalse)
5026     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5027   if (wand->images == (Image *) NULL)
5028     {
5029       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5030         "ContainsNoImages","`%s'",wand->name);
5031       return(0.0);
5032     }
5033   return(wand->images->fuzz);
5034 }
5035 
5036 /*
5037 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5038 %                                                                             %
5039 %                                                                             %
5040 %                                                                             %
5041 %   M a g i c k G e t I m a g e G a m m a                                     %
5042 %                                                                             %
5043 %                                                                             %
5044 %                                                                             %
5045 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5046 %
5047 %  MagickGetImageGamma() gets the image gamma.
5048 %
5049 %  The format of the MagickGetImageGamma method is:
5050 %
5051 %      double MagickGetImageGamma(MagickWand *wand)
5052 %
5053 %  A description of each parameter follows:
5054 %
5055 %    o wand: the magick wand.
5056 %
5057 */
MagickGetImageGamma(MagickWand * wand)5058 WandExport double MagickGetImageGamma(MagickWand *wand)
5059 {
5060   assert(wand != (MagickWand *) NULL);
5061   assert(wand->signature == MagickWandSignature);
5062   if (wand->debug != MagickFalse)
5063     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5064   if (wand->images == (Image *) NULL)
5065     {
5066       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5067         "ContainsNoImages","`%s'",wand->name);
5068       return(0.0);
5069     }
5070   return(wand->images->gamma);
5071 }
5072 
5073 /*
5074 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5075 %                                                                             %
5076 %                                                                             %
5077 %                                                                             %
5078 %   M a g i c k G e t I m a g e G r a v i t y                                 %
5079 %                                                                             %
5080 %                                                                             %
5081 %                                                                             %
5082 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5083 %
5084 %  MagickGetImageGravity() gets the image gravity.
5085 %
5086 %  The format of the MagickGetImageGravity method is:
5087 %
5088 %      GravityType MagickGetImageGravity(MagickWand *wand)
5089 %
5090 %  A description of each parameter follows:
5091 %
5092 %    o wand: the magick wand.
5093 %
5094 */
MagickGetImageGravity(MagickWand * wand)5095 WandExport GravityType MagickGetImageGravity(MagickWand *wand)
5096 {
5097   assert(wand != (MagickWand *) NULL);
5098   assert(wand->signature == MagickWandSignature);
5099   if (wand->debug != MagickFalse)
5100     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5101   if (wand->images == (Image *) NULL)
5102     {
5103       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5104         "ContainsNoImages","`%s'",wand->name);
5105       return(UndefinedGravity);
5106     }
5107   return(wand->images->gravity);
5108 }
5109 
5110 /*
5111 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5112 %                                                                             %
5113 %                                                                             %
5114 %                                                                             %
5115 %   M a g i c k G e t I m a g e G r e e n P r i m a r y                       %
5116 %                                                                             %
5117 %                                                                             %
5118 %                                                                             %
5119 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5120 %
5121 %  MagickGetImageGreenPrimary() returns the chromaticy green primary point.
5122 %
5123 %  The format of the MagickGetImageGreenPrimary method is:
5124 %
5125 %      MagickBooleanType MagickGetImageGreenPrimary(MagickWand *wand,double *x,
5126 %        double *y,double *z)
5127 %
5128 %  A description of each parameter follows:
5129 %
5130 %    o wand: the magick wand.
5131 %
5132 %    o x: the chromaticity green primary x-point.
5133 %
5134 %    o y: the chromaticity green primary y-point.
5135 %
5136 %    o z: the chromaticity green primary z-point.
5137 %
5138 */
MagickGetImageGreenPrimary(MagickWand * wand,double * x,double * y,double * z)5139 WandExport MagickBooleanType MagickGetImageGreenPrimary(MagickWand *wand,
5140   double *x,double *y,double *z)
5141 {
5142   assert(wand != (MagickWand *) NULL);
5143   assert(wand->signature == MagickWandSignature);
5144   if (wand->debug != MagickFalse)
5145     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5146   if (wand->images == (Image *) NULL)
5147     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5148   *x=wand->images->chromaticity.green_primary.x;
5149   *y=wand->images->chromaticity.green_primary.y;
5150   *z=wand->images->chromaticity.green_primary.z;
5151   return(MagickTrue);
5152 }
5153 
5154 /*
5155 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5156 %                                                                             %
5157 %                                                                             %
5158 %                                                                             %
5159 %   M a g i c k G e t I m a g e H e i g h t                                   %
5160 %                                                                             %
5161 %                                                                             %
5162 %                                                                             %
5163 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5164 %
5165 %  MagickGetImageHeight() returns the image height.
5166 %
5167 %  The format of the MagickGetImageHeight method is:
5168 %
5169 %      size_t MagickGetImageHeight(MagickWand *wand)
5170 %
5171 %  A description of each parameter follows:
5172 %
5173 %    o wand: the magick wand.
5174 %
5175 */
MagickGetImageHeight(MagickWand * wand)5176 WandExport size_t MagickGetImageHeight(MagickWand *wand)
5177 {
5178   assert(wand != (MagickWand *) NULL);
5179   assert(wand->signature == MagickWandSignature);
5180   if (wand->debug != MagickFalse)
5181     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5182   if (wand->images == (Image *) NULL)
5183     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5184   return(wand->images->rows);
5185 }
5186 
5187 /*
5188 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5189 %                                                                             %
5190 %                                                                             %
5191 %                                                                             %
5192 %   M a g i c k G e t I m a g e H i s t o g r a m                             %
5193 %                                                                             %
5194 %                                                                             %
5195 %                                                                             %
5196 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5197 %
5198 %  MagickGetImageHistogram() returns the image histogram as an array of
5199 %  PixelWand wands.
5200 %
5201 %  The format of the MagickGetImageHistogram method is:
5202 %
5203 %      PixelWand **MagickGetImageHistogram(MagickWand *wand,
5204 %        size_t *number_colors)
5205 %
5206 %  A description of each parameter follows:
5207 %
5208 %    o wand: the magick wand.
5209 %
5210 %    o number_colors: the number of unique colors in the image and the number
5211 %      of pixel wands returned.
5212 %
5213 */
MagickGetImageHistogram(MagickWand * wand,size_t * number_colors)5214 WandExport PixelWand **MagickGetImageHistogram(MagickWand *wand,
5215   size_t *number_colors)
5216 {
5217   PixelInfo
5218     *histogram;
5219 
5220   PixelWand
5221     **pixel_wands;
5222 
5223   register ssize_t
5224     i;
5225 
5226   assert(wand != (MagickWand *) NULL);
5227   assert(wand->signature == MagickWandSignature);
5228   if (wand->debug != MagickFalse)
5229     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5230   if (wand->images == (Image *) NULL)
5231     {
5232       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5233         "ContainsNoImages","`%s'",wand->name);
5234       return((PixelWand **) NULL);
5235     }
5236   histogram=GetImageHistogram(wand->images,number_colors,wand->exception);
5237   if (histogram == (PixelInfo *) NULL)
5238     return((PixelWand **) NULL);
5239   pixel_wands=NewPixelWands(*number_colors);
5240   for (i=0; i < (ssize_t) *number_colors; i++)
5241   {
5242     PixelSetPixelColor(pixel_wands[i],&histogram[i]);
5243     PixelSetColorCount(pixel_wands[i],(size_t) histogram[i].count);
5244   }
5245   histogram=(PixelInfo *) RelinquishMagickMemory(histogram);
5246   return(pixel_wands);
5247 }
5248 
5249 /*
5250 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5251 %                                                                             %
5252 %                                                                             %
5253 %                                                                             %
5254 %   M a g i c k G e t I m a g e I n t e r l a c e S c h e m e                 %
5255 %                                                                             %
5256 %                                                                             %
5257 %                                                                             %
5258 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5259 %
5260 %  MagickGetImageInterlaceScheme() gets the image interlace scheme.
5261 %
5262 %  The format of the MagickGetImageInterlaceScheme method is:
5263 %
5264 %      InterlaceType MagickGetImageInterlaceScheme(MagickWand *wand)
5265 %
5266 %  A description of each parameter follows:
5267 %
5268 %    o wand: the magick wand.
5269 %
5270 */
MagickGetImageInterlaceScheme(MagickWand * wand)5271 WandExport InterlaceType MagickGetImageInterlaceScheme(MagickWand *wand)
5272 {
5273   assert(wand != (MagickWand *) NULL);
5274   assert(wand->signature == MagickWandSignature);
5275   if (wand->debug != MagickFalse)
5276     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5277   if (wand->images == (Image *) NULL)
5278     {
5279       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5280         "ContainsNoImages","`%s'",wand->name);
5281       return(UndefinedInterlace);
5282     }
5283   return(wand->images->interlace);
5284 }
5285 
5286 /*
5287 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5288 %                                                                             %
5289 %                                                                             %
5290 %                                                                             %
5291 %   M a g i c k G e t I m a g e I n t e r p o l a t e M e t h o d             %
5292 %                                                                             %
5293 %                                                                             %
5294 %                                                                             %
5295 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5296 %
5297 %  MagickGetImageInterpolateMethod() returns the interpolation method for the
5298 %  sepcified image.
5299 %
5300 %  The format of the MagickGetImageInterpolateMethod method is:
5301 %
5302 %      PixelInterpolateMethod MagickGetImageInterpolateMethod(MagickWand *wand)
5303 %
5304 %  A description of each parameter follows:
5305 %
5306 %    o wand: the magick wand.
5307 %
5308 */
MagickGetImageInterpolateMethod(MagickWand * wand)5309 WandExport PixelInterpolateMethod MagickGetImageInterpolateMethod(
5310   MagickWand *wand)
5311 {
5312   assert(wand != (MagickWand *) NULL);
5313   assert(wand->signature == MagickWandSignature);
5314   if (wand->debug != MagickFalse)
5315     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5316   if (wand->images == (Image *) NULL)
5317     {
5318       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5319         "ContainsNoImages","`%s'",wand->name);
5320       return(UndefinedInterpolatePixel);
5321     }
5322   return(wand->images->interpolate);
5323 }
5324 
5325 /*
5326 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5327 %                                                                             %
5328 %                                                                             %
5329 %                                                                             %
5330 %   M a g i c k G e t I m a g e I t e r a t i o n s                           %
5331 %                                                                             %
5332 %                                                                             %
5333 %                                                                             %
5334 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5335 %
5336 %  MagickGetImageIterations() gets the image iterations.
5337 %
5338 %  The format of the MagickGetImageIterations method is:
5339 %
5340 %      size_t MagickGetImageIterations(MagickWand *wand)
5341 %
5342 %  A description of each parameter follows:
5343 %
5344 %    o wand: the magick wand.
5345 %
5346 */
MagickGetImageIterations(MagickWand * wand)5347 WandExport size_t MagickGetImageIterations(MagickWand *wand)
5348 {
5349   assert(wand != (MagickWand *) NULL);
5350   assert(wand->signature == MagickWandSignature);
5351   if (wand->debug != MagickFalse)
5352     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5353   if (wand->images == (Image *) NULL)
5354     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5355   return(wand->images->iterations);
5356 }
5357 
5358 /*
5359 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5360 %                                                                             %
5361 %                                                                             %
5362 %                                                                             %
5363 %   M a g i c k G e t I m a g e L e n g t h                                   %
5364 %                                                                             %
5365 %                                                                             %
5366 %                                                                             %
5367 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5368 %
5369 %  MagickGetImageLength() returns the image length in bytes.
5370 %
5371 %  The format of the MagickGetImageLength method is:
5372 %
5373 %      MagickBooleanType MagickGetImageLength(MagickWand *wand,
5374 %        MagickSizeType *length)
5375 %
5376 %  A description of each parameter follows:
5377 %
5378 %    o wand: the magick wand.
5379 %
5380 %    o length: the image length in bytes.
5381 %
5382 */
MagickGetImageLength(MagickWand * wand,MagickSizeType * length)5383 WandExport MagickBooleanType MagickGetImageLength(MagickWand *wand,
5384   MagickSizeType *length)
5385 {
5386   assert(wand != (MagickWand *) NULL);
5387   assert(wand->signature == MagickWandSignature);
5388   if (wand->debug != MagickFalse)
5389     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5390   if (wand->images == (Image *) NULL)
5391     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5392   *length=GetBlobSize(wand->images);
5393   return(MagickTrue);
5394 }
5395 
5396 /*
5397 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5398 %                                                                             %
5399 %                                                                             %
5400 %                                                                             %
5401 %   M a g i c k G e t I m a g e M a t t e C o l o r                           %
5402 %                                                                             %
5403 %                                                                             %
5404 %                                                                             %
5405 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5406 %
5407 %  MagickGetImageMatteColor() returns the image matte color.
5408 %
5409 %  The format of the MagickGetImageMatteColor method is:
5410 %
5411 %      MagickBooleanType MagickGetImageMatteColor(MagickWand *wand,
5412 %        PixelWand *matte_color)
5413 %
5414 %  A description of each parameter follows:
5415 %
5416 %    o wand: the magick wand.
5417 %
5418 %    o matte_color: return the alpha color.
5419 %
5420 */
MagickGetImageMatteColor(MagickWand * wand,PixelWand * matte_color)5421 WandExport MagickBooleanType MagickGetImageMatteColor(MagickWand *wand,
5422   PixelWand *matte_color)
5423 {
5424   assert(wand != (MagickWand *)NULL);
5425   assert(wand->signature == MagickWandSignature);
5426   if (wand->debug != MagickFalse)
5427     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5428   if (wand->images == (Image *)NULL)
5429     ThrowWandException(WandError, "ContainsNoImages", wand->name);
5430   PixelSetPixelColor(matte_color,&wand->images->matte_color);
5431   return(MagickTrue);
5432 }
5433 
5434 /*
5435 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5436 %                                                                             %
5437 %                                                                             %
5438 %                                                                             %
5439 %   M a g i c k G e t I m a g e O r i e n t a t i o n                         %
5440 %                                                                             %
5441 %                                                                             %
5442 %                                                                             %
5443 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5444 %
5445 %  MagickGetImageOrientation() returns the image orientation.
5446 %
5447 %  The format of the MagickGetImageOrientation method is:
5448 %
5449 %      OrientationType MagickGetImageOrientation(MagickWand *wand)
5450 %
5451 %  A description of each parameter follows:
5452 %
5453 %    o wand: the magick wand.
5454 %
5455 */
MagickGetImageOrientation(MagickWand * wand)5456 WandExport OrientationType MagickGetImageOrientation(MagickWand *wand)
5457 {
5458   assert(wand != (MagickWand *) NULL);
5459   assert(wand->signature == MagickWandSignature);
5460   if (wand->debug != MagickFalse)
5461     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5462   if (wand->images == (Image *) NULL)
5463     {
5464       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5465         "ContainsNoImages","`%s'",wand->name);
5466       return(UndefinedOrientation);
5467     }
5468   return(wand->images->orientation);
5469 }
5470 
5471 /*
5472 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5473 %                                                                             %
5474 %                                                                             %
5475 %                                                                             %
5476 %   M a g i c k G e t I m a g e P a g e                                       %
5477 %                                                                             %
5478 %                                                                             %
5479 %                                                                             %
5480 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5481 %
5482 %  MagickGetImagePage() returns the page geometry associated with the image.
5483 %
5484 %  The format of the MagickGetImagePage method is:
5485 %
5486 %      MagickBooleanType MagickGetImagePage(MagickWand *wand,
5487 %        size_t *width,size_t *height,ssize_t *x,ssize_t *y)
5488 %
5489 %  A description of each parameter follows:
5490 %
5491 %    o wand: the magick wand.
5492 %
5493 %    o width: the page width.
5494 %
5495 %    o height: the page height.
5496 %
5497 %    o x: the page x-offset.
5498 %
5499 %    o y: the page y-offset.
5500 %
5501 */
MagickGetImagePage(MagickWand * wand,size_t * width,size_t * height,ssize_t * x,ssize_t * y)5502 WandExport MagickBooleanType MagickGetImagePage(MagickWand *wand,
5503   size_t *width,size_t *height,ssize_t *x,ssize_t *y)
5504 {
5505   assert(wand != (const MagickWand *) NULL);
5506   assert(wand->signature == MagickWandSignature);
5507   if (wand->debug != MagickFalse)
5508     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5509   if (wand->images == (Image *) NULL)
5510     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5511   *width=wand->images->page.width;
5512   *height=wand->images->page.height;
5513   *x=wand->images->page.x;
5514   *y=wand->images->page.y;
5515   return(MagickTrue);
5516 }
5517 
5518 /*
5519 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5520 %                                                                             %
5521 %                                                                             %
5522 %                                                                             %
5523 %   M a g i c k G e t I m a g e P i x e l C o l o r                           %
5524 %                                                                             %
5525 %                                                                             %
5526 %                                                                             %
5527 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5528 %
5529 %  MagickGetImagePixelColor() gets the color of the specified pixel.
5530 %
5531 %  The format of the MagickGetImagePixelColor method is:
5532 %
5533 %      MagickBooleanType MagickGetImagePixelColor(MagickWand *wand,
5534 %        const ssize_t x,const ssize_t y,PixelWand *color)
5535 %
5536 %  A description of each parameter follows:
5537 %
5538 %    o wand: the magick wand.
5539 %
5540 %    o x,y: the pixel offset into the image.
5541 %
5542 %    o color: Return the colormap color in this wand.
5543 %
5544 */
MagickGetImagePixelColor(MagickWand * wand,const ssize_t x,const ssize_t y,PixelWand * color)5545 WandExport MagickBooleanType MagickGetImagePixelColor(MagickWand *wand,
5546   const ssize_t x,const ssize_t y,PixelWand *color)
5547 {
5548   register const Quantum
5549     *p;
5550 
5551   CacheView
5552     *image_view;
5553 
5554   assert(wand != (MagickWand *) NULL);
5555   assert(wand->signature == MagickWandSignature);
5556   if (wand->debug != MagickFalse)
5557     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5558   if (wand->images == (Image *) NULL)
5559     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5560   image_view=AcquireVirtualCacheView(wand->images,wand->exception);
5561   p=GetCacheViewVirtualPixels(image_view,x,y,1,1,wand->exception);
5562   if (p == (const Quantum *) NULL)
5563     {
5564       image_view=DestroyCacheView(image_view);
5565       return(MagickFalse);
5566     }
5567   PixelSetQuantumPixel(wand->images,p,color);
5568   image_view=DestroyCacheView(image_view);
5569   return(MagickTrue);
5570 }
5571 
5572 /*
5573 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5574 %                                                                             %
5575 %                                                                             %
5576 %                                                                             %
5577 %   M a g i c k G e t I m a g e R e d P r i m a r y                           %
5578 %                                                                             %
5579 %                                                                             %
5580 %                                                                             %
5581 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5582 %
5583 %  MagickGetImageRedPrimary() returns the chromaticy red primary point.
5584 %
5585 %  The format of the MagickGetImageRedPrimary method is:
5586 %
5587 %      MagickBooleanType MagickGetImageRedPrimary(MagickWand *wand,double *x,
5588 %        double *y, double *z)
5589 %
5590 %  A description of each parameter follows:
5591 %
5592 %    o wand: the magick wand.
5593 %
5594 %    o x: the chromaticity red primary x-point.
5595 %
5596 %    o y: the chromaticity red primary y-point.
5597 %
5598 %    o z: the chromaticity red primary z-point.
5599 %
5600 */
MagickGetImageRedPrimary(MagickWand * wand,double * x,double * y,double * z)5601 WandExport MagickBooleanType MagickGetImageRedPrimary(MagickWand *wand,
5602   double *x,double *y,double *z)
5603 {
5604   assert(wand != (MagickWand *) NULL);
5605   assert(wand->signature == MagickWandSignature);
5606   if (wand->debug != MagickFalse)
5607     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5608   if (wand->images == (Image *) NULL)
5609     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5610   *x=wand->images->chromaticity.red_primary.x;
5611   *y=wand->images->chromaticity.red_primary.y;
5612   *z=wand->images->chromaticity.red_primary.z;
5613   return(MagickTrue);
5614 }
5615 
5616 /*
5617 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5618 %                                                                             %
5619 %                                                                             %
5620 %                                                                             %
5621 %   M a g i c k G e t I m a g e R e g i o n                                   %
5622 %                                                                             %
5623 %                                                                             %
5624 %                                                                             %
5625 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5626 %
5627 %  MagickGetImageRegion() extracts a region of the image and returns it as a
5628 %  a new wand.
5629 %
5630 %  The format of the MagickGetImageRegion method is:
5631 %
5632 %      MagickWand *MagickGetImageRegion(MagickWand *wand,
5633 %        const size_t width,const size_t height,const ssize_t x,
5634 %        const ssize_t y)
5635 %
5636 %  A description of each parameter follows:
5637 %
5638 %    o wand: the magick wand.
5639 %
5640 %    o width: the region width.
5641 %
5642 %    o height: the region height.
5643 %
5644 %    o x: the region x offset.
5645 %
5646 %    o y: the region y offset.
5647 %
5648 */
MagickGetImageRegion(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y)5649 WandExport MagickWand *MagickGetImageRegion(MagickWand *wand,
5650   const size_t width,const size_t height,const ssize_t x,
5651   const ssize_t y)
5652 {
5653   Image
5654     *region_image;
5655 
5656   RectangleInfo
5657     region;
5658 
5659   assert(wand != (MagickWand *) NULL);
5660   assert(wand->signature == MagickWandSignature);
5661   if (wand->debug != MagickFalse)
5662     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5663   if (wand->images == (Image *) NULL)
5664     return((MagickWand *) NULL);
5665   region.width=width;
5666   region.height=height;
5667   region.x=x;
5668   region.y=y;
5669   region_image=CropImage(wand->images,&region,wand->exception);
5670   if (region_image == (Image *) NULL)
5671     return((MagickWand *) NULL);
5672   return(CloneMagickWandFromImages(wand,region_image));
5673 }
5674 
5675 /*
5676 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5677 %                                                                             %
5678 %                                                                             %
5679 %                                                                             %
5680 %   M a g i c k G e t I m a g e R e n d e r i n g I n t e n t                 %
5681 %                                                                             %
5682 %                                                                             %
5683 %                                                                             %
5684 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5685 %
5686 %  MagickGetImageRenderingIntent() gets the image rendering intent.
5687 %
5688 %  The format of the MagickGetImageRenderingIntent method is:
5689 %
5690 %      RenderingIntent MagickGetImageRenderingIntent(MagickWand *wand)
5691 %
5692 %  A description of each parameter follows:
5693 %
5694 %    o wand: the magick wand.
5695 %
5696 */
MagickGetImageRenderingIntent(MagickWand * wand)5697 WandExport RenderingIntent MagickGetImageRenderingIntent(MagickWand *wand)
5698 {
5699   assert(wand != (MagickWand *) NULL);
5700   assert(wand->signature == MagickWandSignature);
5701   if (wand->debug != MagickFalse)
5702     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5703   if (wand->images == (Image *) NULL)
5704     {
5705       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5706         "ContainsNoImages","`%s'",wand->name);
5707       return(UndefinedIntent);
5708     }
5709   return((RenderingIntent) wand->images->rendering_intent);
5710 }
5711 
5712 /*
5713 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5714 %                                                                             %
5715 %                                                                             %
5716 %                                                                             %
5717 %   M a g i c k G e t I m a g e R e s o l u t i o n                           %
5718 %                                                                             %
5719 %                                                                             %
5720 %                                                                             %
5721 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5722 %
5723 %  MagickGetImageResolution() gets the image X and Y resolution.
5724 %
5725 %  The format of the MagickGetImageResolution method is:
5726 %
5727 %      MagickBooleanType MagickGetImageResolution(MagickWand *wand,double *x,
5728 %        double *y)
5729 %
5730 %  A description of each parameter follows:
5731 %
5732 %    o wand: the magick wand.
5733 %
5734 %    o x: the image x-resolution.
5735 %
5736 %    o y: the image y-resolution.
5737 %
5738 */
MagickGetImageResolution(MagickWand * wand,double * x,double * y)5739 WandExport MagickBooleanType MagickGetImageResolution(MagickWand *wand,
5740   double *x,double *y)
5741 {
5742   assert(wand != (MagickWand *) NULL);
5743   assert(wand->signature == MagickWandSignature);
5744   if (wand->debug != MagickFalse)
5745     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5746   if (wand->images == (Image *) NULL)
5747     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5748   *x=wand->images->resolution.x;
5749   *y=wand->images->resolution.y;
5750   return(MagickTrue);
5751 }
5752 
5753 /*
5754 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5755 %                                                                             %
5756 %                                                                             %
5757 %                                                                             %
5758 %   M a g i c k G e t I m a g e S c e n e                                     %
5759 %                                                                             %
5760 %                                                                             %
5761 %                                                                             %
5762 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5763 %
5764 %  MagickGetImageScene() gets the image scene.
5765 %
5766 %  The format of the MagickGetImageScene method is:
5767 %
5768 %      size_t MagickGetImageScene(MagickWand *wand)
5769 %
5770 %  A description of each parameter follows:
5771 %
5772 %    o wand: the magick wand.
5773 %
5774 */
MagickGetImageScene(MagickWand * wand)5775 WandExport size_t MagickGetImageScene(MagickWand *wand)
5776 {
5777   assert(wand != (MagickWand *) NULL);
5778   assert(wand->signature == MagickWandSignature);
5779   if (wand->debug != MagickFalse)
5780     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5781   if (wand->images == (Image *) NULL)
5782     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5783   return(wand->images->scene);
5784 }
5785 
5786 /*
5787 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5788 %                                                                             %
5789 %                                                                             %
5790 %                                                                             %
5791 %   M a g i c k G e t I m a g e S i g n a t u r e                             %
5792 %                                                                             %
5793 %                                                                             %
5794 %                                                                             %
5795 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5796 %
5797 %  MagickGetImageSignature() generates an SHA-256 message digest for the image
5798 %  pixel stream.
5799 %
5800 %  The format of the MagickGetImageSignature method is:
5801 %
5802 %      char *MagickGetImageSignature(MagickWand *wand)
5803 %
5804 %  A description of each parameter follows:
5805 %
5806 %    o wand: the magick wand.
5807 %
5808 */
MagickGetImageSignature(MagickWand * wand)5809 WandExport char *MagickGetImageSignature(MagickWand *wand)
5810 {
5811   const char
5812     *value;
5813 
5814   MagickBooleanType
5815     status;
5816 
5817   assert(wand != (MagickWand *) NULL);
5818   assert(wand->signature == MagickWandSignature);
5819   if (wand->debug != MagickFalse)
5820     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5821   if (wand->images == (Image *) NULL)
5822     {
5823       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5824         "ContainsNoImages","`%s'",wand->name);
5825       return((char *) NULL);
5826     }
5827   status=SignatureImage(wand->images,wand->exception);
5828   if (status == MagickFalse)
5829     return((char *) NULL);
5830   value=GetImageProperty(wand->images,"signature",wand->exception);
5831   if (value == (const char *) NULL)
5832     return((char *) NULL);
5833   return(AcquireString(value));
5834 }
5835 
5836 /*
5837 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5838 %                                                                             %
5839 %                                                                             %
5840 %                                                                             %
5841 %   M a g i c k G e t I m a g e T i c k s P e r S e c o n d                   %
5842 %                                                                             %
5843 %                                                                             %
5844 %                                                                             %
5845 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5846 %
5847 %  MagickGetImageTicksPerSecond() gets the image ticks-per-second.
5848 %
5849 %  The format of the MagickGetImageTicksPerSecond method is:
5850 %
5851 %      size_t MagickGetImageTicksPerSecond(MagickWand *wand)
5852 %
5853 %  A description of each parameter follows:
5854 %
5855 %    o wand: the magick wand.
5856 %
5857 */
MagickGetImageTicksPerSecond(MagickWand * wand)5858 WandExport size_t MagickGetImageTicksPerSecond(MagickWand *wand)
5859 {
5860   assert(wand != (MagickWand *) NULL);
5861   assert(wand->signature == MagickWandSignature);
5862   if (wand->debug != MagickFalse)
5863     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5864   if (wand->images == (Image *) NULL)
5865     ThrowWandException(WandError,"ContainsNoImages",wand->name);
5866   return((size_t) wand->images->ticks_per_second);
5867 }
5868 
5869 /*
5870 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5871 %                                                                             %
5872 %                                                                             %
5873 %                                                                             %
5874 %   M a g i c k G e t I m a g e T y p e                                       %
5875 %                                                                             %
5876 %                                                                             %
5877 %                                                                             %
5878 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5879 %
5880 %  MagickGetImageType() gets the potential image type:
5881 %
5882 %        Bilevel        Grayscale       GrayscaleMatte
5883 %        Palette        PaletteMatte    TrueColor
5884 %        TrueColorMatte ColorSeparation ColorSeparationMatte
5885 %
5886 %  The format of the MagickGetImageType method is:
5887 %
5888 %      ImageType MagickGetImageType(MagickWand *wand)
5889 %
5890 %  A description of each parameter follows:
5891 %
5892 %    o wand: the magick wand.
5893 %
5894 */
MagickGetImageType(MagickWand * wand)5895 WandExport ImageType MagickGetImageType(MagickWand *wand)
5896 {
5897   assert(wand != (MagickWand *) NULL);
5898   assert(wand->signature == MagickWandSignature);
5899   if (wand->debug != MagickFalse)
5900     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5901   if (wand->images == (Image *) NULL)
5902     {
5903       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5904         "ContainsNoImages","`%s'",wand->name);
5905       return(UndefinedType);
5906     }
5907   return(GetImageType(wand->images));
5908 }
5909 
5910 /*
5911 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5912 %                                                                             %
5913 %                                                                             %
5914 %                                                                             %
5915 %   M a g i c k G e t I m a g e U n i t s                                     %
5916 %                                                                             %
5917 %                                                                             %
5918 %                                                                             %
5919 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5920 %
5921 %  MagickGetImageUnits() gets the image units of resolution.
5922 %
5923 %  The format of the MagickGetImageUnits method is:
5924 %
5925 %      ResolutionType MagickGetImageUnits(MagickWand *wand)
5926 %
5927 %  A description of each parameter follows:
5928 %
5929 %    o wand: the magick wand.
5930 %
5931 */
MagickGetImageUnits(MagickWand * wand)5932 WandExport ResolutionType MagickGetImageUnits(MagickWand *wand)
5933 {
5934   assert(wand != (MagickWand *) NULL);
5935   assert(wand->signature == MagickWandSignature);
5936   if (wand->debug != MagickFalse)
5937     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5938   if (wand->images == (Image *) NULL)
5939     {
5940       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5941         "ContainsNoImages","`%s'",wand->name);
5942       return(UndefinedResolution);
5943     }
5944   return(wand->images->units);
5945 }
5946 
5947 /*
5948 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5949 %                                                                             %
5950 %                                                                             %
5951 %                                                                             %
5952 %   M a g i c k G e t I m a g e V i r t u a l P i x e l M e t h o d           %
5953 %                                                                             %
5954 %                                                                             %
5955 %                                                                             %
5956 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5957 %
5958 %  MagickGetImageVirtualPixelMethod() returns the virtual pixel method for the
5959 %  sepcified image.
5960 %
5961 %  The format of the MagickGetImageVirtualPixelMethod method is:
5962 %
5963 %      VirtualPixelMethod MagickGetImageVirtualPixelMethod(MagickWand *wand)
5964 %
5965 %  A description of each parameter follows:
5966 %
5967 %    o wand: the magick wand.
5968 %
5969 */
MagickGetImageVirtualPixelMethod(MagickWand * wand)5970 WandExport VirtualPixelMethod MagickGetImageVirtualPixelMethod(MagickWand *wand)
5971 {
5972   assert(wand != (MagickWand *) NULL);
5973   assert(wand->signature == MagickWandSignature);
5974   if (wand->debug != MagickFalse)
5975     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5976   if (wand->images == (Image *) NULL)
5977     {
5978       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
5979         "ContainsNoImages","`%s'",wand->name);
5980       return(UndefinedVirtualPixelMethod);
5981     }
5982   return(GetImageVirtualPixelMethod(wand->images));
5983 }
5984 
5985 /*
5986 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5987 %                                                                             %
5988 %                                                                             %
5989 %                                                                             %
5990 %   M a g i c k G e t I m a g e W h i t e P o i n t                           %
5991 %                                                                             %
5992 %                                                                             %
5993 %                                                                             %
5994 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5995 %
5996 %  MagickGetImageWhitePoint() returns the chromaticy white point.
5997 %
5998 %  The format of the MagickGetImageWhitePoint method is:
5999 %
6000 %      MagickBooleanType MagickGetImageWhitePoint(MagickWand *wand,double *x,
6001 %        double *y,double *z)
6002 %
6003 %  A description of each parameter follows:
6004 %
6005 %    o wand: the magick wand.
6006 %
6007 %    o x: the chromaticity white x-point.
6008 %
6009 %    o y: the chromaticity white y-point.
6010 %
6011 %    o z: the chromaticity white z-point.
6012 %
6013 */
MagickGetImageWhitePoint(MagickWand * wand,double * x,double * y,double * z)6014 WandExport MagickBooleanType MagickGetImageWhitePoint(MagickWand *wand,
6015   double *x,double *y,double *z)
6016 {
6017   assert(wand != (MagickWand *) NULL);
6018   assert(wand->signature == MagickWandSignature);
6019   if (wand->debug != MagickFalse)
6020     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6021   if (wand->images == (Image *) NULL)
6022     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6023   *x=wand->images->chromaticity.white_point.x;
6024   *y=wand->images->chromaticity.white_point.y;
6025   *z=wand->images->chromaticity.white_point.z;
6026   return(MagickTrue);
6027 }
6028 
6029 /*
6030 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6031 %                                                                             %
6032 %                                                                             %
6033 %                                                                             %
6034 %   M a g i c k G e t I m a g e W i d t h                                     %
6035 %                                                                             %
6036 %                                                                             %
6037 %                                                                             %
6038 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6039 %
6040 %  MagickGetImageWidth() returns the image width.
6041 %
6042 %  The format of the MagickGetImageWidth method is:
6043 %
6044 %      size_t MagickGetImageWidth(MagickWand *wand)
6045 %
6046 %  A description of each parameter follows:
6047 %
6048 %    o wand: the magick wand.
6049 %
6050 */
MagickGetImageWidth(MagickWand * wand)6051 WandExport size_t MagickGetImageWidth(MagickWand *wand)
6052 {
6053   assert(wand != (MagickWand *) NULL);
6054   assert(wand->signature == MagickWandSignature);
6055   if (wand->debug != MagickFalse)
6056     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6057   if (wand->images == (Image *) NULL)
6058     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6059   return(wand->images->columns);
6060 }
6061 
6062 /*
6063 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6064 %                                                                             %
6065 %                                                                             %
6066 %                                                                             %
6067 %   M a g i c k G e t N u m b e r I m a g e s                                 %
6068 %                                                                             %
6069 %                                                                             %
6070 %                                                                             %
6071 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6072 %
6073 %  MagickGetNumberImages() returns the number of images associated with a
6074 %  magick wand.
6075 %
6076 %  The format of the MagickGetNumberImages method is:
6077 %
6078 %      size_t MagickGetNumberImages(MagickWand *wand)
6079 %
6080 %  A description of each parameter follows:
6081 %
6082 %    o wand: the magick wand.
6083 %
6084 */
MagickGetNumberImages(MagickWand * wand)6085 WandExport size_t MagickGetNumberImages(MagickWand *wand)
6086 {
6087   assert(wand != (MagickWand *) NULL);
6088   assert(wand->signature == MagickWandSignature);
6089   if (wand->debug != MagickFalse)
6090     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6091   return(GetImageListLength(wand->images));
6092 }
6093 
6094 /*
6095 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6096 %                                                                             %
6097 %                                                                             %
6098 %                                                                             %
6099 %   M a g i c k I m a g e G e t T o t a l I n k D e n s i t y                 %
6100 %                                                                             %
6101 %                                                                             %
6102 %                                                                             %
6103 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6104 %
6105 %  MagickGetImageTotalInkDensity() gets the image total ink density.
6106 %
6107 %  The format of the MagickGetImageTotalInkDensity method is:
6108 %
6109 %      double MagickGetImageTotalInkDensity(MagickWand *wand)
6110 %
6111 %  A description of each parameter follows:
6112 %
6113 %    o wand: the magick wand.
6114 %
6115 */
MagickGetImageTotalInkDensity(MagickWand * wand)6116 WandExport double MagickGetImageTotalInkDensity(MagickWand *wand)
6117 {
6118   assert(wand != (MagickWand *) NULL);
6119   assert(wand->signature == MagickWandSignature);
6120   if (wand->debug != MagickFalse)
6121     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6122   if (wand->images == (Image *) NULL)
6123     {
6124       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
6125         "ContainsNoImages","`%s'",wand->name);
6126       return(0.0);
6127     }
6128   return(GetImageTotalInkDensity(wand->images,wand->exception));
6129 }
6130 
6131 /*
6132 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6133 %                                                                             %
6134 %                                                                             %
6135 %                                                                             %
6136 %   M a g i c k H a l d C l u t I m a g e                                     %
6137 %                                                                             %
6138 %                                                                             %
6139 %                                                                             %
6140 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6141 %
6142 %  MagickHaldClutImage() replaces colors in the image from a Hald color lookup
6143 %  table.   A Hald color lookup table is a 3-dimensional color cube mapped to 2
6144 %  dimensions.  Create it with the HALD coder.  You can apply any color
6145 %  transformation to the Hald image and then use this method to apply the
6146 %  transform to the image.
6147 %
6148 %  The format of the MagickHaldClutImage method is:
6149 %
6150 %      MagickBooleanType MagickHaldClutImage(MagickWand *wand,
6151 %        const MagickWand *hald_wand)
6152 %
6153 %  A description of each parameter follows:
6154 %
6155 %    o wand: the magick wand.
6156 %
6157 %    o hald_image: the hald CLUT image.
6158 %
6159 */
MagickHaldClutImage(MagickWand * wand,const MagickWand * hald_wand)6160 WandExport MagickBooleanType MagickHaldClutImage(MagickWand *wand,
6161   const MagickWand *hald_wand)
6162 {
6163   MagickBooleanType
6164     status;
6165 
6166   assert(wand != (MagickWand *) NULL);
6167   assert(wand->signature == MagickWandSignature);
6168   if (wand->debug != MagickFalse)
6169     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6170   if ((wand->images == (Image *) NULL) || (hald_wand->images == (Image *) NULL))
6171     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6172   status=HaldClutImage(wand->images,hald_wand->images,wand->exception);
6173   return(status);
6174 }
6175 
6176 /*
6177 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6178 %                                                                             %
6179 %                                                                             %
6180 %                                                                             %
6181 %   M a g i c k H a s N e x t I m a g e                                       %
6182 %                                                                             %
6183 %                                                                             %
6184 %                                                                             %
6185 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6186 %
6187 %  MagickHasNextImage() returns MagickTrue if the wand has more images when
6188 %  traversing the list in the forward direction
6189 %
6190 %  The format of the MagickHasNextImage method is:
6191 %
6192 %      MagickBooleanType MagickHasNextImage(MagickWand *wand)
6193 %
6194 %  A description of each parameter follows:
6195 %
6196 %    o wand: the magick wand.
6197 %
6198 */
MagickHasNextImage(MagickWand * wand)6199 WandExport MagickBooleanType MagickHasNextImage(MagickWand *wand)
6200 {
6201   assert(wand != (MagickWand *) NULL);
6202   assert(wand->signature == MagickWandSignature);
6203   if (wand->debug != MagickFalse)
6204     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6205   if (wand->images == (Image *) NULL)
6206     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6207   if (GetNextImageInList(wand->images) == (Image *) NULL)
6208     return(MagickFalse);
6209   return(MagickTrue);
6210 }
6211 
6212 /*
6213 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6214 %                                                                             %
6215 %                                                                             %
6216 %                                                                             %
6217 %   M a g i c k H a s P r e v i o u s I m a g e                               %
6218 %                                                                             %
6219 %                                                                             %
6220 %                                                                             %
6221 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6222 %
6223 %  MagickHasPreviousImage() returns MagickTrue if the wand has more images when
6224 %  traversing the list in the reverse direction
6225 %
6226 %  The format of the MagickHasPreviousImage method is:
6227 %
6228 %      MagickBooleanType MagickHasPreviousImage(MagickWand *wand)
6229 %
6230 %  A description of each parameter follows:
6231 %
6232 %    o wand: the magick wand.
6233 %
6234 */
MagickHasPreviousImage(MagickWand * wand)6235 WandExport MagickBooleanType MagickHasPreviousImage(MagickWand *wand)
6236 {
6237   assert(wand != (MagickWand *) NULL);
6238   assert(wand->signature == MagickWandSignature);
6239   if (wand->debug != MagickFalse)
6240     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6241   if (wand->images == (Image *) NULL)
6242     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6243   if (GetPreviousImageInList(wand->images) == (Image *) NULL)
6244     return(MagickFalse);
6245   return(MagickTrue);
6246 }
6247 
6248 /*
6249 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6250 %                                                                             %
6251 %                                                                             %
6252 %                                                                             %
6253 %   M a g i c k H o u g h L i n e I m a g e                                   %
6254 %                                                                             %
6255 %                                                                             %
6256 %                                                                             %
6257 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6258 %
6259 %  Use MagickHoughLineImage() in conjunction with any binary edge extracted
6260 %  image (we recommand Canny) to identify lines in the image.  The algorithm
6261 %  accumulates counts for every white pixel for every possible orientation (for
6262 %  angles from 0 to 179 in 1 degree increments) and distance from the center of
6263 %  the image to the corner (in 1 px increments) and stores the counts in an
6264 %  accumulator matrix of angle vs distance. The size of the accumulator is
6265 %  180x(diagonal/2). Next it searches this space for peaks in counts and
6266 %  converts the locations of the peaks to slope and intercept in the normal x,y
6267 %  input image space. Use the slope/intercepts to find the endpoints clipped to
6268 %  the bounds of the image. The lines are then drawn. The counts are a measure
6269 %  of the length of the lines.
6270 %
6271 %  The format of the MagickHoughLineImage method is:
6272 %
6273 %      MagickBooleanType MagickHoughLineImage(MagickWand *wand,
6274 %        const size_t width,const size_t height,const size_t threshold)
6275 %
6276 %  A description of each parameter follows:
6277 %
6278 %    o wand: the magick wand.
6279 %
6280 %    o width, height: find line pairs as local maxima in this neighborhood.
6281 %
6282 %    o threshold: the line count threshold.
6283 %
6284 */
MagickHoughLineImage(MagickWand * wand,const size_t width,const size_t height,const size_t threshold)6285 WandExport MagickBooleanType MagickHoughLineImage(MagickWand *wand,
6286   const size_t width,const size_t height,const size_t threshold)
6287 {
6288   Image
6289     *lines_image;
6290 
6291   assert(wand != (MagickWand *) NULL);
6292   assert(wand->signature == MagickWandSignature);
6293   if (wand->debug != MagickFalse)
6294     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6295   if (wand->images == (Image *) NULL)
6296     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6297   lines_image=HoughLineImage(wand->images,width,height,threshold,
6298     wand->exception);
6299   if (lines_image == (Image *) NULL)
6300     return(MagickFalse);
6301   ReplaceImageInList(&wand->images,lines_image);
6302   return(MagickTrue);
6303 }
6304 
6305 /*
6306 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6307 %                                                                             %
6308 %                                                                             %
6309 %                                                                             %
6310 %   M a g i c k I d e n t i f y I m a g e                                     %
6311 %                                                                             %
6312 %                                                                             %
6313 %                                                                             %
6314 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6315 %
6316 %  MagickIdentifyImage() identifies an image by printing its attributes to the
6317 %  file.  Attributes include the image width, height, size, and others.
6318 %
6319 %  The format of the MagickIdentifyImage method is:
6320 %
6321 %      const char *MagickIdentifyImage(MagickWand *wand)
6322 %
6323 %  A description of each parameter follows:
6324 %
6325 %    o wand: the magick wand.
6326 %
6327 */
MagickIdentifyImage(MagickWand * wand)6328 WandExport char *MagickIdentifyImage(MagickWand *wand)
6329 {
6330   char
6331     *description,
6332     filename[MagickPathExtent];
6333 
6334   FILE
6335     *file;
6336 
6337   int
6338     unique_file;
6339 
6340   assert(wand != (MagickWand *) NULL);
6341   assert(wand->signature == MagickWandSignature);
6342   if (wand->debug != MagickFalse)
6343     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6344   if (wand->images == (Image *) NULL)
6345     {
6346       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
6347         "ContainsNoImages","`%s'",wand->name);
6348       return((char *) NULL);
6349     }
6350   description=(char *) NULL;
6351   unique_file=AcquireUniqueFileResource(filename);
6352   file=(FILE *) NULL;
6353   if (unique_file != -1)
6354     file=fdopen(unique_file,"wb");
6355   if ((unique_file == -1) || (file == (FILE *) NULL))
6356     {
6357       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
6358         "UnableToCreateTemporaryFile","`%s'",wand->name);
6359       return((char *) NULL);
6360     }
6361   (void) IdentifyImage(wand->images,file,MagickTrue,wand->exception);
6362   (void) fclose(file);
6363   description=FileToString(filename,~0UL,wand->exception);
6364   (void) RelinquishUniqueFileResource(filename);
6365   return(description);
6366 }
6367 
6368 /*
6369 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6370 %                                                                             %
6371 %                                                                             %
6372 %                                                                             %
6373 %   M a g i c k I d e n t i f y I m a g e T y p e                             %
6374 %                                                                             %
6375 %                                                                             %
6376 %                                                                             %
6377 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6378 %
6379 %  MagickIdentifyImageType() gets the potential image type:
6380 %
6381 %        Bilevel        Grayscale       GrayscaleMatte
6382 %        Palette        PaletteMatte    TrueColor
6383 %        TrueColorMatte ColorSeparation ColorSeparationMatte
6384 %
6385 %  To ensure the image type matches its potential, use MagickSetImageType():
6386 %
6387 %    (void) MagickSetImageType(wand,MagickIdentifyImageType(wand));
6388 %
6389 %  The format of the MagickIdentifyImageType method is:
6390 %
6391 %      ImageType MagickIdentifyImageType(MagickWand *wand)
6392 %
6393 %  A description of each parameter follows:
6394 %
6395 %    o wand: the magick wand.
6396 %
6397 */
MagickIdentifyImageType(MagickWand * wand)6398 WandExport ImageType MagickIdentifyImageType(MagickWand *wand)
6399 {
6400   assert(wand != (MagickWand *) NULL);
6401   assert(wand->signature == MagickWandSignature);
6402   if (wand->debug != MagickFalse)
6403     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6404   if (wand->images == (Image *) NULL)
6405     {
6406       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
6407         "ContainsNoImages","`%s'",wand->name);
6408       return(UndefinedType);
6409     }
6410   return(IdentifyImageType(wand->images,wand->exception));
6411 }
6412 
6413 /*
6414 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6415 %                                                                             %
6416 %                                                                             %
6417 %                                                                             %
6418 %   M a g i c k I m p l o d e I m a g e                                       %
6419 %                                                                             %
6420 %                                                                             %
6421 %                                                                             %
6422 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6423 %
6424 %  MagickImplodeImage() creates a new image that is a copy of an existing
6425 %  one with the image pixels "implode" by the specified percentage.  It
6426 %  allocates the memory necessary for the new Image structure and returns a
6427 %  pointer to the new image.
6428 %
6429 %  The format of the MagickImplodeImage method is:
6430 %
6431 %      MagickBooleanType MagickImplodeImage(MagickWand *wand,
6432 %        const double radius,const PixelInterpolateMethod method)
6433 %
6434 %  A description of each parameter follows:
6435 %
6436 %    o wand: the magick wand.
6437 %
6438 %    o amount: Define the extent of the implosion.
6439 %
6440 %    o method: the pixel interpolation method.
6441 %
6442 */
MagickImplodeImage(MagickWand * wand,const double amount,const PixelInterpolateMethod method)6443 WandExport MagickBooleanType MagickImplodeImage(MagickWand *wand,
6444   const double amount,const PixelInterpolateMethod method)
6445 {
6446   Image
6447     *implode_image;
6448 
6449   assert(wand != (MagickWand *) NULL);
6450   assert(wand->signature == MagickWandSignature);
6451   if (wand->debug != MagickFalse)
6452     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6453   if (wand->images == (Image *) NULL)
6454     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6455   implode_image=ImplodeImage(wand->images,amount,method,wand->exception);
6456   if (implode_image == (Image *) NULL)
6457     return(MagickFalse);
6458   ReplaceImageInList(&wand->images,implode_image);
6459   return(MagickTrue);
6460 }
6461 
6462 /*
6463 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6464 %                                                                             %
6465 %                                                                             %
6466 %                                                                             %
6467 %   M a g i c k I m p o r t I m a g e P i x e l s                             %
6468 %                                                                             %
6469 %                                                                             %
6470 %                                                                             %
6471 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6472 %
6473 %  MagickImportImagePixels() accepts pixel datand stores it in the image at the
6474 %  location you specify.  The method returns MagickFalse on success otherwise
6475 %  MagickTrue if an error is encountered.  The pixel data can be either char,
6476 %  short int, int, ssize_t, float, or double in the order specified by map.
6477 %
6478 %  Suppose your want to upload the first scanline of a 640x480 image from
6479 %  character data in red-green-blue order:
6480 %
6481 %      MagickImportImagePixels(wand,0,0,640,1,"RGB",CharPixel,pixels);
6482 %
6483 %  The format of the MagickImportImagePixels method is:
6484 %
6485 %      MagickBooleanType MagickImportImagePixels(MagickWand *wand,
6486 %        const ssize_t x,const ssize_t y,const size_t columns,
6487 %        const size_t rows,const char *map,const StorageType storage,
6488 %        const void *pixels)
6489 %
6490 %  A description of each parameter follows:
6491 %
6492 %    o wand: the magick wand.
6493 %
6494 %    o x, y, columns, rows:  These values define the perimeter of a region
6495 %      of pixels you want to define.
6496 %
6497 %    o map:  This string reflects the expected ordering of the pixel array.
6498 %      It can be any combination or order of R = red, G = green, B = blue,
6499 %      A = alpha (0 is transparent), O = alpha (0 is opaque), C = cyan,
6500 %      Y = yellow, M = magenta, K = black, I = intensity (for grayscale),
6501 %      P = pad.
6502 %
6503 %    o storage: Define the data type of the pixels.  Float and double types are
6504 %      expected to be normalized [0..1] otherwise [0..QuantumRange].  Choose from
6505 %      these types: CharPixel, ShortPixel, IntegerPixel, LongPixel, FloatPixel,
6506 %      or DoublePixel.
6507 %
6508 %    o pixels: This array of values contain the pixel components as defined by
6509 %      map and type.  You must preallocate this array where the expected
6510 %      length varies depending on the values of width, height, map, and type.
6511 %
6512 */
MagickImportImagePixels(MagickWand * wand,const ssize_t x,const ssize_t y,const size_t columns,const size_t rows,const char * map,const StorageType storage,const void * pixels)6513 WandExport MagickBooleanType MagickImportImagePixels(MagickWand *wand,
6514   const ssize_t x,const ssize_t y,const size_t columns,const size_t rows,
6515   const char *map,const StorageType storage,const void *pixels)
6516 {
6517   MagickBooleanType
6518     status;
6519 
6520   assert(wand != (MagickWand *) NULL);
6521   assert(wand->signature == MagickWandSignature);
6522   if (wand->debug != MagickFalse)
6523     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6524   if (wand->images == (Image *) NULL)
6525     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6526   status=ImportImagePixels(wand->images,x,y,columns,rows,map,storage,pixels,
6527     wand->exception);
6528   return(status);
6529 }
6530 
6531 /*
6532 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6533 %                                                                             %
6534 %                                                                             %
6535 %                                                                             %
6536 %   M a g i c k I n t e r p o l a t i v e R e s i z e I m a g e               %
6537 %                                                                             %
6538 %                                                                             %
6539 %                                                                             %
6540 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6541 %
6542 %  MagickInterpolativeResizeImage() resize image using a interpolative
6543 %  method.
6544 %
6545 %      MagickBooleanType MagickInterpolativeResizeImage(MagickWand *wand,
6546 %        const size_t columns,const size_t rows,
6547 %        const PixelInterpolateMethod method)
6548 %
6549 %  A description of each parameter follows:
6550 %
6551 %    o wand: the magick wand.
6552 %
6553 %    o columns: the number of columns in the scaled image.
6554 %
6555 %    o rows: the number of rows in the scaled image.
6556 %
6557 %    o interpolate: the pixel interpolation method.
6558 %
6559 */
MagickInterpolativeResizeImage(MagickWand * wand,const size_t columns,const size_t rows,const PixelInterpolateMethod method)6560 WandExport MagickBooleanType MagickInterpolativeResizeImage(MagickWand *wand,
6561   const size_t columns,const size_t rows,const PixelInterpolateMethod method)
6562 {
6563   Image
6564     *resize_image;
6565 
6566   assert(wand != (MagickWand *) NULL);
6567   assert(wand->signature == MagickWandSignature);
6568   if (wand->debug != MagickFalse)
6569     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6570   if (wand->images == (Image *) NULL)
6571     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6572   resize_image=InterpolativeResizeImage(wand->images,columns,rows,method,
6573     wand->exception);
6574   if (resize_image == (Image *) NULL)
6575     return(MagickFalse);
6576   ReplaceImageInList(&wand->images,resize_image);
6577   return(MagickTrue);
6578 }
6579 
6580 /*
6581 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6582 %                                                                             %
6583 %                                                                             %
6584 %                                                                             %
6585 %   M a g i c k I n v e r s e F o u r i e r T r a n s f o r m I m a g e       %
6586 %                                                                             %
6587 %                                                                             %
6588 %                                                                             %
6589 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6590 %
6591 %  MagickInverseFourierTransformImage() implements the inverse discrete
6592 %  Fourier transform (DFT) of the image either as a magnitude / phase or real /
6593 %  imaginary image pair.
6594 %
6595 %  The format of the MagickInverseFourierTransformImage method is:
6596 %
6597 %      MagickBooleanType MagickInverseFourierTransformImage(
6598 %        MagickWand *magnitude_wand,MagickWand *phase_wand,
6599 %        const MagickBooleanType magnitude)
6600 %
6601 %  A description of each parameter follows:
6602 %
6603 %    o magnitude_wand: the magnitude or real wand.
6604 %
6605 %    o phase_wand: the phase or imaginary wand.
6606 %
6607 %    o magnitude: if true, return as magnitude / phase pair otherwise a real /
6608 %      imaginary image pair.
6609 %
6610 */
MagickInverseFourierTransformImage(MagickWand * magnitude_wand,MagickWand * phase_wand,const MagickBooleanType magnitude)6611 WandExport MagickBooleanType MagickInverseFourierTransformImage(
6612   MagickWand *magnitude_wand,MagickWand *phase_wand,
6613   const MagickBooleanType magnitude)
6614 {
6615   Image
6616     *inverse_image;
6617 
6618   MagickWand
6619     *wand;
6620 
6621   assert(magnitude_wand != (MagickWand *) NULL);
6622   assert(magnitude_wand->signature == MagickWandSignature);
6623   if (magnitude_wand->debug != MagickFalse)
6624     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",
6625       magnitude_wand->name);
6626   wand=magnitude_wand;
6627   if (magnitude_wand->images == (Image *) NULL)
6628     ThrowWandException(WandError,"ContainsNoImages",
6629       magnitude_wand->name);
6630   assert(phase_wand != (MagickWand *) NULL);
6631   assert(phase_wand->signature == MagickWandSignature);
6632   inverse_image=InverseFourierTransformImage(magnitude_wand->images,
6633     phase_wand->images,magnitude,wand->exception);
6634   if (inverse_image == (Image *) NULL)
6635     return(MagickFalse);
6636   ReplaceImageInList(&wand->images,inverse_image);
6637   return(MagickTrue);
6638 }
6639 
6640 /*
6641 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6642 %                                                                             %
6643 %                                                                             %
6644 %                                                                             %
6645 %   M a g i c k K u w a h a r a I m a g e                                     %
6646 %                                                                             %
6647 %                                                                             %
6648 %                                                                             %
6649 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6650 %
6651 %  Use MagickKuwaharaImage() is an edge preserving noise reduction filter.
6652 %
6653 %  The format of the MagickKuwaharaImage method is:
6654 %
6655 %      MagickBooleanType MagickKuwaharaImage(MagickWand *wand,
6656 %        const double radius,const double sigma)
6657 %
6658 %  A description of each parameter follows:
6659 %
6660 %    o wand: the magick wand.
6661 %
6662 %    o radius: the square window radius.
6663 %
6664 %    o sigma: the standard deviation of the Gaussian, in pixels.
6665 %
6666 */
MagickKuwaharaImage(MagickWand * wand,const double radius,const double sigma)6667 WandExport MagickBooleanType MagickKuwaharaImage(MagickWand *wand,
6668   const double radius,const double sigma)
6669 {
6670   Image
6671     *kuwahara_image;
6672 
6673   assert(wand != (MagickWand *) NULL);
6674   assert(wand->signature == MagickWandSignature);
6675   if (wand->debug != MagickFalse)
6676     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6677   if (wand->images == (Image *) NULL)
6678     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6679   kuwahara_image=KuwaharaImage(wand->images,radius,sigma,wand->exception);
6680   if (kuwahara_image == (Image *) NULL)
6681     return(MagickFalse);
6682   ReplaceImageInList(&wand->images,kuwahara_image);
6683   return(MagickTrue);
6684 }
6685 
6686 /*
6687 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6688 %                                                                             %
6689 %                                                                             %
6690 %                                                                             %
6691 %   M a g i c k L a b e l I m a g e                                           %
6692 %                                                                             %
6693 %                                                                             %
6694 %                                                                             %
6695 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6696 %
6697 %  MagickLabelImage() adds a label to your image.
6698 %
6699 %  The format of the MagickLabelImage method is:
6700 %
6701 %      MagickBooleanType MagickLabelImage(MagickWand *wand,const char *label)
6702 %
6703 %  A description of each parameter follows:
6704 %
6705 %    o wand: the magick wand.
6706 %
6707 %    o label: the image label.
6708 %
6709 */
MagickLabelImage(MagickWand * wand,const char * label)6710 WandExport MagickBooleanType MagickLabelImage(MagickWand *wand,
6711   const char *label)
6712 {
6713   MagickBooleanType
6714     status;
6715 
6716   assert(wand != (MagickWand *) NULL);
6717   assert(wand->signature == MagickWandSignature);
6718   if (wand->debug != MagickFalse)
6719     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6720   if (wand->images == (Image *) NULL)
6721     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6722   status=SetImageProperty(wand->images,"label",label,wand->exception);
6723   return(status);
6724 }
6725 
6726 /*
6727 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6728 %                                                                             %
6729 %                                                                             %
6730 %                                                                             %
6731 %   M a g i c k L e v e l I m a g e                                           %
6732 %                                                                             %
6733 %                                                                             %
6734 %                                                                             %
6735 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6736 %
6737 %  MagickLevelImage() adjusts the levels of an image by scaling the colors
6738 %  falling between specified white and black points to the full available
6739 %  quantum range. The parameters provided represent the black, mid, and white
6740 %  points. The black point specifies the darkest color in the image. Colors
6741 %  darker than the black point are set to zero. Mid point specifies a gamma
6742 %  correction to apply to the image.  White point specifies the lightest color
6743 %  in the image. Colors brighter than the white point are set to the maximum
6744 %  quantum value.
6745 %
6746 %  The format of the MagickLevelImage method is:
6747 %
6748 %      MagickBooleanType MagickLevelImage(MagickWand *wand,
6749 %        const double black_point,const double gamma,const double white_point)
6750 %
6751 %  A description of each parameter follows:
6752 %
6753 %    o wand: the magick wand.
6754 %
6755 %    o channel: Identify which channel to level: RedPixelChannel,
6756 %      GreenPixelChannel, etc.
6757 %
6758 %    o black_point: the black point.
6759 %
6760 %    o gamma: the gamma.
6761 %
6762 %    o white_point: the white point.
6763 %
6764 */
MagickLevelImage(MagickWand * wand,const double black_point,const double gamma,const double white_point)6765 WandExport MagickBooleanType MagickLevelImage(MagickWand *wand,
6766   const double black_point,const double gamma,const double white_point)
6767 {
6768   MagickBooleanType
6769     status;
6770 
6771   assert(wand != (MagickWand *) NULL);
6772   assert(wand->signature == MagickWandSignature);
6773   if (wand->debug != MagickFalse)
6774     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6775   if (wand->images == (Image *) NULL)
6776     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6777   status=LevelImage(wand->images,black_point,white_point,gamma,
6778     wand->exception);
6779   return(status);
6780 }
6781 
6782 /*
6783 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6784 %                                                                             %
6785 %                                                                             %
6786 %                                                                             %
6787 %   M a g i c k L e v e l I m a g e C o l o r s                               %
6788 %                                                                             %
6789 %                                                                             %
6790 %                                                                             %
6791 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6792 %
6793 %  MagickLevelImageColors() maps the given color to "black" and "white" values,
6794 %  linearly spreading out the colors, and level values on a channel by channel
6795 %  bases, as per LevelImage().  The given colors allows you to specify
6796 %  different level ranges for each of the color channels separately.
6797 %
6798 %  The format of the MagickLevelImageColors method is:
6799 %
6800 %      MagickBooleanType MagickLevelImageColors(MagickWand *wand,
6801 %        const PixelWand *black_color,const PixelWand *white_color,
6802 %        const MagickBooleanType invert)
6803 %
6804 %  A description of each parameter follows:
6805 %
6806 %    o wand: the magick wand.
6807 %
6808 %    o black_color: the black color.
6809 %
6810 %    o white_color: the white color.
6811 %
6812 %    o invert: if true map the colors (levelize), rather than from (level)
6813 %
6814 */
MagickLevelImageColors(MagickWand * wand,const PixelWand * black_color,const PixelWand * white_color,const MagickBooleanType invert)6815 WandExport MagickBooleanType MagickLevelImageColors(MagickWand *wand,
6816   const PixelWand *black_color,const PixelWand *white_color,
6817   const MagickBooleanType invert)
6818 {
6819   MagickBooleanType
6820     status;
6821 
6822   PixelInfo
6823     black,
6824     white;
6825 
6826   assert(wand != (MagickWand *) NULL);
6827   assert(wand->signature == MagickWandSignature);
6828   if (wand->debug != MagickFalse)
6829     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6830   if (wand->images == (Image *) NULL)
6831     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6832   PixelGetMagickColor(black_color,&black);
6833   PixelGetMagickColor(white_color,&white);
6834   status=LevelImageColors(wand->images,&black,&white,invert,wand->exception);
6835   return(status);
6836 }
6837 
6838 /*
6839 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6840 %                                                                             %
6841 %                                                                             %
6842 %                                                                             %
6843 %   M a g i c k L e v e l i z e I m a g e                                     %
6844 %                                                                             %
6845 %                                                                             %
6846 %                                                                             %
6847 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6848 %
6849 %  MagickLevelizeImage() applies the reversed MagickLevelImage(). It compresses
6850 %  the full range of color values, so that they lie between the given black and
6851 %  white points.  Gamma is applied before the values are mapped.  It can be
6852 %  used to de-contrast a greyscale image to the exact levels specified.
6853 %
6854 %  The format of the MagickLevelizeImage method is:
6855 %
6856 %      MagickBooleanType MagickLevelizeImage(MagickWand *wand,
6857 %        const double black_point, const double white_point,const double gamma)
6858 %
6859 %  A description of each parameter follows:
6860 %
6861 %    o wand: the magick wand.
6862 %
6863 %    o black_point: The level to map zero (black) to.
6864 %
6865 %    o white_point: The level to map QuantumRange (white) to.
6866 %
6867 %    o gamma: adjust gamma by this factor before mapping values.
6868 %
6869 */
MagickLevelizeImage(MagickWand * wand,const double black_point,const double gamma,const double white_point)6870 WandExport MagickBooleanType MagickLevelizeImage(MagickWand *wand,
6871   const double black_point,const double gamma,const double white_point)
6872 {
6873   MagickBooleanType
6874     status;
6875 
6876   assert(wand != (MagickWand *) NULL);
6877   assert(wand->signature == MagickWandSignature);
6878   if (wand->debug != MagickFalse)
6879     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6880   if (wand->images == (Image *) NULL)
6881     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6882   status=LevelizeImage(wand->images,black_point,white_point,gamma,
6883     wand->exception);
6884   return(status);
6885 }
6886 
6887 /*
6888 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6889 %                                                                             %
6890 %                                                                             %
6891 %                                                                             %
6892 %   M a g i c k L i n e a r S t r e t c h I m a g e                           %
6893 %                                                                             %
6894 %                                                                             %
6895 %                                                                             %
6896 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6897 %
6898 %  MagickLinearStretchImage() stretches with saturation the image intensity.
6899 %
6900 %  You can also reduce the influence of a particular channel with a gamma
6901 %  value of 0.
6902 %
6903 %  The format of the MagickLinearStretchImage method is:
6904 %
6905 %      MagickBooleanType MagickLinearStretchImage(MagickWand *wand,
6906 %        const double black_point,const double white_point)
6907 %
6908 %  A description of each parameter follows:
6909 %
6910 %    o wand: the magick wand.
6911 %
6912 %    o black_point: the black point.
6913 %
6914 %    o white_point: the white point.
6915 %
6916 */
MagickLinearStretchImage(MagickWand * wand,const double black_point,const double white_point)6917 WandExport MagickBooleanType MagickLinearStretchImage(MagickWand *wand,
6918   const double black_point,const double white_point)
6919 {
6920   MagickBooleanType
6921     status;
6922 
6923   assert(wand != (MagickWand *) NULL);
6924   assert(wand->signature == MagickWandSignature);
6925   if (wand->debug != MagickFalse)
6926     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6927   if (wand->images == (Image *) NULL)
6928     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6929   status=LinearStretchImage(wand->images,black_point,white_point,
6930     wand->exception);
6931   return(status);
6932 }
6933 
6934 /*
6935 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6936 %                                                                             %
6937 %                                                                             %
6938 %                                                                             %
6939 %   M a g i c k L i q u i d R e s c a l e I m a g e                           %
6940 %                                                                             %
6941 %                                                                             %
6942 %                                                                             %
6943 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6944 %
6945 %  MagickLiquidRescaleImage() rescales image with seam carving.
6946 %
6947 %      MagickBooleanType MagickLiquidRescaleImage(MagickWand *wand,
6948 %        const size_t columns,const size_t rows,
6949 %        const double delta_x,const double rigidity)
6950 %
6951 %  A description of each parameter follows:
6952 %
6953 %    o wand: the magick wand.
6954 %
6955 %    o columns: the number of columns in the scaled image.
6956 %
6957 %    o rows: the number of rows in the scaled image.
6958 %
6959 %    o delta_x: maximum seam transversal step (0 means straight seams).
6960 %
6961 %    o rigidity: introduce a bias for non-straight seams (typically 0).
6962 %
6963 */
MagickLiquidRescaleImage(MagickWand * wand,const size_t columns,const size_t rows,const double delta_x,const double rigidity)6964 WandExport MagickBooleanType MagickLiquidRescaleImage(MagickWand *wand,
6965   const size_t columns,const size_t rows,const double delta_x,
6966   const double rigidity)
6967 {
6968   Image
6969     *rescale_image;
6970 
6971   assert(wand != (MagickWand *) NULL);
6972   assert(wand->signature == MagickWandSignature);
6973   if (wand->debug != MagickFalse)
6974     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6975   if (wand->images == (Image *) NULL)
6976     ThrowWandException(WandError,"ContainsNoImages",wand->name);
6977   rescale_image=LiquidRescaleImage(wand->images,columns,rows,delta_x,
6978     rigidity,wand->exception);
6979   if (rescale_image == (Image *) NULL)
6980     return(MagickFalse);
6981   ReplaceImageInList(&wand->images,rescale_image);
6982   return(MagickTrue);
6983 }
6984 
6985 /*
6986 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6987 %                                                                             %
6988 %                                                                             %
6989 %                                                                             %
6990 %     M a g i c k L o c a l C o n t r a s t I m a g e                         %
6991 %                                                                             %
6992 %                                                                             %
6993 %                                                                             %
6994 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6995 %
6996 %  MagickLocalContrastImage() attempts to increase the appearance of
6997 %  large-scale light-dark transitions. Local contrast enhancement works
6998 %  similarly to sharpening with an unsharp mask, however the mask is instead
6999 %  created using an image with a greater blur distance.
7000 %
7001 %      MagickBooleanType MagickLocalContrastImage(MagickWand *wand,
7002 %        const double radius,const double strength)
7003 %
7004 %  A description of each parameter follows:
7005 %
7006 %    o image: the image.
7007 %
7008 %    o radius: the radius of the Gaussian, in pixels, not counting
7009 %      the center pixel.
7010 %
7011 %    o strength: the strength of the blur mask in percentage.
7012 %
7013 */
MagickLocalContrastImage(MagickWand * wand,const double radius,const double strength)7014 WandExport MagickBooleanType MagickLocalContrastImage(MagickWand *wand,
7015   const double radius, const double strength)
7016 {
7017   Image
7018     *contrast_image;
7019 
7020   assert(wand != (MagickWand *)NULL);
7021   assert(wand->signature == MagickWandSignature);
7022   if (wand->debug != MagickFalse)
7023     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s", wand->name);
7024   if (wand->images == (Image *)NULL)
7025     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7026   contrast_image=LocalContrastImage(wand->images,radius,strength,
7027     wand->exception);
7028   if (contrast_image == (Image *)NULL)
7029     return(MagickFalse);
7030   ReplaceImageInList(&wand->images,contrast_image);
7031   return(MagickTrue);
7032 }
7033 
7034 /*
7035 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7036 %                                                                             %
7037 %                                                                             %
7038 %                                                                             %
7039 %   M a g i c k M a g n i f y I m a g e                                       %
7040 %                                                                             %
7041 %                                                                             %
7042 %                                                                             %
7043 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7044 %
7045 %  MagickMagnifyImage() is a convenience method that scales an image
7046 %  proportionally to twice its original size.
7047 %
7048 %  The format of the MagickMagnifyImage method is:
7049 %
7050 %      MagickBooleanType MagickMagnifyImage(MagickWand *wand)
7051 %
7052 %  A description of each parameter follows:
7053 %
7054 %    o wand: the magick wand.
7055 %
7056 */
MagickMagnifyImage(MagickWand * wand)7057 WandExport MagickBooleanType MagickMagnifyImage(MagickWand *wand)
7058 {
7059   Image
7060     *magnify_image;
7061 
7062   assert(wand != (MagickWand *) NULL);
7063   assert(wand->signature == MagickWandSignature);
7064   if (wand->debug != MagickFalse)
7065     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7066   if (wand->images == (Image *) NULL)
7067     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7068   magnify_image=MagnifyImage(wand->images,wand->exception);
7069   if (magnify_image == (Image *) NULL)
7070     return(MagickFalse);
7071   ReplaceImageInList(&wand->images,magnify_image);
7072   return(MagickTrue);
7073 }
7074 
7075 /*
7076 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7077 %                                                                             %
7078 %                                                                             %
7079 %                                                                             %
7080 %   M a g i c k M e a n S h i f t I m a g e                                   %
7081 %                                                                             %
7082 %                                                                             %
7083 %                                                                             %
7084 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7085 %
7086 %  MagickMeanShiftImage() elineate arbitrarily shaped clusters in the image. For
7087 %  each pixel, it visits all the pixels in the neighborhood specified by
7088 %  the window centered at the pixel and excludes those that are outside the
7089 %  radius=(window-1)/2 surrounding the pixel. From those pixels, it finds those
7090 %  that are within the specified color distance from the current mean, and
7091 %  computes a new x,y centroid from those coordinates and a new mean. This new
7092 %  x,y centroid is used as the center for a new window. This process iterates
7093 %  until it converges and the final mean is replaces the (original window
7094 %  center) pixel value. It repeats this process for the next pixel, etc.,
7095 %  until it processes all pixels in the image. Results are typically better with
7096 %  colorspaces other than sRGB. We recommend YIQ, YUV or YCbCr.
7097 %
7098 %  The format of the MagickMeanShiftImage method is:
7099 %
7100 %      MagickBooleanType MagickMeanShiftImage(MagickWand *wand,
7101 %        const size_t number_terms,const double *terms)
7102 %
7103 %  A description of each parameter follows:
7104 %
7105 %    o wand: the magick wand.
7106 %
7107 %    o width, height: find pixels in this neighborhood.
7108 %
7109 %    o color_distance: the color distance.
7110 %
7111 */
MagickMeanShiftImage(MagickWand * wand,const size_t width,const size_t height,const double color_distance)7112 WandExport MagickBooleanType MagickMeanShiftImage(MagickWand *wand,
7113   const size_t width,const size_t height,const double color_distance)
7114 {
7115   Image
7116     *mean_image;
7117 
7118   assert(wand != (MagickWand *) NULL);
7119   assert(wand->signature == MagickWandSignature);
7120   if (wand->debug != MagickFalse)
7121     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7122   if (wand->images == (Image *) NULL)
7123     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7124   mean_image=MeanShiftImage(wand->images,width,height,color_distance,
7125     wand->exception);
7126   if (mean_image == (Image *) NULL)
7127     return(MagickFalse);
7128   ReplaceImageInList(&wand->images,mean_image);
7129   return(MagickTrue);
7130 }
7131 
7132 /*
7133 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7134 %                                                                             %
7135 %                                                                             %
7136 %                                                                             %
7137 %   M a g i c k M e r g e I m a g e L a y e r s                               %
7138 %                                                                             %
7139 %                                                                             %
7140 %                                                                             %
7141 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7142 %
7143 %  MagickMergeImageLayers() composes all the image layers from the current
7144 %  given image onward to produce a single image of the merged layers.
7145 %
7146 %  The inital canvas's size depends on the given LayerMethod, and is
7147 %  initialized using the first images background color.  The images
7148 %  are then compositied onto that image in sequence using the given
7149 %  composition that has been assigned to each individual image.
7150 %
7151 %  The format of the MagickMergeImageLayers method is:
7152 %
7153 %      MagickWand *MagickMergeImageLayers(MagickWand *wand,
7154 %        const LayerMethod method)
7155 %
7156 %  A description of each parameter follows:
7157 %
7158 %    o wand: the magick wand.
7159 %
7160 %    o method: the method of selecting the size of the initial canvas.
7161 %
7162 %        MergeLayer: Merge all layers onto a canvas just large enough
7163 %           to hold all the actual images. The virtual canvas of the
7164 %           first image is preserved but otherwise ignored.
7165 %
7166 %        FlattenLayer: Use the virtual canvas size of first image.
7167 %           Images which fall outside this canvas is clipped.
7168 %           This can be used to 'fill out' a given virtual canvas.
7169 %
7170 %        MosaicLayer: Start with the virtual canvas of the first image,
7171 %           enlarging left and right edges to contain all images.
7172 %           Images with negative offsets will be clipped.
7173 %
7174 */
MagickMergeImageLayers(MagickWand * wand,const LayerMethod method)7175 WandExport MagickWand *MagickMergeImageLayers(MagickWand *wand,
7176   const LayerMethod method)
7177 {
7178   Image
7179     *mosaic_image;
7180 
7181   assert(wand != (MagickWand *) NULL);
7182   assert(wand->signature == MagickWandSignature);
7183   if (wand->debug != MagickFalse)
7184     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7185   if (wand->images == (Image *) NULL)
7186     return((MagickWand *) NULL);
7187   mosaic_image=MergeImageLayers(wand->images,method,wand->exception);
7188   if (mosaic_image == (Image *) NULL)
7189     return((MagickWand *) NULL);
7190   return(CloneMagickWandFromImages(wand,mosaic_image));
7191 }
7192 
7193 /*
7194 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7195 %                                                                             %
7196 %                                                                             %
7197 %                                                                             %
7198 %   M a g i c k M i n i f y I m a g e                                         %
7199 %                                                                             %
7200 %                                                                             %
7201 %                                                                             %
7202 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7203 %
7204 %  MagickMinifyImage() is a convenience method that scales an image
7205 %  proportionally to one-half its original size
7206 %
7207 %  The format of the MagickMinifyImage method is:
7208 %
7209 %      MagickBooleanType MagickMinifyImage(MagickWand *wand)
7210 %
7211 %  A description of each parameter follows:
7212 %
7213 %    o wand: the magick wand.
7214 %
7215 */
MagickMinifyImage(MagickWand * wand)7216 WandExport MagickBooleanType MagickMinifyImage(MagickWand *wand)
7217 {
7218   Image
7219     *minify_image;
7220 
7221   assert(wand != (MagickWand *) NULL);
7222   assert(wand->signature == MagickWandSignature);
7223   if (wand->debug != MagickFalse)
7224     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7225   if (wand->images == (Image *) NULL)
7226     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7227   minify_image=MinifyImage(wand->images,wand->exception);
7228   if (minify_image == (Image *) NULL)
7229     return(MagickFalse);
7230   ReplaceImageInList(&wand->images,minify_image);
7231   return(MagickTrue);
7232 }
7233 
7234 /*
7235 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7236 %                                                                             %
7237 %                                                                             %
7238 %                                                                             %
7239 %   M a g i c k M o d u l a t e I m a g e                                     %
7240 %                                                                             %
7241 %                                                                             %
7242 %                                                                             %
7243 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7244 %
7245 %  MagickModulateImage() lets you control the brightness, saturation, and hue
7246 %  of an image.  Hue is the percentage of absolute rotation from the current
7247 %  position.  For example 50 results in a counter-clockwise rotation of 90
7248 %  degrees, 150 results in a clockwise rotation of 90 degrees, with 0 and 200
7249 %  both resulting in a rotation of 180 degrees.
7250 %
7251 %  To increase the color brightness by 20% and decrease the color saturation by
7252 %  10% and leave the hue unchanged, use: 120,90,100.
7253 %
7254 %  The format of the MagickModulateImage method is:
7255 %
7256 %      MagickBooleanType MagickModulateImage(MagickWand *wand,
7257 %        const double brightness,const double saturation,const double hue)
7258 %
7259 %  A description of each parameter follows:
7260 %
7261 %    o wand: the magick wand.
7262 %
7263 %    o brightness: the percent change in brighness.
7264 %
7265 %    o saturation: the percent change in saturation.
7266 %
7267 %    o hue: the percent change in hue.
7268 %
7269 */
MagickModulateImage(MagickWand * wand,const double brightness,const double saturation,const double hue)7270 WandExport MagickBooleanType MagickModulateImage(MagickWand *wand,
7271   const double brightness,const double saturation,const double hue)
7272 {
7273   char
7274     modulate[MagickPathExtent];
7275 
7276   MagickBooleanType
7277     status;
7278 
7279   assert(wand != (MagickWand *) NULL);
7280   assert(wand->signature == MagickWandSignature);
7281   if (wand->debug != MagickFalse)
7282     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7283   if (wand->images == (Image *) NULL)
7284     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7285   (void) FormatLocaleString(modulate,MagickPathExtent,"%g,%g,%g",
7286     brightness,saturation,hue);
7287   status=ModulateImage(wand->images,modulate,wand->exception);
7288   return(status);
7289 }
7290 
7291 /*
7292 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7293 %                                                                             %
7294 %                                                                             %
7295 %                                                                             %
7296 %   M a g i c k M o n t a g e I m a g e                                       %
7297 %                                                                             %
7298 %                                                                             %
7299 %                                                                             %
7300 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7301 %
7302 %  MagickMontageImage() creates a composite image by combining several
7303 %  separate images. The images are tiled on the composite image with the name
7304 %  of the image optionally appearing just below the individual tile.
7305 %
7306 %  The format of the MagickMontageImage method is:
7307 %
7308 %      MagickWand *MagickMontageImage(MagickWand *wand,
7309 %        const DrawingWand drawing_wand,const char *tile_geometry,
7310 %        const char *thumbnail_geometry,const MontageMode mode,
7311 %        const char *frame)
7312 %
7313 %  A description of each parameter follows:
7314 %
7315 %    o wand: the magick wand.
7316 %
7317 %    o drawing_wand: the drawing wand.  The font name, size, and color are
7318 %      obtained from this wand.
7319 %
7320 %    o tile_geometry: the number of tiles per row and page (e.g. 6x4+0+0).
7321 %
7322 %    o thumbnail_geometry: Preferred image size and border size of each
7323 %      thumbnail (e.g. 120x120+4+3>).
7324 %
7325 %    o mode: Thumbnail framing mode: Frame, Unframe, or Concatenate.
7326 %
7327 %    o frame: Surround the image with an ornamental border (e.g. 15x15+3+3).
7328 %      The frame color is that of the thumbnail's matte color.
7329 %
7330 */
MagickMontageImage(MagickWand * wand,const DrawingWand * drawing_wand,const char * tile_geometry,const char * thumbnail_geometry,const MontageMode mode,const char * frame)7331 WandExport MagickWand *MagickMontageImage(MagickWand *wand,
7332   const DrawingWand *drawing_wand,const char *tile_geometry,
7333   const char *thumbnail_geometry,const MontageMode mode,const char *frame)
7334 {
7335   char
7336     *font;
7337 
7338   Image
7339     *montage_image;
7340 
7341   MontageInfo
7342     *montage_info;
7343 
7344   PixelWand
7345     *pixel_wand;
7346 
7347   assert(wand != (MagickWand *) NULL);
7348   assert(wand->signature == MagickWandSignature);
7349   if (wand->debug != MagickFalse)
7350     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7351   if (wand->images == (Image *) NULL)
7352     return((MagickWand *) NULL);
7353   montage_info=CloneMontageInfo(wand->image_info,(MontageInfo *) NULL);
7354   switch (mode)
7355   {
7356     case FrameMode:
7357     {
7358       (void) CloneString(&montage_info->frame,"15x15+3+3");
7359       montage_info->shadow=MagickTrue;
7360       break;
7361     }
7362     case UnframeMode:
7363     {
7364       montage_info->frame=(char *) NULL;
7365       montage_info->shadow=MagickFalse;
7366       montage_info->border_width=0;
7367       break;
7368     }
7369     case ConcatenateMode:
7370     {
7371       montage_info->frame=(char *) NULL;
7372       montage_info->shadow=MagickFalse;
7373       (void) CloneString(&montage_info->geometry,"+0+0");
7374       montage_info->border_width=0;
7375       break;
7376     }
7377     default:
7378       break;
7379   }
7380   font=DrawGetFont(drawing_wand);
7381   if (font != (char *) NULL)
7382     (void) CloneString(&montage_info->font,font);
7383   if (frame != (char *) NULL)
7384     (void) CloneString(&montage_info->frame,frame);
7385   montage_info->pointsize=DrawGetFontSize(drawing_wand);
7386   pixel_wand=NewPixelWand();
7387   DrawGetFillColor(drawing_wand,pixel_wand);
7388   PixelGetQuantumPacket(pixel_wand,&montage_info->fill);
7389   DrawGetStrokeColor(drawing_wand,pixel_wand);
7390   PixelGetQuantumPacket(pixel_wand,&montage_info->stroke);
7391   pixel_wand=DestroyPixelWand(pixel_wand);
7392   if (thumbnail_geometry != (char *) NULL)
7393     (void) CloneString(&montage_info->geometry,thumbnail_geometry);
7394   if (tile_geometry != (char *) NULL)
7395     (void) CloneString(&montage_info->tile,tile_geometry);
7396   montage_image=MontageImageList(wand->image_info,montage_info,wand->images,
7397     wand->exception);
7398   montage_info=DestroyMontageInfo(montage_info);
7399   if (montage_image == (Image *) NULL)
7400     return((MagickWand *) NULL);
7401   return(CloneMagickWandFromImages(wand,montage_image));
7402 }
7403 
7404 /*
7405 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7406 %                                                                             %
7407 %                                                                             %
7408 %                                                                             %
7409 %   M a g i c k M o r p h I m a g e s                                         %
7410 %                                                                             %
7411 %                                                                             %
7412 %                                                                             %
7413 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7414 %
7415 %  MagickMorphImages() method morphs a set of images.  Both the image pixels
7416 %  and size are linearly interpolated to give the appearance of a
7417 %  meta-morphosis from one image to the next.
7418 %
7419 %  The format of the MagickMorphImages method is:
7420 %
7421 %      MagickWand *MagickMorphImages(MagickWand *wand,
7422 %        const size_t number_frames)
7423 %
7424 %  A description of each parameter follows:
7425 %
7426 %    o wand: the magick wand.
7427 %
7428 %    o number_frames: the number of in-between images to generate.
7429 %
7430 */
MagickMorphImages(MagickWand * wand,const size_t number_frames)7431 WandExport MagickWand *MagickMorphImages(MagickWand *wand,
7432   const size_t number_frames)
7433 {
7434   Image
7435     *morph_image;
7436 
7437   assert(wand != (MagickWand *) NULL);
7438   assert(wand->signature == MagickWandSignature);
7439   if (wand->debug != MagickFalse)
7440     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7441   if (wand->images == (Image *) NULL)
7442     return((MagickWand *) NULL);
7443   morph_image=MorphImages(wand->images,number_frames,wand->exception);
7444   if (morph_image == (Image *) NULL)
7445     return((MagickWand *) NULL);
7446   return(CloneMagickWandFromImages(wand,morph_image));
7447 }
7448 
7449 /*
7450 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7451 %                                                                             %
7452 %                                                                             %
7453 %                                                                             %
7454 %   M a g i c k M o r p h o l o g y I m a g e                                 %
7455 %                                                                             %
7456 %                                                                             %
7457 %                                                                             %
7458 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7459 %
7460 %  MagickMorphologyImage() applies a user supplied kernel to the image
7461 %  according to the given mophology method.
7462 %
7463 %  The format of the MagickMorphologyImage method is:
7464 %
7465 %      MagickBooleanType MagickMorphologyImage(MagickWand *wand,
7466 %        const MorphologyMethod method,const ssize_t iterations,
7467 %        const KernelInfo *kernel)
7468 %
7469 %  A description of each parameter follows:
7470 %
7471 %    o wand: the magick wand.
7472 %
7473 %    o method: the morphology method to be applied.
7474 %
7475 %    o iterations: apply the operation this many times (or no change).
7476 %      A value of -1 means loop until no change found.  How this is applied
7477 %      may depend on the morphology method.  Typically this is a value of 1.
7478 %
7479 %    o kernel: An array of doubles representing the morphology kernel.
7480 %
7481 */
MagickMorphologyImage(MagickWand * wand,const MorphologyMethod method,const ssize_t iterations,const KernelInfo * kernel)7482 WandExport MagickBooleanType MagickMorphologyImage(MagickWand *wand,
7483   const MorphologyMethod method,const ssize_t iterations,
7484   const KernelInfo *kernel)
7485 {
7486   Image
7487     *morphology_image;
7488 
7489   assert(wand != (MagickWand *) NULL);
7490   assert(wand->signature == MagickWandSignature);
7491   if (wand->debug != MagickFalse)
7492     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7493   if (kernel == (const KernelInfo *) NULL)
7494     return(MagickFalse);
7495   if (wand->images == (Image *) NULL)
7496     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7497   morphology_image=MorphologyImage(wand->images,method,iterations,kernel,
7498     wand->exception);
7499   if (morphology_image == (Image *) NULL)
7500     return(MagickFalse);
7501   ReplaceImageInList(&wand->images,morphology_image);
7502   return(MagickTrue);
7503 }
7504 
7505 /*
7506 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7507 %                                                                             %
7508 %                                                                             %
7509 %                                                                             %
7510 %   M a g i c k M o t i o n B l u r I m a g e                                 %
7511 %                                                                             %
7512 %                                                                             %
7513 %                                                                             %
7514 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7515 %
7516 %  MagickMotionBlurImage() simulates motion blur.  We convolve the image with a
7517 %  Gaussian operator of the given radius and standard deviation (sigma).
7518 %  For reasonable results, radius should be larger than sigma.  Use a
7519 %  radius of 0 and MotionBlurImage() selects a suitable radius for you.
7520 %  Angle gives the angle of the blurring motion.
7521 %
7522 %  The format of the MagickMotionBlurImage method is:
7523 %
7524 %      MagickBooleanType MagickMotionBlurImage(MagickWand *wand,
7525 %        const double radius,const double sigma,const double angle)
7526 %
7527 %  A description of each parameter follows:
7528 %
7529 %    o wand: the magick wand.
7530 %
7531 %    o radius: the radius of the Gaussian, in pixels, not counting
7532 %      the center pixel.
7533 %
7534 %    o sigma: the standard deviation of the Gaussian, in pixels.
7535 %
7536 %    o angle: Apply the effect along this angle.
7537 %
7538 */
MagickMotionBlurImage(MagickWand * wand,const double radius,const double sigma,const double angle)7539 WandExport MagickBooleanType MagickMotionBlurImage(MagickWand *wand,
7540   const double radius,const double sigma,const double angle)
7541 {
7542   Image
7543     *blur_image;
7544 
7545   assert(wand != (MagickWand *) NULL);
7546   assert(wand->signature == MagickWandSignature);
7547   if (wand->debug != MagickFalse)
7548     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7549   if (wand->images == (Image *) NULL)
7550     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7551   blur_image=MotionBlurImage(wand->images,radius,sigma,angle,wand->exception);
7552   if (blur_image == (Image *) NULL)
7553     return(MagickFalse);
7554   ReplaceImageInList(&wand->images,blur_image);
7555   return(MagickTrue);
7556 }
7557 
7558 /*
7559 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7560 %                                                                             %
7561 %                                                                             %
7562 %                                                                             %
7563 %   M a g i c k N e g a t e I m a g e                                         %
7564 %                                                                             %
7565 %                                                                             %
7566 %                                                                             %
7567 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7568 %
7569 %  MagickNegateImage() negates the colors in the reference image.  The
7570 %  Grayscale option means that only grayscale values within the image are
7571 %  negated.
7572 %
7573 %  You can also reduce the influence of a particular channel with a gamma
7574 %  value of 0.
7575 %
7576 %  The format of the MagickNegateImage method is:
7577 %
7578 %      MagickBooleanType MagickNegateImage(MagickWand *wand,
7579 %        const MagickBooleanType gray)
7580 %
7581 %  A description of each parameter follows:
7582 %
7583 %    o wand: the magick wand.
7584 %
7585 %    o gray: If MagickTrue, only negate grayscale pixels within the image.
7586 %
7587 */
MagickNegateImage(MagickWand * wand,const MagickBooleanType gray)7588 WandExport MagickBooleanType MagickNegateImage(MagickWand *wand,
7589   const MagickBooleanType gray)
7590 {
7591   MagickBooleanType
7592     status;
7593 
7594   assert(wand != (MagickWand *) NULL);
7595   assert(wand->signature == MagickWandSignature);
7596   if (wand->debug != MagickFalse)
7597     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7598   if (wand->images == (Image *) NULL)
7599     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7600   status=NegateImage(wand->images,gray,wand->exception);
7601   return(status);
7602 }
7603 
7604 /*
7605 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7606 %                                                                             %
7607 %                                                                             %
7608 %                                                                             %
7609 %   M a g i c k N e w I m a g e                                               %
7610 %                                                                             %
7611 %                                                                             %
7612 %                                                                             %
7613 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7614 %
7615 %  MagickNewImage() adds a blank image canvas of the specified size and
7616 %  background color to the wand.
7617 %
7618 %  The format of the MagickNewImage method is:
7619 %
7620 %      MagickBooleanType MagickNewImage(MagickWand *wand,
7621 %        const size_t columns,const size_t rows,
7622 %        const PixelWand *background)
7623 %
7624 %  A description of each parameter follows:
7625 %
7626 %    o wand: the magick wand.
7627 %
7628 %    o width: the image width.
7629 %
7630 %    o height: the image height.
7631 %
7632 %    o background: the image color.
7633 %
7634 */
MagickNewImage(MagickWand * wand,const size_t width,const size_t height,const PixelWand * background)7635 WandExport MagickBooleanType MagickNewImage(MagickWand *wand,const size_t width,
7636   const size_t height,const PixelWand *background)
7637 {
7638   Image
7639     *images;
7640 
7641   PixelInfo
7642     pixel;
7643 
7644   assert(wand != (MagickWand *) NULL);
7645   assert(wand->signature == MagickWandSignature);
7646   if (wand->debug != MagickFalse)
7647     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7648   PixelGetMagickColor(background,&pixel);
7649   images=NewMagickImage(wand->image_info,width,height,&pixel,wand->exception);
7650   if (images == (Image *) NULL)
7651     return(MagickFalse);
7652   return(InsertImageInWand(wand,images));
7653 }
7654 
7655 /*
7656 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7657 %                                                                             %
7658 %                                                                             %
7659 %                                                                             %
7660 %   M a g i c k N e x t I m a g e                                             %
7661 %                                                                             %
7662 %                                                                             %
7663 %                                                                             %
7664 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7665 %
7666 %  MagickNextImage() sets the next image in the wand as the current image.
7667 %
7668 %  It is typically used after MagickResetIterator(), after which its first use
7669 %  will set the first image as the current image (unless the wand is empty).
7670 %
7671 %  It will return MagickFalse when no more images are left to be returned
7672 %  which happens when the wand is empty, or the current image is the last
7673 %  image.
7674 %
7675 %  When the above condition (end of image list) is reached, the iterator is
7676 %  automaticall set so that you can start using MagickPreviousImage() to
7677 %  again iterate over the images in the reverse direction, starting with the
7678 %  last image (again).  You can jump to this condition immeditally using
7679 %  MagickSetLastIterator().
7680 %
7681 %  The format of the MagickNextImage method is:
7682 %
7683 %      MagickBooleanType MagickNextImage(MagickWand *wand)
7684 %
7685 %  A description of each parameter follows:
7686 %
7687 %    o wand: the magick wand.
7688 %
7689 */
MagickNextImage(MagickWand * wand)7690 WandExport MagickBooleanType MagickNextImage(MagickWand *wand)
7691 {
7692   assert(wand != (MagickWand *) NULL);
7693   assert(wand->signature == MagickWandSignature);
7694   if (wand->debug != MagickFalse)
7695     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7696   if (wand->images == (Image *) NULL)
7697     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7698   wand->insert_before=MagickFalse; /* Inserts is now appended */
7699   if (wand->image_pending != MagickFalse)
7700     {
7701       wand->image_pending=MagickFalse;
7702       return(MagickTrue);
7703     }
7704   if (GetNextImageInList(wand->images) == (Image *) NULL)
7705     {
7706       wand->image_pending=MagickTrue; /* No image, PreviousImage re-gets */
7707       return(MagickFalse);
7708     }
7709   wand->images=GetNextImageInList(wand->images);
7710   return(MagickTrue);
7711 }
7712 
7713 /*
7714 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7715 %                                                                             %
7716 %                                                                             %
7717 %                                                                             %
7718 %   M a g i c k N o r m a l i z e I m a g e                                   %
7719 %                                                                             %
7720 %                                                                             %
7721 %                                                                             %
7722 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7723 %
7724 %  MagickNormalizeImage() enhances the contrast of a color image by adjusting
7725 %  the pixels color to span the entire range of colors available
7726 %
7727 %  You can also reduce the influence of a particular channel with a gamma
7728 %  value of 0.
7729 %
7730 %  The format of the MagickNormalizeImage method is:
7731 %
7732 %      MagickBooleanType MagickNormalizeImage(MagickWand *wand)
7733 %
7734 %  A description of each parameter follows:
7735 %
7736 %    o wand: the magick wand.
7737 %
7738 */
MagickNormalizeImage(MagickWand * wand)7739 WandExport MagickBooleanType MagickNormalizeImage(MagickWand *wand)
7740 {
7741   MagickBooleanType
7742     status;
7743 
7744   assert(wand != (MagickWand *) NULL);
7745   assert(wand->signature == MagickWandSignature);
7746   if (wand->debug != MagickFalse)
7747     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7748   if (wand->images == (Image *) NULL)
7749     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7750   status=NormalizeImage(wand->images,wand->exception);
7751   return(status);
7752 }
7753 
7754 /*
7755 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7756 %                                                                             %
7757 %                                                                             %
7758 %                                                                             %
7759 %   M a g i c k O i l P a i n t I m a g e                                     %
7760 %                                                                             %
7761 %                                                                             %
7762 %                                                                             %
7763 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7764 %
7765 %  MagickOilPaintImage() applies a special effect filter that simulates an oil
7766 %  painting.  Each pixel is replaced by the most frequent color occurring
7767 %  in a circular region defined by radius.
7768 %
7769 %  The format of the MagickOilPaintImage method is:
7770 %
7771 %      MagickBooleanType MagickOilPaintImage(MagickWand *wand,
7772 %        const double radius,const double sigma)
7773 %
7774 %  A description of each parameter follows:
7775 %
7776 %    o wand: the magick wand.
7777 %
7778 %    o radius: the radius of the circular neighborhood.
7779 %
7780 %    o sigma: the standard deviation of the Gaussian, in pixels.
7781 %
7782 */
MagickOilPaintImage(MagickWand * wand,const double radius,const double sigma)7783 WandExport MagickBooleanType MagickOilPaintImage(MagickWand *wand,
7784   const double radius,const double sigma)
7785 {
7786   Image
7787     *paint_image;
7788 
7789   assert(wand != (MagickWand *) NULL);
7790   assert(wand->signature == MagickWandSignature);
7791   if (wand->debug != MagickFalse)
7792     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7793   if (wand->images == (Image *) NULL)
7794     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7795   paint_image=OilPaintImage(wand->images,radius,sigma,wand->exception);
7796   if (paint_image == (Image *) NULL)
7797     return(MagickFalse);
7798   ReplaceImageInList(&wand->images,paint_image);
7799   return(MagickTrue);
7800 }
7801 
7802 /*
7803 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7804 %                                                                             %
7805 %                                                                             %
7806 %                                                                             %
7807 %   M a g i c k O p a q u e P a i n t I m a g e                               %
7808 %                                                                             %
7809 %                                                                             %
7810 %                                                                             %
7811 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7812 %
7813 %  MagickOpaquePaintImage() changes any pixel that matches color with the color
7814 %  defined by fill.
7815 %
7816 %  The format of the MagickOpaquePaintImage method is:
7817 %
7818 %      MagickBooleanType MagickOpaquePaintImage(MagickWand *wand,
7819 %        const PixelWand *target,const PixelWand *fill,const double fuzz,
7820 %        const MagickBooleanType invert)
7821 %
7822 %  A description of each parameter follows:
7823 %
7824 %    o wand: the magick wand.
7825 %
7826 %    o target: Change this target color to the fill color within the image.
7827 %
7828 %    o fill: the fill pixel wand.
7829 %
7830 %    o fuzz: By default target must match a particular pixel color
7831 %      exactly.  However, in many cases two colors may differ by a small amount.
7832 %      The fuzz member of image defines how much tolerance is acceptable to
7833 %      consider two colors as the same.  For example, set fuzz to 10 and the
7834 %      color red at intensities of 100 and 102 respectively are now interpreted
7835 %      as the same color for the purposes of the floodfill.
7836 %
7837 %    o invert: paint any pixel that does not match the target color.
7838 %
7839 */
MagickOpaquePaintImage(MagickWand * wand,const PixelWand * target,const PixelWand * fill,const double fuzz,const MagickBooleanType invert)7840 WandExport MagickBooleanType MagickOpaquePaintImage(MagickWand *wand,
7841   const PixelWand *target,const PixelWand *fill,const double fuzz,
7842   const MagickBooleanType invert)
7843 {
7844   MagickBooleanType
7845     status;
7846 
7847   PixelInfo
7848     fill_pixel,
7849     target_pixel;
7850 
7851   assert(wand != (MagickWand *) NULL);
7852   assert(wand->signature == MagickWandSignature);
7853   if (wand->debug != MagickFalse)
7854     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7855   if (wand->images == (Image *) NULL)
7856     ThrowWandException(WandError,"ContainsNoImages",wand->name);
7857   PixelGetMagickColor(target,&target_pixel);
7858   PixelGetMagickColor(fill,&fill_pixel);
7859   wand->images->fuzz=fuzz;
7860   status=OpaquePaintImage(wand->images,&target_pixel,&fill_pixel,invert,
7861     wand->exception);
7862   return(status);
7863 }
7864 
7865 /*
7866 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7867 %                                                                             %
7868 %                                                                             %
7869 %                                                                             %
7870 %   M a g i c k O p t i m i z e I m a g e L a y e r s                         %
7871 %                                                                             %
7872 %                                                                             %
7873 %                                                                             %
7874 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7875 %
7876 %  MagickOptimizeImageLayers() compares each image the GIF disposed forms of the
7877 %  previous image in the sequence.  From this it attempts to select the
7878 %  smallest cropped image to replace each frame, while preserving the results
7879 %  of the animation.
7880 %
7881 %  The format of the MagickOptimizeImageLayers method is:
7882 %
7883 %      MagickWand *MagickOptimizeImageLayers(MagickWand *wand)
7884 %
7885 %  A description of each parameter follows:
7886 %
7887 %    o wand: the magick wand.
7888 %
7889 */
MagickOptimizeImageLayers(MagickWand * wand)7890 WandExport MagickWand *MagickOptimizeImageLayers(MagickWand *wand)
7891 {
7892   Image
7893     *optimize_image;
7894 
7895   assert(wand != (MagickWand *) NULL);
7896   assert(wand->signature == MagickWandSignature);
7897   if (wand->debug != MagickFalse)
7898     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7899   if (wand->images == (Image *) NULL)
7900     return((MagickWand *) NULL);
7901   optimize_image=OptimizeImageLayers(wand->images,wand->exception);
7902   if (optimize_image == (Image *) NULL)
7903     return((MagickWand *) NULL);
7904   return(CloneMagickWandFromImages(wand,optimize_image));
7905 }
7906 
7907 /*
7908 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7909 %                                                                             %
7910 %                                                                             %
7911 %                                                                             %
7912 %   M a g i c k O p t i m i z e I m a g e T r a n s p a r e n c y             %
7913 %                                                                             %
7914 %                                                                             %
7915 %                                                                             %
7916 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7917 %
7918 %  MagickOptimizeImageTransparency() takes a frame optimized GIF animation, and
7919 %  compares the overlayed pixels against the disposal image resulting from all
7920 %  the previous frames in the animation.  Any pixel that does not change the
7921 %  disposal image (and thus does not effect the outcome of an overlay) is made
7922 %  transparent.
7923 %
7924 %  WARNING: This modifies the current images directly, rather than generate
7925 %  a new image sequence.
7926 %  The format of the MagickOptimizeImageTransparency method is:
7927 %
7928 %      MagickBooleanType MagickOptimizeImageTransparency(MagickWand *wand)
7929 %
7930 %  A description of each parameter follows:
7931 %
7932 %    o wand: the magick wand.
7933 %
7934 */
MagickOptimizeImageTransparency(MagickWand * wand)7935 WandExport MagickBooleanType MagickOptimizeImageTransparency(MagickWand *wand)
7936 {
7937   assert(wand != (MagickWand *) NULL);
7938   assert(wand->signature == MagickWandSignature);
7939   if (wand->debug != MagickFalse)
7940     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
7941   if (wand->images == (Image *) NULL)
7942     return(MagickFalse);
7943   OptimizeImageTransparency(wand->images,wand->exception);
7944   return(MagickTrue);
7945 }
7946 
7947 /*
7948 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7949 %                                                                             %
7950 %                                                                             %
7951 %                                                                             %
7952 %     M a g i c k O r d e r e d D i t h e r I m a g e                         %
7953 %                                                                             %
7954 %                                                                             %
7955 %                                                                             %
7956 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7957 %
7958 %  MagickOrderedDitherImage() performs an ordered dither based on a number
7959 %  of pre-defined dithering threshold maps, but over multiple intensity levels,
7960 %  which can be different for different channels, according to the input
7961 %  arguments.
7962 %
7963 %  The format of the MagickOrderedDitherImage method is:
7964 %
7965 %      MagickBooleanType MagickOrderedDitherImage(MagickWand *wand,
7966 %        const char *threshold_map)
7967 %
7968 %  A description of each parameter follows:
7969 %
7970 %    o image: the image.
7971 %
7972 %    o threshold_map: A string containing the name of the threshold dither
7973 %      map to use, followed by zero or more numbers representing the number of
7974 %      color levels tho dither between.
7975 %
7976 %      Any level number less than 2 is equivalent to 2, and means only binary
7977 %      dithering will be applied to each color channel.
7978 %
7979 %      No numbers also means a 2 level (bitmap) dither will be applied to all
7980 %      channels, while a single number is the number of levels applied to each
7981 %      channel in sequence.  More numbers will be applied in turn to each of
7982 %      the color channels.
7983 %
7984 %      For example: "o3x3,6" generates a 6 level posterization of the image
7985 %      with a ordered 3x3 diffused pixel dither being applied between each
7986 %      level. While checker,8,8,4 will produce a 332 colormaped image with
7987 %      only a single checkerboard hash pattern (50% grey) between each color
7988 %      level, to basically double the number of color levels with a bare
7989 %      minimim of dithering.
7990 %
7991 */
MagickOrderedDitherImage(MagickWand * wand,const char * threshold_map)7992 WandExport MagickBooleanType MagickOrderedDitherImage(MagickWand *wand,
7993   const char *threshold_map)
7994 {
7995   MagickBooleanType
7996     status;
7997 
7998   assert(wand != (MagickWand *) NULL);
7999   assert(wand->signature == MagickWandSignature);
8000   if (wand->debug != MagickFalse)
8001     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8002   if (wand->images == (Image *) NULL)
8003     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8004   status=OrderedDitherImage(wand->images,threshold_map,wand->exception);
8005   return(status);
8006 }
8007 
8008 /*
8009 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8010 %                                                                             %
8011 %                                                                             %
8012 %                                                                             %
8013 %   M a g i c k P i n g I m a g e                                             %
8014 %                                                                             %
8015 %                                                                             %
8016 %                                                                             %
8017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8018 %
8019 %  MagickPingImage() is the same as MagickReadImage() except the only valid
8020 %  information returned is the image width, height, size, and format.  It
8021 %  is designed to efficiently obtain this information from a file without
8022 %  reading the entire image sequence into memory.
8023 %
8024 %  The format of the MagickPingImage method is:
8025 %
8026 %      MagickBooleanType MagickPingImage(MagickWand *wand,const char *filename)
8027 %
8028 %  A description of each parameter follows:
8029 %
8030 %    o wand: the magick wand.
8031 %
8032 %    o filename: the image filename.
8033 %
8034 */
MagickPingImage(MagickWand * wand,const char * filename)8035 WandExport MagickBooleanType MagickPingImage(MagickWand *wand,
8036   const char *filename)
8037 {
8038   Image
8039     *images;
8040 
8041   ImageInfo
8042     *ping_info;
8043 
8044   assert(wand != (MagickWand *) NULL);
8045   assert(wand->signature == MagickWandSignature);
8046   if (wand->debug != MagickFalse)
8047     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8048   ping_info=CloneImageInfo(wand->image_info);
8049   if (filename != (const char *) NULL)
8050     (void) CopyMagickString(ping_info->filename,filename,MagickPathExtent);
8051   images=PingImage(ping_info,wand->exception);
8052   ping_info=DestroyImageInfo(ping_info);
8053   if (images == (Image *) NULL)
8054     return(MagickFalse);
8055   return(InsertImageInWand(wand,images));
8056 }
8057 
8058 /*
8059 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8060 %                                                                             %
8061 %                                                                             %
8062 %                                                                             %
8063 %   M a g i c k P i n g I m a g e B l o b                                     %
8064 %                                                                             %
8065 %                                                                             %
8066 %                                                                             %
8067 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8068 %
8069 %  MagickPingImageBlob() pings an image or image sequence from a blob.
8070 %
8071 %  The format of the MagickPingImageBlob method is:
8072 %
8073 %      MagickBooleanType MagickPingImageBlob(MagickWand *wand,
8074 %        const void *blob,const size_t length)
8075 %
8076 %  A description of each parameter follows:
8077 %
8078 %    o wand: the magick wand.
8079 %
8080 %    o blob: the blob.
8081 %
8082 %    o length: the blob length.
8083 %
8084 */
MagickPingImageBlob(MagickWand * wand,const void * blob,const size_t length)8085 WandExport MagickBooleanType MagickPingImageBlob(MagickWand *wand,
8086   const void *blob,const size_t length)
8087 {
8088   Image
8089     *images;
8090 
8091   ImageInfo
8092     *read_info;
8093 
8094   assert(wand != (MagickWand *) NULL);
8095   assert(wand->signature == MagickWandSignature);
8096   if (wand->debug != MagickFalse)
8097     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8098   read_info=CloneImageInfo(wand->image_info);
8099   SetImageInfoBlob(read_info,blob,length);
8100   images=PingImage(read_info,wand->exception);
8101   read_info=DestroyImageInfo(read_info);
8102   if (images == (Image *) NULL)
8103     return(MagickFalse);
8104   return(InsertImageInWand(wand,images));
8105 }
8106 
8107 /*
8108 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8109 %                                                                             %
8110 %                                                                             %
8111 %                                                                             %
8112 %   M a g i c k P i n g I m a g e F i l e                                     %
8113 %                                                                             %
8114 %                                                                             %
8115 %                                                                             %
8116 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8117 %
8118 %  MagickPingImageFile() pings an image or image sequence from an open file
8119 %  descriptor.
8120 %
8121 %  The format of the MagickPingImageFile method is:
8122 %
8123 %      MagickBooleanType MagickPingImageFile(MagickWand *wand,FILE *file)
8124 %
8125 %  A description of each parameter follows:
8126 %
8127 %    o wand: the magick wand.
8128 %
8129 %    o file: the file descriptor.
8130 %
8131 */
MagickPingImageFile(MagickWand * wand,FILE * file)8132 WandExport MagickBooleanType MagickPingImageFile(MagickWand *wand,FILE *file)
8133 {
8134   Image
8135     *images;
8136 
8137   ImageInfo
8138     *read_info;
8139 
8140   assert(wand != (MagickWand *) NULL);
8141   assert(wand->signature == MagickWandSignature);
8142   assert(file != (FILE *) NULL);
8143   if (wand->debug != MagickFalse)
8144     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8145   read_info=CloneImageInfo(wand->image_info);
8146   SetImageInfoFile(read_info,file);
8147   images=PingImage(read_info,wand->exception);
8148   read_info=DestroyImageInfo(read_info);
8149   if (images == (Image *) NULL)
8150     return(MagickFalse);
8151   return(InsertImageInWand(wand,images));
8152 }
8153 
8154 /*
8155 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8156 %                                                                             %
8157 %                                                                             %
8158 %                                                                             %
8159 %   M a g i c k P o l a r o i d I m a g e                                     %
8160 %                                                                             %
8161 %                                                                             %
8162 %                                                                             %
8163 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8164 %
8165 %  MagickPolaroidImage() simulates a Polaroid picture.
8166 %
8167 %  The format of the MagickPolaroidImage method is:
8168 %
8169 %      MagickBooleanType MagickPolaroidImage(MagickWand *wand,
8170 %        const DrawingWand *drawing_wand,const char *caption,const double angle,
8171 %        const PixelInterpolateMethod method)
8172 %
8173 %  A description of each parameter follows:
8174 %
8175 %    o wand: the magick wand.
8176 %
8177 %    o drawing_wand: the draw wand.
8178 %
8179 %    o caption: the Polaroid caption.
8180 %
8181 %    o angle: Apply the effect along this angle.
8182 %
8183 %    o method: the pixel interpolation method.
8184 %
8185 */
MagickPolaroidImage(MagickWand * wand,const DrawingWand * drawing_wand,const char * caption,const double angle,const PixelInterpolateMethod method)8186 WandExport MagickBooleanType MagickPolaroidImage(MagickWand *wand,
8187   const DrawingWand *drawing_wand,const char *caption,const double angle,
8188   const PixelInterpolateMethod method)
8189 {
8190   DrawInfo
8191     *draw_info;
8192 
8193   Image
8194     *polaroid_image;
8195 
8196   assert(wand != (MagickWand *) NULL);
8197   assert(wand->signature == MagickWandSignature);
8198   if (wand->debug != MagickFalse)
8199     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8200   if (wand->images == (Image *) NULL)
8201     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8202   draw_info=PeekDrawingWand(drawing_wand);
8203   if (draw_info == (DrawInfo *) NULL)
8204     return(MagickFalse);
8205   polaroid_image=PolaroidImage(wand->images,draw_info,caption,angle,method,
8206     wand->exception);
8207   if (polaroid_image == (Image *) NULL)
8208     return(MagickFalse);
8209   ReplaceImageInList(&wand->images,polaroid_image);
8210   return(MagickTrue);
8211 }
8212 
8213 /*
8214 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8215 %                                                                             %
8216 %                                                                             %
8217 %                                                                             %
8218 %   M a g i c k P o l y n o m i a l I m a g e                                 %
8219 %                                                                             %
8220 %                                                                             %
8221 %                                                                             %
8222 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8223 %
8224 %  MagickPolynomialImage() returns an image where each pixel is the sum of the
8225 %  pixels in the image sequence after applying its corresponding terms
8226 %  (coefficient and degree pairs).
8227 %
8228 %  The format of the MagickPolynomialImage method is:
8229 %
8230 %      MagickBooleanType MagickPolynomialImage(MagickWand *wand,
8231 %        const size_t number_terms,const double *terms)
8232 %
8233 %  A description of each parameter follows:
8234 %
8235 %    o wand: the magick wand.
8236 %
8237 %    o number_terms: the number of terms in the list.  The actual list length
8238 %      is 2 x number_terms + 1 (the constant).
8239 %
8240 %    o terms: the list of polynomial coefficients and degree pairs and a
8241 %      constant.
8242 %
8243 */
MagickPolynomialImage(MagickWand * wand,const size_t number_terms,const double * terms)8244 WandExport MagickBooleanType MagickPolynomialImage(MagickWand *wand,
8245   const size_t number_terms,const double *terms)
8246 {
8247   Image
8248     *polynomial_image;
8249 
8250   assert(wand != (MagickWand *) NULL);
8251   assert(wand->signature == MagickWandSignature);
8252   if (wand->debug != MagickFalse)
8253     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8254   if (wand->images == (Image *) NULL)
8255     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8256   polynomial_image=PolynomialImage(wand->images,number_terms,terms,
8257     wand->exception);
8258   if (polynomial_image == (Image *) NULL)
8259     return(MagickFalse);
8260   ReplaceImageInList(&wand->images,polynomial_image);
8261   return(MagickTrue);
8262 }
8263 
8264 /*
8265 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8266 %                                                                             %
8267 %                                                                             %
8268 %                                                                             %
8269 %   M a g i c k P o s t e r i z e I m a g e                                   %
8270 %                                                                             %
8271 %                                                                             %
8272 %                                                                             %
8273 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8274 %
8275 %  MagickPosterizeImage() reduces the image to a limited number of color level.
8276 %
8277 %  The format of the MagickPosterizeImage method is:
8278 %
8279 %      MagickBooleanType MagickPosterizeImage(MagickWand *wand,
8280 %        const size_t levels,const DitherMethod method)
8281 %
8282 %  A description of each parameter follows:
8283 %
8284 %    o wand: the magick wand.
8285 %
8286 %    o levels: Number of color levels allowed in each channel.  Very low values
8287 %      (2, 3, or 4) have the most visible effect.
8288 %
8289 %    o method: choose the dither method: UndefinedDitherMethod,
8290 %      NoDitherMethod, RiemersmaDitherMethod, or FloydSteinbergDitherMethod.
8291 %
8292 */
MagickPosterizeImage(MagickWand * wand,const size_t levels,const DitherMethod dither)8293 WandExport MagickBooleanType MagickPosterizeImage(MagickWand *wand,
8294   const size_t levels,const DitherMethod dither)
8295 {
8296   MagickBooleanType
8297     status;
8298 
8299   assert(wand != (MagickWand *) NULL);
8300   assert(wand->signature == MagickWandSignature);
8301   if (wand->debug != MagickFalse)
8302     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8303   if (wand->images == (Image *) NULL)
8304     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8305   status=PosterizeImage(wand->images,levels,dither,wand->exception);
8306   return(status);
8307 }
8308 
8309 /*
8310 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8311 %                                                                             %
8312 %                                                                             %
8313 %                                                                             %
8314 %   M a g i c k P r e v i e w I m a g e s                                     %
8315 %                                                                             %
8316 %                                                                             %
8317 %                                                                             %
8318 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8319 %
8320 %  MagickPreviewImages() tiles 9 thumbnails of the specified image with an
8321 %  image processing operation applied at varying strengths.  This helpful
8322 %  to quickly pin-point an appropriate parameter for an image processing
8323 %  operation.
8324 %
8325 %  The format of the MagickPreviewImages method is:
8326 %
8327 %      MagickWand *MagickPreviewImages(MagickWand *wand,
8328 %        const PreviewType preview)
8329 %
8330 %  A description of each parameter follows:
8331 %
8332 %    o wand: the magick wand.
8333 %
8334 %    o preview: the preview type.
8335 %
8336 */
MagickPreviewImages(MagickWand * wand,const PreviewType preview)8337 WandExport MagickWand *MagickPreviewImages(MagickWand *wand,
8338   const PreviewType preview)
8339 {
8340   Image
8341     *preview_image;
8342 
8343   assert(wand != (MagickWand *) NULL);
8344   assert(wand->signature == MagickWandSignature);
8345   if (wand->debug != MagickFalse)
8346     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8347   if (wand->images == (Image *) NULL)
8348     return((MagickWand *) NULL);
8349   preview_image=PreviewImage(wand->images,preview,wand->exception);
8350   if (preview_image == (Image *) NULL)
8351     return((MagickWand *) NULL);
8352   return(CloneMagickWandFromImages(wand,preview_image));
8353 }
8354 
8355 /*
8356 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8357 %                                                                             %
8358 %                                                                             %
8359 %                                                                             %
8360 %   M a g i c k P r e v i o u s I m a g e                                     %
8361 %                                                                             %
8362 %                                                                             %
8363 %                                                                             %
8364 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8365 %
8366 %  MagickPreviousImage() sets the previous image in the wand as the current
8367 %  image.
8368 %
8369 %  It is typically used after MagickSetLastIterator(), after which its first
8370 %  use will set the last image as the current image (unless the wand is empty).
8371 %
8372 %  It will return MagickFalse when no more images are left to be returned
8373 %  which happens when the wand is empty, or the current image is the first
8374 %  image.  At that point the iterator is than reset to again process images in
8375 %  the forward direction, again starting with the first image in list. Images
8376 %  added at this point are prepended.
8377 %
8378 %  Also at that point any images added to the wand using MagickAddImages() or
8379 %  MagickReadImages() will be prepended before the first image. In this sense
8380 %  the condition is not quite exactly the same as MagickResetIterator().
8381 %
8382 %  The format of the MagickPreviousImage method is:
8383 %
8384 %      MagickBooleanType MagickPreviousImage(MagickWand *wand)
8385 %
8386 %  A description of each parameter follows:
8387 %
8388 %    o wand: the magick wand.
8389 %
8390 */
MagickPreviousImage(MagickWand * wand)8391 WandExport MagickBooleanType MagickPreviousImage(MagickWand *wand)
8392 {
8393   assert(wand != (MagickWand *) NULL);
8394   assert(wand->signature == MagickWandSignature);
8395   if (wand->debug != MagickFalse)
8396     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8397   if (wand->images == (Image *) NULL)
8398     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8399   if (wand->image_pending != MagickFalse)
8400     {
8401       wand->image_pending=MagickFalse;  /* image returned no longer pending */
8402       return(MagickTrue);
8403     }
8404   if (GetPreviousImageInList(wand->images) == (Image *) NULL)
8405     {
8406       wand->image_pending=MagickTrue;   /* Next now re-gets first image */
8407       wand->insert_before=MagickTrue;   /* insert/add prepends new images */
8408       return(MagickFalse);
8409     }
8410   wand->images=GetPreviousImageInList(wand->images);
8411   return(MagickTrue);
8412 }
8413 
8414 /*
8415 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8416 %                                                                             %
8417 %                                                                             %
8418 %                                                                             %
8419 %   M a g i c k Q u a n t i z e I m a g e                                     %
8420 %                                                                             %
8421 %                                                                             %
8422 %                                                                             %
8423 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8424 %
8425 %  MagickQuantizeImage() analyzes the colors within a reference image and
8426 %  chooses a fixed number of colors to represent the image.  The goal of the
8427 %  algorithm is to minimize the color difference between the input and output
8428 %  image while minimizing the processing time.
8429 %
8430 %  The format of the MagickQuantizeImage method is:
8431 %
8432 %      MagickBooleanType MagickQuantizeImage(MagickWand *wand,
8433 %        const size_t number_colors,const ColorspaceType colorspace,
8434 %        const size_t treedepth,const DitherMethod dither_method,
8435 %        const MagickBooleanType measure_error)
8436 %
8437 %  A description of each parameter follows:
8438 %
8439 %    o wand: the magick wand.
8440 %
8441 %    o number_colors: the number of colors.
8442 %
8443 %    o colorspace: Perform color reduction in this colorspace, typically
8444 %      RGBColorspace.
8445 %
8446 %    o treedepth: Normally, this integer value is zero or one.  A zero or
8447 %      one tells Quantize to choose a optimal tree depth of Log4(number_colors).%      A tree of this depth generally allows the best representation of the
8448 %      reference image with the least amount of memory and the fastest
8449 %      computational speed.  In some cases, such as an image with low color
8450 %      dispersion (a few number of colors), a value other than
8451 %      Log4(number_colors) is required.  To expand the color tree completely,
8452 %      use a value of 8.
8453 %
8454 %    o dither_method: choose from UndefinedDitherMethod, NoDitherMethod,
8455 %      RiemersmaDitherMethod, FloydSteinbergDitherMethod.
8456 %
8457 %    o measure_error: A value other than zero measures the difference between
8458 %      the original and quantized images.  This difference is the total
8459 %      quantization error.  The error is computed by summing over all pixels
8460 %      in an image the distance squared in RGB space between each reference
8461 %      pixel value and its quantized value.
8462 %
8463 */
MagickQuantizeImage(MagickWand * wand,const size_t number_colors,const ColorspaceType colorspace,const size_t treedepth,const DitherMethod dither_method,const MagickBooleanType measure_error)8464 WandExport MagickBooleanType MagickQuantizeImage(MagickWand *wand,
8465   const size_t number_colors,const ColorspaceType colorspace,
8466   const size_t treedepth,const DitherMethod dither_method,
8467   const MagickBooleanType measure_error)
8468 {
8469   MagickBooleanType
8470     status;
8471 
8472   QuantizeInfo
8473     *quantize_info;
8474 
8475   assert(wand != (MagickWand *) NULL);
8476   assert(wand->signature == MagickWandSignature);
8477   if (wand->debug != MagickFalse)
8478     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8479   if (wand->images == (Image *) NULL)
8480     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8481   quantize_info=CloneQuantizeInfo((QuantizeInfo *) NULL);
8482   quantize_info->number_colors=number_colors;
8483   quantize_info->dither_method=dither_method;
8484   quantize_info->tree_depth=treedepth;
8485   quantize_info->colorspace=colorspace;
8486   quantize_info->measure_error=measure_error;
8487   status=QuantizeImage(quantize_info,wand->images,wand->exception);
8488   quantize_info=DestroyQuantizeInfo(quantize_info);
8489   return(status);
8490 }
8491 
8492 /*
8493 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8494 %                                                                             %
8495 %                                                                             %
8496 %                                                                             %
8497 %   M a g i c k Q u a n t i z e I m a g e s                                   %
8498 %                                                                             %
8499 %                                                                             %
8500 %                                                                             %
8501 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8502 %
8503 %  MagickQuantizeImages() analyzes the colors within a sequence of images and
8504 %  chooses a fixed number of colors to represent the image.  The goal of the
8505 %  algorithm is to minimize the color difference between the input and output
8506 %  image while minimizing the processing time.
8507 %
8508 %  The format of the MagickQuantizeImages method is:
8509 %
8510 %      MagickBooleanType MagickQuantizeImages(MagickWand *wand,
8511 %        const size_t number_colors,const ColorspaceType colorspace,
8512 %        const size_t treedepth,const DitherMethod dither_method,
8513 %        const MagickBooleanType measure_error)
8514 %
8515 %  A description of each parameter follows:
8516 %
8517 %    o wand: the magick wand.
8518 %
8519 %    o number_colors: the number of colors.
8520 %
8521 %    o colorspace: Perform color reduction in this colorspace, typically
8522 %      RGBColorspace.
8523 %
8524 %    o treedepth: Normally, this integer value is zero or one.  A zero or
8525 %      one tells Quantize to choose a optimal tree depth of Log4(number_colors).%      A tree of this depth generally allows the best representation of the
8526 %      reference image with the least amount of memory and the fastest
8527 %      computational speed.  In some cases, such as an image with low color
8528 %      dispersion (a few number of colors), a value other than
8529 %      Log4(number_colors) is required.  To expand the color tree completely,
8530 %      use a value of 8.
8531 %
8532 %    o dither_method: choose from these dither methods: NoDitherMethod,
8533 %      RiemersmaDitherMethod, or FloydSteinbergDitherMethod.
8534 %
8535 %    o measure_error: A value other than zero measures the difference between
8536 %      the original and quantized images.  This difference is the total
8537 %      quantization error.  The error is computed by summing over all pixels
8538 %      in an image the distance squared in RGB space between each reference
8539 %      pixel value and its quantized value.
8540 %
8541 */
MagickQuantizeImages(MagickWand * wand,const size_t number_colors,const ColorspaceType colorspace,const size_t treedepth,const DitherMethod dither_method,const MagickBooleanType measure_error)8542 WandExport MagickBooleanType MagickQuantizeImages(MagickWand *wand,
8543   const size_t number_colors,const ColorspaceType colorspace,
8544   const size_t treedepth,const DitherMethod dither_method,
8545   const MagickBooleanType measure_error)
8546 {
8547   MagickBooleanType
8548     status;
8549 
8550   QuantizeInfo
8551     *quantize_info;
8552 
8553   assert(wand != (MagickWand *) NULL);
8554   assert(wand->signature == MagickWandSignature);
8555   if (wand->debug != MagickFalse)
8556     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8557   if (wand->images == (Image *) NULL)
8558     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8559   quantize_info=CloneQuantizeInfo((QuantizeInfo *) NULL);
8560   quantize_info->number_colors=number_colors;
8561   quantize_info->dither_method=dither_method;
8562   quantize_info->tree_depth=treedepth;
8563   quantize_info->colorspace=colorspace;
8564   quantize_info->measure_error=measure_error;
8565   status=QuantizeImages(quantize_info,wand->images,wand->exception);
8566   quantize_info=DestroyQuantizeInfo(quantize_info);
8567   return(status);
8568 }
8569 
8570 /*
8571 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8572 %                                                                             %
8573 %                                                                             %
8574 %                                                                             %
8575 %   M a g i c k R a n g e T h r e s h o l d I m a g e                         %
8576 %                                                                             %
8577 %                                                                             %
8578 %                                                                             %
8579 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8580 %
8581 %  MagickRangeThresholdImage() applies soft and hard thresholding.
8582 %
8583 %  The format of the RangeThresholdImage method is:
8584 %
8585 %      MagickBooleanType MagickRangeThresholdImage(MagickWand *wand,
8586 %        const double low_black,const double low_white,const double high_white,
8587 %        const double high_black)
8588 %
8589 %  A description of each parameter follows:
8590 %
8591 %    o wand: the magick wand.
8592 %
8593 %    o low_black: Define the minimum threshold value.
8594 %
8595 %    o low_white: Define the maximum threshold value.
8596 %
8597 %    o high_white: Define the minimum threshold value.
8598 %
8599 %    o low_white: Define the maximum threshold value.
8600 %
8601 */
MagickRangeThresholdImage(MagickWand * wand,const double low_black,const double low_white,const double high_white,const double high_black)8602 WandExport MagickBooleanType MagickRangeThresholdImage(MagickWand *wand,
8603   const double low_black,const double low_white,const double high_white,
8604   const double high_black)
8605 {
8606   MagickBooleanType
8607     status;
8608 
8609   assert(wand != (MagickWand *) NULL);
8610   assert(wand->signature == MagickWandSignature);
8611   if (wand->debug != MagickFalse)
8612     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8613   if (wand->images == (Image *) NULL)
8614     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8615   status=RangeThresholdImage(wand->images,low_black,low_white,
8616     high_white,high_black,wand->exception);
8617   return(status);
8618 }
8619 
8620 /*
8621 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8622 %                                                                             %
8623 %                                                                             %
8624 %                                                                             %
8625 %   M a g i c k R o t a t i o n a l B l u r I m a g e                         %
8626 %                                                                             %
8627 %                                                                             %
8628 %                                                                             %
8629 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8630 %
8631 %  MagickRotationalBlurImage() rotational blurs an image.
8632 %
8633 %  The format of the MagickRotationalBlurImage method is:
8634 %
8635 %      MagickBooleanType MagickRotationalBlurImage(MagickWand *wand,
8636 %        const double angle)
8637 %
8638 %  A description of each parameter follows:
8639 %
8640 %    o wand: the magick wand.
8641 %
8642 %    o angle: the angle of the blur in degrees.
8643 %
8644 */
MagickRotationalBlurImage(MagickWand * wand,const double angle)8645 WandExport MagickBooleanType MagickRotationalBlurImage(MagickWand *wand,
8646   const double angle)
8647 {
8648   Image
8649     *blur_image;
8650 
8651   assert(wand != (MagickWand *) NULL);
8652   assert(wand->signature == MagickWandSignature);
8653   if (wand->debug != MagickFalse)
8654     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8655   if (wand->images == (Image *) NULL)
8656     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8657   blur_image=RotationalBlurImage(wand->images,angle,wand->exception);
8658   if (blur_image == (Image *) NULL)
8659     return(MagickFalse);
8660   ReplaceImageInList(&wand->images,blur_image);
8661   return(MagickTrue);
8662 }
8663 
8664 /*
8665 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8666 %                                                                             %
8667 %                                                                             %
8668 %                                                                             %
8669 %   M a g i c k R a i s e I m a g e                                           %
8670 %                                                                             %
8671 %                                                                             %
8672 %                                                                             %
8673 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8674 %
8675 %  MagickRaiseImage() creates a simulated three-dimensional button-like effect
8676 %  by lightening and darkening the edges of the image.  Members width and
8677 %  height of raise_info define the width of the vertical and horizontal
8678 %  edge of the effect.
8679 %
8680 %  The format of the MagickRaiseImage method is:
8681 %
8682 %      MagickBooleanType MagickRaiseImage(MagickWand *wand,
8683 %        const size_t width,const size_t height,const ssize_t x,
8684 %        const ssize_t y,const MagickBooleanType raise)
8685 %
8686 %  A description of each parameter follows:
8687 %
8688 %    o wand: the magick wand.
8689 %
8690 %    o width,height,x,y:  Define the dimensions of the area to raise.
8691 %
8692 %    o raise: A value other than zero creates a 3-D raise effect,
8693 %      otherwise it has a lowered effect.
8694 %
8695 */
MagickRaiseImage(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y,const MagickBooleanType raise)8696 WandExport MagickBooleanType MagickRaiseImage(MagickWand *wand,
8697   const size_t width,const size_t height,const ssize_t x,
8698   const ssize_t y,const MagickBooleanType raise)
8699 {
8700   MagickBooleanType
8701     status;
8702 
8703   RectangleInfo
8704     raise_info;
8705 
8706   assert(wand != (MagickWand *) NULL);
8707   assert(wand->signature == MagickWandSignature);
8708   if (wand->debug != MagickFalse)
8709     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8710   if (wand->images == (Image *) NULL)
8711     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8712   raise_info.width=width;
8713   raise_info.height=height;
8714   raise_info.x=x;
8715   raise_info.y=y;
8716   status=RaiseImage(wand->images,&raise_info,raise,wand->exception);
8717   return(status);
8718 }
8719 
8720 /*
8721 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8722 %                                                                             %
8723 %                                                                             %
8724 %                                                                             %
8725 %   M a g i c k R a n d o m T h r e s h o l d I m a g e                       %
8726 %                                                                             %
8727 %                                                                             %
8728 %                                                                             %
8729 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8730 %
8731 %  MagickRandomThresholdImage() changes the value of individual pixels based on
8732 %  the intensity of each pixel compared to threshold.  The result is a
8733 %  high-contrast, two color image.
8734 %
8735 %  The format of the MagickRandomThresholdImage method is:
8736 %
8737 %      MagickBooleanType MagickRandomThresholdImage(MagickWand *wand,
8738 %        const double low,const double high)
8739 %
8740 %  A description of each parameter follows:
8741 %
8742 %    o wand: the magick wand.
8743 %
8744 %    o low,high: Specify the high and low thresholds. These values range from
8745 %      0 to QuantumRange.
8746 %
8747 */
MagickRandomThresholdImage(MagickWand * wand,const double low,const double high)8748 WandExport MagickBooleanType MagickRandomThresholdImage(MagickWand *wand,
8749   const double low,const double high)
8750 {
8751   assert(wand != (MagickWand *) NULL);
8752   assert(wand->signature == MagickWandSignature);
8753   if (wand->debug != MagickFalse)
8754     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8755   if (wand->images == (Image *) NULL)
8756     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8757   return(RandomThresholdImage(wand->images,low,high,wand->exception));
8758 }
8759 
8760 /*
8761 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8762 %                                                                             %
8763 %                                                                             %
8764 %                                                                             %
8765 %   M a g i c k R e a d I m a g e                                             %
8766 %                                                                             %
8767 %                                                                             %
8768 %                                                                             %
8769 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8770 %
8771 %  MagickReadImage() reads an image or image sequence.  The images are inserted
8772 %  jjust before the current image pointer position.
8773 %
8774 %  Use MagickSetFirstIterator(), to insert new images before all the current
8775 %  images in the wand, MagickSetLastIterator() to append add to the end,
8776 %  MagickSetIteratorIndex() to place images just after the given index.
8777 %
8778 %  The format of the MagickReadImage method is:
8779 %
8780 %      MagickBooleanType MagickReadImage(MagickWand *wand,const char *filename)
8781 %
8782 %  A description of each parameter follows:
8783 %
8784 %    o wand: the magick wand.
8785 %
8786 %    o filename: the image filename.
8787 %
8788 */
MagickReadImage(MagickWand * wand,const char * filename)8789 WandExport MagickBooleanType MagickReadImage(MagickWand *wand,
8790   const char *filename)
8791 {
8792   Image
8793     *images;
8794 
8795   ImageInfo
8796     *read_info;
8797 
8798   assert(wand != (MagickWand *) NULL);
8799   assert(wand->signature == MagickWandSignature);
8800   if (wand->debug != MagickFalse)
8801     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8802   read_info=CloneImageInfo(wand->image_info);
8803   if (filename != (const char *) NULL)
8804     (void) CopyMagickString(read_info->filename,filename,MagickPathExtent);
8805   images=ReadImage(read_info,wand->exception);
8806   read_info=DestroyImageInfo(read_info);
8807   if (images == (Image *) NULL)
8808     return(MagickFalse);
8809   return(InsertImageInWand(wand,images));
8810 }
8811 
8812 /*
8813 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8814 %                                                                             %
8815 %                                                                             %
8816 %                                                                             %
8817 %   M a g i c k R e a d I m a g e B l o b                                     %
8818 %                                                                             %
8819 %                                                                             %
8820 %                                                                             %
8821 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8822 %
8823 %  MagickReadImageBlob() reads an image or image sequence from a blob.
8824 %  In all other respects it is like MagickReadImage().
8825 %
8826 %  The format of the MagickReadImageBlob method is:
8827 %
8828 %      MagickBooleanType MagickReadImageBlob(MagickWand *wand,
8829 %        const void *blob,const size_t length)
8830 %
8831 %  A description of each parameter follows:
8832 %
8833 %    o wand: the magick wand.
8834 %
8835 %    o blob: the blob.
8836 %
8837 %    o length: the blob length.
8838 %
8839 */
MagickReadImageBlob(MagickWand * wand,const void * blob,const size_t length)8840 WandExport MagickBooleanType MagickReadImageBlob(MagickWand *wand,
8841   const void *blob,const size_t length)
8842 {
8843   Image
8844     *images;
8845 
8846   assert(wand != (MagickWand *) NULL);
8847   assert(wand->signature == MagickWandSignature);
8848   if (wand->debug != MagickFalse)
8849     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8850   images=BlobToImage(wand->image_info,blob,length,wand->exception);
8851   if (images == (Image *) NULL)
8852     return(MagickFalse);
8853   return(InsertImageInWand(wand,images));
8854 }
8855 
8856 /*
8857 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8858 %                                                                             %
8859 %                                                                             %
8860 %                                                                             %
8861 %   M a g i c k R e a d I m a g e F i l e                                     %
8862 %                                                                             %
8863 %                                                                             %
8864 %                                                                             %
8865 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8866 %
8867 %  MagickReadImageFile() reads an image or image sequence from an already
8868 %  opened file descriptor.  Otherwise it is like MagickReadImage().
8869 %
8870 %  The format of the MagickReadImageFile method is:
8871 %
8872 %      MagickBooleanType MagickReadImageFile(MagickWand *wand,FILE *file)
8873 %
8874 %  A description of each parameter follows:
8875 %
8876 %    o wand: the magick wand.
8877 %
8878 %    o file: the file descriptor.
8879 %
8880 */
MagickReadImageFile(MagickWand * wand,FILE * file)8881 WandExport MagickBooleanType MagickReadImageFile(MagickWand *wand,FILE *file)
8882 {
8883   Image
8884     *images;
8885 
8886   ImageInfo
8887     *read_info;
8888 
8889   assert(wand != (MagickWand *) NULL);
8890   assert(wand->signature == MagickWandSignature);
8891   assert(file != (FILE *) NULL);
8892   if (wand->debug != MagickFalse)
8893     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8894   read_info=CloneImageInfo(wand->image_info);
8895   SetImageInfoFile(read_info,file);
8896   images=ReadImage(read_info,wand->exception);
8897   read_info=DestroyImageInfo(read_info);
8898   if (images == (Image *) NULL)
8899     return(MagickFalse);
8900   return(InsertImageInWand(wand,images));
8901 }
8902 
8903 /*
8904 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8905 %                                                                             %
8906 %                                                                             %
8907 %                                                                             %
8908 %   M a g i c k R e m a p I m a g e                                           %
8909 %                                                                             %
8910 %                                                                             %
8911 %                                                                             %
8912 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8913 %
8914 %  MagickRemapImage() replaces the colors of an image with the closest color
8915 %  from a reference image.
8916 %
8917 %  The format of the MagickRemapImage method is:
8918 %
8919 %      MagickBooleanType MagickRemapImage(MagickWand *wand,
8920 %        const MagickWand *remap_wand,const DitherMethod method)
8921 %
8922 %  A description of each parameter follows:
8923 %
8924 %    o wand: the magick wand.
8925 %
8926 %    o affinity: the affinity wand.
8927 %
8928 %    o method: choose from these dither methods: NoDitherMethod,
8929 %      RiemersmaDitherMethod, or FloydSteinbergDitherMethod.
8930 %
8931 */
MagickRemapImage(MagickWand * wand,const MagickWand * remap_wand,const DitherMethod dither_method)8932 WandExport MagickBooleanType MagickRemapImage(MagickWand *wand,
8933   const MagickWand *remap_wand,const DitherMethod dither_method)
8934 {
8935   MagickBooleanType
8936     status;
8937 
8938   QuantizeInfo
8939     *quantize_info;
8940 
8941   assert(wand != (MagickWand *) NULL);
8942   assert(wand->signature == MagickWandSignature);
8943   if (wand->debug != MagickFalse)
8944     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8945   if ((wand->images == (Image *) NULL) ||
8946       (remap_wand->images == (Image *) NULL))
8947     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8948   quantize_info=AcquireQuantizeInfo(wand->image_info);
8949   quantize_info->dither_method=dither_method;
8950   status=RemapImage(quantize_info,wand->images,remap_wand->images,
8951     wand->exception);
8952   quantize_info=DestroyQuantizeInfo(quantize_info);
8953   return(status);
8954 }
8955 
8956 /*
8957 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8958 %                                                                             %
8959 %                                                                             %
8960 %                                                                             %
8961 %   M a g i c k R e m o v e I m a g e                                         %
8962 %                                                                             %
8963 %                                                                             %
8964 %                                                                             %
8965 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8966 %
8967 %  MagickRemoveImage() removes an image from the image list.
8968 %
8969 %  The format of the MagickRemoveImage method is:
8970 %
8971 %      MagickBooleanType MagickRemoveImage(MagickWand *wand)
8972 %
8973 %  A description of each parameter follows:
8974 %
8975 %    o wand: the magick wand.
8976 %
8977 %    o insert: the splice wand.
8978 %
8979 */
MagickRemoveImage(MagickWand * wand)8980 WandExport MagickBooleanType MagickRemoveImage(MagickWand *wand)
8981 {
8982   assert(wand != (MagickWand *) NULL);
8983   assert(wand->signature == MagickWandSignature);
8984   if (wand->debug != MagickFalse)
8985     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
8986   if (wand->images == (Image *) NULL)
8987     ThrowWandException(WandError,"ContainsNoImages",wand->name);
8988   DeleteImageFromList(&wand->images);
8989   return(MagickTrue);
8990 }
8991 
8992 /*
8993 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8994 %                                                                             %
8995 %                                                                             %
8996 %                                                                             %
8997 %   M a g i c k R e s a m p l e I m a g e                                     %
8998 %                                                                             %
8999 %                                                                             %
9000 %                                                                             %
9001 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9002 %
9003 %  MagickResampleImage() resample image to desired resolution.
9004 %
9005 %    Bessel   Blackman   Box
9006 %    Catrom   Cubic      Gaussian
9007 %    Hanning  Hermite    Lanczos
9008 %    Mitchell Point      Quandratic
9009 %    Sinc     Triangle
9010 %
9011 %  Most of the filters are FIR (finite impulse response), however, Bessel,
9012 %  Gaussian, and Sinc are IIR (infinite impulse response).  Bessel and Sinc
9013 %  are windowed (brought down to zero) with the Blackman filter.
9014 %
9015 %  The format of the MagickResampleImage method is:
9016 %
9017 %      MagickBooleanType MagickResampleImage(MagickWand *wand,
9018 %        const double x_resolution,const double y_resolution,
9019 %        const FilterType filter)
9020 %
9021 %  A description of each parameter follows:
9022 %
9023 %    o wand: the magick wand.
9024 %
9025 %    o x_resolution: the new image x resolution.
9026 %
9027 %    o y_resolution: the new image y resolution.
9028 %
9029 %    o filter: Image filter to use.
9030 %
9031 */
MagickResampleImage(MagickWand * wand,const double x_resolution,const double y_resolution,const FilterType filter)9032 WandExport MagickBooleanType MagickResampleImage(MagickWand *wand,
9033   const double x_resolution,const double y_resolution,const FilterType filter)
9034 {
9035   Image
9036     *resample_image;
9037 
9038   assert(wand != (MagickWand *) NULL);
9039   assert(wand->signature == MagickWandSignature);
9040   if (wand->debug != MagickFalse)
9041     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9042   if (wand->images == (Image *) NULL)
9043     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9044   resample_image=ResampleImage(wand->images,x_resolution,y_resolution,filter,
9045     wand->exception);
9046   if (resample_image == (Image *) NULL)
9047     return(MagickFalse);
9048   ReplaceImageInList(&wand->images,resample_image);
9049   return(MagickTrue);
9050 }
9051 
9052 /*
9053 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9054 %                                                                             %
9055 %                                                                             %
9056 %                                                                             %
9057 %   M a g i c k R e s e t I m a g e P a g e                                   %
9058 %                                                                             %
9059 %                                                                             %
9060 %                                                                             %
9061 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9062 %
9063 %  MagickResetImagePage() resets the Wand page canvas and position.
9064 %
9065 %  The format of the MagickResetImagePage method is:
9066 %
9067 %      MagickBooleanType MagickResetImagePage(MagickWand *wand,
9068 %        const char *page)
9069 %
9070 %  A description of each parameter follows:
9071 %
9072 %    o wand: the magick wand.
9073 %
9074 %    o page: the relative page specification.
9075 %
9076 */
MagickResetImagePage(MagickWand * wand,const char * page)9077 WandExport MagickBooleanType MagickResetImagePage(MagickWand *wand,
9078   const char *page)
9079 {
9080   assert(wand != (MagickWand *) NULL);
9081   assert(wand->signature == MagickWandSignature);
9082   if (wand->debug != MagickFalse)
9083     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9084   if (wand->images == (Image *) NULL)
9085     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9086   if ((page == (char *) NULL) || (*page == '\0'))
9087     {
9088       (void) ParseAbsoluteGeometry("0x0+0+0",&wand->images->page);
9089       return(MagickTrue);
9090     }
9091   return(ResetImagePage(wand->images,page));
9092 }
9093 
9094 /*
9095 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9096 %                                                                             %
9097 %                                                                             %
9098 %                                                                             %
9099 %   M a g i c k R e s i z e I m a g e                                         %
9100 %                                                                             %
9101 %                                                                             %
9102 %                                                                             %
9103 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9104 %
9105 %  MagickResizeImage() scales an image to the desired dimensions with one of
9106 %  these filters:
9107 %
9108 %    Bessel   Blackman   Box
9109 %    Catrom   Cubic      Gaussian
9110 %    Hanning  Hermite    Lanczos
9111 %    Mitchell Point      Quandratic
9112 %    Sinc     Triangle
9113 %
9114 %  Most of the filters are FIR (finite impulse response), however, Bessel,
9115 %  Gaussian, and Sinc are IIR (infinite impulse response).  Bessel and Sinc
9116 %  are windowed (brought down to zero) with the Blackman filter.
9117 %
9118 %  The format of the MagickResizeImage method is:
9119 %
9120 %      MagickBooleanType MagickResizeImage(MagickWand *wand,
9121 %        const size_t columns,const size_t rows,const FilterType filter)
9122 %
9123 %  A description of each parameter follows:
9124 %
9125 %    o wand: the magick wand.
9126 %
9127 %    o columns: the number of columns in the scaled image.
9128 %
9129 %    o rows: the number of rows in the scaled image.
9130 %
9131 %    o filter: Image filter to use.
9132 %
9133 */
MagickResizeImage(MagickWand * wand,const size_t columns,const size_t rows,const FilterType filter)9134 WandExport MagickBooleanType MagickResizeImage(MagickWand *wand,
9135   const size_t columns,const size_t rows,const FilterType filter)
9136 {
9137   Image
9138     *resize_image;
9139 
9140   assert(wand != (MagickWand *) NULL);
9141   assert(wand->signature == MagickWandSignature);
9142   if (wand->debug != MagickFalse)
9143     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9144   if (wand->images == (Image *) NULL)
9145     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9146   resize_image=ResizeImage(wand->images,columns,rows,filter,wand->exception);
9147   if (resize_image == (Image *) NULL)
9148     return(MagickFalse);
9149   ReplaceImageInList(&wand->images,resize_image);
9150   return(MagickTrue);
9151 }
9152 
9153 /*
9154 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9155 %                                                                             %
9156 %                                                                             %
9157 %                                                                             %
9158 %   M a g i c k R o l l I m a g e                                             %
9159 %                                                                             %
9160 %                                                                             %
9161 %                                                                             %
9162 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9163 %
9164 %  MagickRollImage() offsets an image as defined by x and y.
9165 %
9166 %  The format of the MagickRollImage method is:
9167 %
9168 %      MagickBooleanType MagickRollImage(MagickWand *wand,const ssize_t x,
9169 %        const size_t y)
9170 %
9171 %  A description of each parameter follows:
9172 %
9173 %    o wand: the magick wand.
9174 %
9175 %    o x: the x offset.
9176 %
9177 %    o y: the y offset.
9178 %
9179 %
9180 */
MagickRollImage(MagickWand * wand,const ssize_t x,const ssize_t y)9181 WandExport MagickBooleanType MagickRollImage(MagickWand *wand,
9182   const ssize_t x,const ssize_t y)
9183 {
9184   Image
9185     *roll_image;
9186 
9187   assert(wand != (MagickWand *) NULL);
9188   assert(wand->signature == MagickWandSignature);
9189   if (wand->debug != MagickFalse)
9190     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9191   if (wand->images == (Image *) NULL)
9192     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9193   roll_image=RollImage(wand->images,x,y,wand->exception);
9194   if (roll_image == (Image *) NULL)
9195     return(MagickFalse);
9196   ReplaceImageInList(&wand->images,roll_image);
9197   return(MagickTrue);
9198 }
9199 
9200 /*
9201 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9202 %                                                                             %
9203 %                                                                             %
9204 %                                                                             %
9205 %   M a g i c k R o t a t e I m a g e                                         %
9206 %                                                                             %
9207 %                                                                             %
9208 %                                                                             %
9209 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9210 %
9211 %  MagickRotateImage() rotates an image the specified number of degrees. Empty
9212 %  triangles left over from rotating the image are filled with the
9213 %  background color.
9214 %
9215 %  The format of the MagickRotateImage method is:
9216 %
9217 %      MagickBooleanType MagickRotateImage(MagickWand *wand,
9218 %        const PixelWand *background,const double degrees)
9219 %
9220 %  A description of each parameter follows:
9221 %
9222 %    o wand: the magick wand.
9223 %
9224 %    o background: the background pixel wand.
9225 %
9226 %    o degrees: the number of degrees to rotate the image.
9227 %
9228 %
9229 */
MagickRotateImage(MagickWand * wand,const PixelWand * background,const double degrees)9230 WandExport MagickBooleanType MagickRotateImage(MagickWand *wand,
9231   const PixelWand *background,const double degrees)
9232 {
9233   Image
9234     *rotate_image;
9235 
9236   assert(wand != (MagickWand *) NULL);
9237   assert(wand->signature == MagickWandSignature);
9238   if (wand->debug != MagickFalse)
9239     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9240   if (wand->images == (Image *) NULL)
9241     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9242   PixelGetQuantumPacket(background,&wand->images->background_color);
9243   rotate_image=RotateImage(wand->images,degrees,wand->exception);
9244   if (rotate_image == (Image *) NULL)
9245     return(MagickFalse);
9246   ReplaceImageInList(&wand->images,rotate_image);
9247   return(MagickTrue);
9248 }
9249 
9250 /*
9251 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9252 %                                                                             %
9253 %                                                                             %
9254 %                                                                             %
9255 %   M a g i c k S a m p l e I m a g e                                         %
9256 %                                                                             %
9257 %                                                                             %
9258 %                                                                             %
9259 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9260 %
9261 %  MagickSampleImage() scales an image to the desired dimensions with pixel
9262 %  sampling.  Unlike other scaling methods, this method does not introduce
9263 %  any additional color into the scaled image.
9264 %
9265 %  The format of the MagickSampleImage method is:
9266 %
9267 %      MagickBooleanType MagickSampleImage(MagickWand *wand,
9268 %        const size_t columns,const size_t rows)
9269 %
9270 %  A description of each parameter follows:
9271 %
9272 %    o wand: the magick wand.
9273 %
9274 %    o columns: the number of columns in the scaled image.
9275 %
9276 %    o rows: the number of rows in the scaled image.
9277 %
9278 %
9279 */
MagickSampleImage(MagickWand * wand,const size_t columns,const size_t rows)9280 WandExport MagickBooleanType MagickSampleImage(MagickWand *wand,
9281   const size_t columns,const size_t rows)
9282 {
9283   Image
9284     *sample_image;
9285 
9286   assert(wand != (MagickWand *) NULL);
9287   assert(wand->signature == MagickWandSignature);
9288   if (wand->debug != MagickFalse)
9289     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9290   if (wand->images == (Image *) NULL)
9291     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9292   sample_image=SampleImage(wand->images,columns,rows,wand->exception);
9293   if (sample_image == (Image *) NULL)
9294     return(MagickFalse);
9295   ReplaceImageInList(&wand->images,sample_image);
9296   return(MagickTrue);
9297 }
9298 
9299 /*
9300 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9301 %                                                                             %
9302 %                                                                             %
9303 %                                                                             %
9304 %   M a g i c k S c a l e I m a g e                                           %
9305 %                                                                             %
9306 %                                                                             %
9307 %                                                                             %
9308 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9309 %
9310 %  MagickScaleImage() scales the size of an image to the given dimensions.
9311 %
9312 %  The format of the MagickScaleImage method is:
9313 %
9314 %      MagickBooleanType MagickScaleImage(MagickWand *wand,
9315 %        const size_t columns,const size_t rows)
9316 %
9317 %  A description of each parameter follows:
9318 %
9319 %    o wand: the magick wand.
9320 %
9321 %    o columns: the number of columns in the scaled image.
9322 %
9323 %    o rows: the number of rows in the scaled image.
9324 %
9325 %
9326 */
MagickScaleImage(MagickWand * wand,const size_t columns,const size_t rows)9327 WandExport MagickBooleanType MagickScaleImage(MagickWand *wand,
9328   const size_t columns,const size_t rows)
9329 {
9330   Image
9331     *scale_image;
9332 
9333   assert(wand != (MagickWand *) NULL);
9334   assert(wand->signature == MagickWandSignature);
9335   if (wand->debug != MagickFalse)
9336     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9337   if (wand->images == (Image *) NULL)
9338     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9339   scale_image=ScaleImage(wand->images,columns,rows,wand->exception);
9340   if (scale_image == (Image *) NULL)
9341     return(MagickFalse);
9342   ReplaceImageInList(&wand->images,scale_image);
9343   return(MagickTrue);
9344 }
9345 
9346 /*
9347 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9348 %                                                                             %
9349 %                                                                             %
9350 %                                                                             %
9351 %   M a g i c k S e g m e n t I m a g e                                       %
9352 %                                                                             %
9353 %                                                                             %
9354 %                                                                             %
9355 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9356 %
9357 %  MagickSegmentImage() segments an image by analyzing the histograms of the
9358 %  color components and identifying units that are homogeneous with the fuzzy
9359 %  C-means technique.
9360 %
9361 %  The format of the SegmentImage method is:
9362 %
9363 %      MagickBooleanType MagickSegmentImage(MagickWand *wand,
9364 %        const ColorspaceType colorspace,const MagickBooleanType verbose,
9365 %        const double cluster_threshold,const double smooth_threshold)
9366 %
9367 %  A description of each parameter follows.
9368 %
9369 %    o wand: the wand.
9370 %
9371 %    o colorspace: the image colorspace.
9372 %
9373 %    o verbose:  Set to MagickTrue to print detailed information about the
9374 %      identified classes.
9375 %
9376 %    o cluster_threshold:  This represents the minimum number of pixels
9377 %      contained in a hexahedra before it can be considered valid (expressed as
9378 %      a percentage).
9379 %
9380 %    o smooth_threshold: the smoothing threshold eliminates noise in the second
9381 %      derivative of the histogram.  As the value is increased, you can expect a
9382 %      smoother second derivative.
9383 %
9384 */
MagickSegmentImage(MagickWand * wand,const ColorspaceType colorspace,const MagickBooleanType verbose,const double cluster_threshold,const double smooth_threshold)9385 MagickExport MagickBooleanType MagickSegmentImage(MagickWand *wand,
9386   const ColorspaceType colorspace,const MagickBooleanType verbose,
9387   const double cluster_threshold,const double smooth_threshold)
9388 {
9389   MagickBooleanType
9390     status;
9391 
9392   assert(wand != (MagickWand *) NULL);
9393   assert(wand->signature == MagickWandSignature);
9394   if (wand->debug != MagickFalse)
9395     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9396   if (wand->images == (Image *) NULL)
9397     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9398   status=SegmentImage(wand->images,colorspace,verbose,cluster_threshold,
9399     smooth_threshold,wand->exception);
9400   return(status);
9401 }
9402 
9403 /*
9404 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9405 %                                                                             %
9406 %                                                                             %
9407 %                                                                             %
9408 %   M a g i c k S e l e c t i v e B l u r I m a g e                           %
9409 %                                                                             %
9410 %                                                                             %
9411 %                                                                             %
9412 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9413 %
9414 %  MagickSelectiveBlurImage() selectively blur an image within a contrast
9415 %  threshold. It is similar to the unsharpen mask that sharpens everything with
9416 %  contrast above a certain threshold.
9417 %
9418 %  The format of the MagickSelectiveBlurImage method is:
9419 %
9420 %      MagickBooleanType MagickSelectiveBlurImage(MagickWand *wand,
9421 %        const double radius,const double sigma,const double threshold)
9422 %
9423 %  A description of each parameter follows:
9424 %
9425 %    o wand: the magick wand.
9426 %
9427 %    o radius: the radius of the gaussian, in pixels, not counting the center
9428 %      pixel.
9429 %
9430 %    o sigma: the standard deviation of the gaussian, in pixels.
9431 %
9432 %    o threshold: only pixels within this contrast threshold are included
9433 %      in the blur operation.
9434 %
9435 */
MagickSelectiveBlurImage(MagickWand * wand,const double radius,const double sigma,const double threshold)9436 WandExport MagickBooleanType MagickSelectiveBlurImage(MagickWand *wand,
9437   const double radius,const double sigma,const double threshold)
9438 {
9439   Image
9440     *blur_image;
9441 
9442   assert(wand != (MagickWand *) NULL);
9443   assert(wand->signature == MagickWandSignature);
9444   if (wand->debug != MagickFalse)
9445     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9446   if (wand->images == (Image *) NULL)
9447     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9448   blur_image=SelectiveBlurImage(wand->images,radius,sigma,threshold,
9449     wand->exception);
9450   if (blur_image == (Image *) NULL)
9451     return(MagickFalse);
9452   ReplaceImageInList(&wand->images,blur_image);
9453   return(MagickTrue);
9454 }
9455 
9456 /*
9457 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9458 %                                                                             %
9459 %                                                                             %
9460 %                                                                             %
9461 %   M a g i c k S e p a r a t e I m a g e C h a n n e l                       %
9462 %                                                                             %
9463 %                                                                             %
9464 %                                                                             %
9465 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9466 %
9467 %  MagickSeparateImage() separates a channel from the image and returns a
9468 %  grayscale image.  A channel is a particular color component of each pixel
9469 %  in the image.
9470 %
9471 %  The format of the MagickSeparateImage method is:
9472 %
9473 %      MagickBooleanType MagickSeparateImage(MagickWand *wand,
9474 %        const ChannelType channel)
9475 %
9476 %  A description of each parameter follows:
9477 %
9478 %    o wand: the magick wand.
9479 %
9480 %    o channel: the channel.
9481 %
9482 */
MagickSeparateImage(MagickWand * wand,const ChannelType channel)9483 WandExport MagickBooleanType MagickSeparateImage(MagickWand *wand,
9484   const ChannelType channel)
9485 {
9486   Image
9487     *separate_image;
9488 
9489   assert(wand != (MagickWand *) NULL);
9490   assert(wand->signature == MagickWandSignature);
9491   if (wand->debug != MagickFalse)
9492     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9493   if (wand->images == (Image *) NULL)
9494     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9495   separate_image=SeparateImage(wand->images,channel,wand->exception);
9496   if (separate_image == (Image *) NULL)
9497     return(MagickFalse);
9498   ReplaceImageInList(&wand->images,separate_image);
9499   return(MagickTrue);
9500 }
9501 
9502 /*
9503 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9504 %                                                                             %
9505 %                                                                             %
9506 %                                                                             %
9507 %     M a g i c k S e p i a T o n e I m a g e                                 %
9508 %                                                                             %
9509 %                                                                             %
9510 %                                                                             %
9511 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9512 %
9513 %  MagickSepiaToneImage() applies a special effect to the image, similar to the
9514 %  effect achieved in a photo darkroom by sepia toning.  Threshold ranges from
9515 %  0 to QuantumRange and is a measure of the extent of the sepia toning.  A
9516 %  threshold of 80% is a good starting point for a reasonable tone.
9517 %
9518 %  The format of the MagickSepiaToneImage method is:
9519 %
9520 %      MagickBooleanType MagickSepiaToneImage(MagickWand *wand,
9521 %        const double threshold)
9522 %
9523 %  A description of each parameter follows:
9524 %
9525 %    o wand: the magick wand.
9526 %
9527 %    o threshold:  Define the extent of the sepia toning.
9528 %
9529 */
MagickSepiaToneImage(MagickWand * wand,const double threshold)9530 WandExport MagickBooleanType MagickSepiaToneImage(MagickWand *wand,
9531   const double threshold)
9532 {
9533   Image
9534     *sepia_image;
9535 
9536   assert(wand != (MagickWand *) NULL);
9537   assert(wand->signature == MagickWandSignature);
9538   if (wand->debug != MagickFalse)
9539     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9540   if (wand->images == (Image *) NULL)
9541     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9542   sepia_image=SepiaToneImage(wand->images,threshold,wand->exception);
9543   if (sepia_image == (Image *) NULL)
9544     return(MagickFalse);
9545   ReplaceImageInList(&wand->images,sepia_image);
9546   return(MagickTrue);
9547 }
9548 
9549 /*
9550 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9551 %                                                                             %
9552 %                                                                             %
9553 %                                                                             %
9554 %   M a g i c k S e t I m a g e                                               %
9555 %                                                                             %
9556 %                                                                             %
9557 %                                                                             %
9558 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9559 %
9560 %  MagickSetImage() replaces the last image returned by MagickSetIteratorIndex(),
9561 %  MagickNextImage(), MagickPreviousImage() with the images from the specified
9562 %  wand.
9563 %
9564 %  The format of the MagickSetImage method is:
9565 %
9566 %      MagickBooleanType MagickSetImage(MagickWand *wand,
9567 %        const MagickWand *set_wand)
9568 %
9569 %  A description of each parameter follows:
9570 %
9571 %    o wand: the magick wand.
9572 %
9573 %    o set_wand: the set_wand wand.
9574 %
9575 */
MagickSetImage(MagickWand * wand,const MagickWand * set_wand)9576 WandExport MagickBooleanType MagickSetImage(MagickWand *wand,
9577   const MagickWand *set_wand)
9578 {
9579   Image
9580     *images;
9581 
9582   assert(wand != (MagickWand *) NULL);
9583   assert(wand->signature == MagickWandSignature);
9584   if (wand->debug != MagickFalse)
9585     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9586   assert(set_wand != (MagickWand *) NULL);
9587   assert(set_wand->signature == MagickWandSignature);
9588   if (wand->debug != MagickFalse)
9589     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",set_wand->name);
9590   if (set_wand->images == (Image *) NULL)
9591     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9592   images=CloneImageList(set_wand->images,wand->exception);
9593   if (images == (Image *) NULL)
9594     return(MagickFalse);
9595   ReplaceImageInList(&wand->images,images);
9596   return(MagickTrue);
9597 }
9598 
9599 /*
9600 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9601 %                                                                             %
9602 %                                                                             %
9603 %                                                                             %
9604 %   M a g i c k S e t I m a g e A l p h a C h a n n e l                       %
9605 %                                                                             %
9606 %                                                                             %
9607 %                                                                             %
9608 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9609 %
9610 %  MagickSetImageAlphaChannel() activates, deactivates, resets, or sets the
9611 %  alpha channel.
9612 %
9613 %  The format of the MagickSetImageAlphaChannel method is:
9614 %
9615 %      MagickBooleanType MagickSetImageAlphaChannel(MagickWand *wand,
9616 %        const AlphaChannelOption alpha_type)
9617 %
9618 %  A description of each parameter follows:
9619 %
9620 %    o wand: the magick wand.
9621 %
9622 %    o alpha_type: the alpha channel type: ActivateAlphaChannel,
9623 %      DeactivateAlphaChannel, OpaqueAlphaChannel, or SetAlphaChannel.
9624 %
9625 */
MagickSetImageAlphaChannel(MagickWand * wand,const AlphaChannelOption alpha_type)9626 WandExport MagickBooleanType MagickSetImageAlphaChannel(MagickWand *wand,
9627   const AlphaChannelOption alpha_type)
9628 {
9629   assert(wand != (MagickWand *) NULL);
9630   assert(wand->signature == MagickWandSignature);
9631   if (wand->debug != MagickFalse)
9632     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9633   if (wand->images == (Image *) NULL)
9634     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9635   return(SetImageAlphaChannel(wand->images,alpha_type,wand->exception));
9636 }
9637 
9638 /*
9639 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9640 %                                                                             %
9641 %                                                                             %
9642 %                                                                             %
9643 %   M a g i c k S e t I m a g e B a c k g r o u n d C o l o r                 %
9644 %                                                                             %
9645 %                                                                             %
9646 %                                                                             %
9647 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9648 %
9649 %  MagickSetImageBackgroundColor() sets the image background color.
9650 %
9651 %  The format of the MagickSetImageBackgroundColor method is:
9652 %
9653 %      MagickBooleanType MagickSetImageBackgroundColor(MagickWand *wand,
9654 %        const PixelWand *background)
9655 %
9656 %  A description of each parameter follows:
9657 %
9658 %    o wand: the magick wand.
9659 %
9660 %    o background: the background pixel wand.
9661 %
9662 */
MagickSetImageBackgroundColor(MagickWand * wand,const PixelWand * background)9663 WandExport MagickBooleanType MagickSetImageBackgroundColor(MagickWand *wand,
9664   const PixelWand *background)
9665 {
9666   assert(wand != (MagickWand *) NULL);
9667   assert(wand->signature == MagickWandSignature);
9668   if (wand->debug != MagickFalse)
9669     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9670   if (wand->images == (Image *) NULL)
9671     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9672   PixelGetQuantumPacket(background,&wand->images->background_color);
9673   return(MagickTrue);
9674 }
9675 
9676 /*
9677 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9678 %                                                                             %
9679 %                                                                             %
9680 %                                                                             %
9681 %   M a g i c k S e t I m a g e B l u e P r i m a r y                         %
9682 %                                                                             %
9683 %                                                                             %
9684 %                                                                             %
9685 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9686 %
9687 %  MagickSetImageBluePrimary() sets the image chromaticity blue primary point.
9688 %
9689 %  The format of the MagickSetImageBluePrimary method is:
9690 %
9691 %      MagickBooleanType MagickSetImageBluePrimary(MagickWand *wand,
9692 %        const double x,const double y,const double z)
9693 %
9694 %  A description of each parameter follows:
9695 %
9696 %    o wand: the magick wand.
9697 %
9698 %    o x: the blue primary x-point.
9699 %
9700 %    o y: the blue primary y-point.
9701 %
9702 %    o z: the blue primary z-point.
9703 %
9704 */
MagickSetImageBluePrimary(MagickWand * wand,const double x,const double y,const double z)9705 WandExport MagickBooleanType MagickSetImageBluePrimary(MagickWand *wand,
9706   const double x,const double y,const double z)
9707 {
9708   assert(wand != (MagickWand *) NULL);
9709   assert(wand->signature == MagickWandSignature);
9710   if (wand->debug != MagickFalse)
9711     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9712   if (wand->images == (Image *) NULL)
9713     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9714   wand->images->chromaticity.blue_primary.x=x;
9715   wand->images->chromaticity.blue_primary.y=y;
9716   wand->images->chromaticity.blue_primary.z=z;
9717   return(MagickTrue);
9718 }
9719 
9720 /*
9721 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9722 %                                                                             %
9723 %                                                                             %
9724 %                                                                             %
9725 %   M a g i c k S e t I m a g e B o r d e r C o l o r                         %
9726 %                                                                             %
9727 %                                                                             %
9728 %                                                                             %
9729 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9730 %
9731 %  MagickSetImageBorderColor() sets the image border color.
9732 %
9733 %  The format of the MagickSetImageBorderColor method is:
9734 %
9735 %      MagickBooleanType MagickSetImageBorderColor(MagickWand *wand,
9736 %        const PixelWand *border)
9737 %
9738 %  A description of each parameter follows:
9739 %
9740 %    o wand: the magick wand.
9741 %
9742 %    o border: the border pixel wand.
9743 %
9744 */
MagickSetImageBorderColor(MagickWand * wand,const PixelWand * border)9745 WandExport MagickBooleanType MagickSetImageBorderColor(MagickWand *wand,
9746   const PixelWand *border)
9747 {
9748   assert(wand != (MagickWand *) NULL);
9749   assert(wand->signature == MagickWandSignature);
9750   if (wand->debug != MagickFalse)
9751     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9752   if (wand->images == (Image *) NULL)
9753     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9754   PixelGetQuantumPacket(border,&wand->images->border_color);
9755   return(MagickTrue);
9756 }
9757 
9758 /*
9759 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9760 %                                                                             %
9761 %                                                                             %
9762 %                                                                             %
9763 %   M a g i c k S e t I m a g e C h a n n e l M a s k                         %
9764 %                                                                             %
9765 %                                                                             %
9766 %                                                                             %
9767 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9768 %
9769 %  MagickSetImageChannelMask() sets image channel mask.
9770 %
9771 %  The format of the MagickSetImageChannelMask method is:
9772 %
9773 %      ChannelType MagickSetImageChannelMask(MagickWand *wand,
9774 %        const ChannelType channel_mask)
9775 %
9776 %  A description of each parameter follows:
9777 %
9778 %    o wand: the magick wand.
9779 %
9780 %    o channel_mask: the channel_mask wand.
9781 %
9782 */
MagickSetImageChannelMask(MagickWand * wand,const ChannelType channel_mask)9783 WandExport ChannelType MagickSetImageChannelMask(MagickWand *wand,
9784   const ChannelType channel_mask)
9785 {
9786   assert(wand != (MagickWand *) NULL);
9787   assert(wand->signature == MagickWandSignature);
9788   if (wand->debug != MagickFalse)
9789     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9790   return(SetImageChannelMask(wand->images,channel_mask));
9791 }
9792 
9793 /*
9794 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9795 %                                                                             %
9796 %                                                                             %
9797 %                                                                             %
9798 %   M a g i c k S e t I m a g e M a s k                                       %
9799 %                                                                             %
9800 %                                                                             %
9801 %                                                                             %
9802 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9803 %
9804 %  MagickSetImageMask() sets image clip mask.
9805 %
9806 %  The format of the MagickSetImageMask method is:
9807 %
9808 %      MagickBooleanType MagickSetImageMask(MagickWand *wand,
9809 %        const PixelMask type,const MagickWand *clip_mask)
9810 %
9811 %  A description of each parameter follows:
9812 %
9813 %    o wand: the magick wand.
9814 %
9815 %    o type: type of mask, ReadPixelMask or WritePixelMask.
9816 %
9817 %    o clip_mask: the clip_mask wand.
9818 %
9819 */
MagickSetImageMask(MagickWand * wand,const PixelMask type,const MagickWand * clip_mask)9820 WandExport MagickBooleanType MagickSetImageMask(MagickWand *wand,
9821   const PixelMask type,const MagickWand *clip_mask)
9822 {
9823   assert(wand != (MagickWand *) NULL);
9824   assert(wand->signature == MagickWandSignature);
9825   if (wand->debug != MagickFalse)
9826     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9827   assert(clip_mask != (MagickWand *) NULL);
9828   assert(clip_mask->signature == MagickWandSignature);
9829   if (clip_mask->debug != MagickFalse)
9830     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",clip_mask->name);
9831   if (clip_mask->images == (Image *) NULL)
9832     ThrowWandException(WandError,"ContainsNoImages",clip_mask->name);
9833   return(SetImageMask(wand->images,type,clip_mask->images,wand->exception));
9834 }
9835 
9836 /*
9837 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9838 %                                                                             %
9839 %                                                                             %
9840 %                                                                             %
9841 %   M a g i c k S e t I m a g e C o l o r                                     %
9842 %                                                                             %
9843 %                                                                             %
9844 %                                                                             %
9845 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9846 %
9847 %  MagickSetImageColor() set the entire wand canvas to the specified color.
9848 %
9849 %  The format of the MagickSetImageColor method is:
9850 %
9851 %      MagickBooleanType MagickSetImageColor(MagickWand *wand,
9852 %        const PixelWand *color)
9853 %
9854 %  A description of each parameter follows:
9855 %
9856 %    o wand: the magick wand.
9857 %
9858 %    o background: the image color.
9859 %
9860 */
MagickSetImageColor(MagickWand * wand,const PixelWand * color)9861 WandExport MagickBooleanType MagickSetImageColor(MagickWand *wand,
9862   const PixelWand *color)
9863 {
9864   PixelInfo
9865     pixel;
9866 
9867   assert(wand != (MagickWand *) NULL);
9868   assert(wand->signature == MagickWandSignature);
9869   if (wand->debug != MagickFalse)
9870     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9871   PixelGetMagickColor(color,&pixel);
9872   return(SetImageColor(wand->images,&pixel,wand->exception));
9873 }
9874 
9875 /*
9876 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9877 %                                                                             %
9878 %                                                                             %
9879 %                                                                             %
9880 %   M a g i c k S e t I m a g e C o l o r m a p C o l o r                     %
9881 %                                                                             %
9882 %                                                                             %
9883 %                                                                             %
9884 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9885 %
9886 %  MagickSetImageColormapColor() sets the color of the specified colormap
9887 %  index.
9888 %
9889 %  The format of the MagickSetImageColormapColor method is:
9890 %
9891 %      MagickBooleanType MagickSetImageColormapColor(MagickWand *wand,
9892 %        const size_t index,const PixelWand *color)
9893 %
9894 %  A description of each parameter follows:
9895 %
9896 %    o wand: the magick wand.
9897 %
9898 %    o index: the offset into the image colormap.
9899 %
9900 %    o color: Return the colormap color in this wand.
9901 %
9902 */
MagickSetImageColormapColor(MagickWand * wand,const size_t index,const PixelWand * color)9903 WandExport MagickBooleanType MagickSetImageColormapColor(MagickWand *wand,
9904   const size_t index,const PixelWand *color)
9905 {
9906   assert(wand != (MagickWand *) NULL);
9907   assert(wand->signature == MagickWandSignature);
9908   if (wand->debug != MagickFalse)
9909     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9910   if (wand->images == (Image *) NULL)
9911     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9912   if ((wand->images->colormap == (PixelInfo *) NULL) ||
9913       (index >= wand->images->colors))
9914     ThrowWandException(WandError,"InvalidColormapIndex",wand->name);
9915   PixelGetQuantumPacket(color,wand->images->colormap+index);
9916   return(SyncImage(wand->images,wand->exception));
9917 }
9918 
9919 /*
9920 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9921 %                                                                             %
9922 %                                                                             %
9923 %                                                                             %
9924 %   M a g i c k S e t I m a g e C o l o r s p a c e                           %
9925 %                                                                             %
9926 %                                                                             %
9927 %                                                                             %
9928 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9929 %
9930 %  MagickSetImageColorspace() sets the image colorspace. But does not modify
9931 %  the image data.
9932 %
9933 %  The format of the MagickSetImageColorspace method is:
9934 %
9935 %      MagickBooleanType MagickSetImageColorspace(MagickWand *wand,
9936 %        const ColorspaceType colorspace)
9937 %
9938 %  A description of each parameter follows:
9939 %
9940 %    o wand: the magick wand.
9941 %
9942 %    o colorspace: the image colorspace:   UndefinedColorspace, RGBColorspace,
9943 %      GRAYColorspace, TransparentColorspace, OHTAColorspace, XYZColorspace,
9944 %      YCbCrColorspace, YCCColorspace, YIQColorspace, YPbPrColorspace,
9945 %      YPbPrColorspace, YUVColorspace, CMYKColorspace, sRGBColorspace,
9946 %      HSLColorspace, or HWBColorspace.
9947 %
9948 */
MagickSetImageColorspace(MagickWand * wand,const ColorspaceType colorspace)9949 WandExport MagickBooleanType MagickSetImageColorspace(MagickWand *wand,
9950   const ColorspaceType colorspace)
9951 {
9952   assert(wand != (MagickWand *) NULL);
9953   assert(wand->signature == MagickWandSignature);
9954   if (wand->debug != MagickFalse)
9955     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9956   if (wand->images == (Image *) NULL)
9957     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9958   return(SetImageColorspace(wand->images,colorspace,wand->exception));
9959 }
9960 
9961 /*
9962 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9963 %                                                                             %
9964 %                                                                             %
9965 %                                                                             %
9966 %   M a g i c k S e t I m a g e C o m p o s e                                 %
9967 %                                                                             %
9968 %                                                                             %
9969 %                                                                             %
9970 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9971 %
9972 %  MagickSetImageCompose() sets the image composite operator, useful for
9973 %  specifying how to composite the image thumbnail when using the
9974 %  MagickMontageImage() method.
9975 %
9976 %  The format of the MagickSetImageCompose method is:
9977 %
9978 %      MagickBooleanType MagickSetImageCompose(MagickWand *wand,
9979 %        const CompositeOperator compose)
9980 %
9981 %  A description of each parameter follows:
9982 %
9983 %    o wand: the magick wand.
9984 %
9985 %    o compose: the image composite operator.
9986 %
9987 */
MagickSetImageCompose(MagickWand * wand,const CompositeOperator compose)9988 WandExport MagickBooleanType MagickSetImageCompose(MagickWand *wand,
9989   const CompositeOperator compose)
9990 {
9991   assert(wand != (MagickWand *) NULL);
9992   assert(wand->signature == MagickWandSignature);
9993   if (wand->debug != MagickFalse)
9994     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
9995   if (wand->images == (Image *) NULL)
9996     ThrowWandException(WandError,"ContainsNoImages",wand->name);
9997   wand->images->compose=compose;
9998   return(MagickTrue);
9999 }
10000 
10001 /*
10002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10003 %                                                                             %
10004 %                                                                             %
10005 %                                                                             %
10006 %   M a g i c k S e t I m a g e C o m p r e s s i o n                         %
10007 %                                                                             %
10008 %                                                                             %
10009 %                                                                             %
10010 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10011 %
10012 %  MagickSetImageCompression() sets the image compression.
10013 %
10014 %  The format of the MagickSetImageCompression method is:
10015 %
10016 %      MagickBooleanType MagickSetImageCompression(MagickWand *wand,
10017 %        const CompressionType compression)
10018 %
10019 %  A description of each parameter follows:
10020 %
10021 %    o wand: the magick wand.
10022 %
10023 %    o compression: the image compression type.
10024 %
10025 */
MagickSetImageCompression(MagickWand * wand,const CompressionType compression)10026 WandExport MagickBooleanType MagickSetImageCompression(MagickWand *wand,
10027   const CompressionType compression)
10028 {
10029   assert(wand != (MagickWand *) NULL);
10030   assert(wand->signature == MagickWandSignature);
10031   if (wand->debug != MagickFalse)
10032     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10033   if (wand->images == (Image *) NULL)
10034     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10035   wand->images->compression=compression;
10036   return(MagickTrue);
10037 }
10038 
10039 /*
10040 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10041 %                                                                             %
10042 %                                                                             %
10043 %                                                                             %
10044 %   M a g i c k S e t I m a g e C o m p r e s s i o n Q u a l i t y           %
10045 %                                                                             %
10046 %                                                                             %
10047 %                                                                             %
10048 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10049 %
10050 %  MagickSetImageCompressionQuality() sets the image compression quality.
10051 %
10052 %  The format of the MagickSetImageCompressionQuality method is:
10053 %
10054 %      MagickBooleanType MagickSetImageCompressionQuality(MagickWand *wand,
10055 %        const size_t quality)
10056 %
10057 %  A description of each parameter follows:
10058 %
10059 %    o wand: the magick wand.
10060 %
10061 %    o quality: the image compression tlityype.
10062 %
10063 */
MagickSetImageCompressionQuality(MagickWand * wand,const size_t quality)10064 WandExport MagickBooleanType MagickSetImageCompressionQuality(MagickWand *wand,
10065   const size_t quality)
10066 {
10067   assert(wand != (MagickWand *) NULL);
10068   assert(wand->signature == MagickWandSignature);
10069   if (wand->debug != MagickFalse)
10070     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10071   if (wand->images == (Image *) NULL)
10072     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10073   wand->images->quality=quality;
10074   return(MagickTrue);
10075 }
10076 
10077 /*
10078 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10079 %                                                                             %
10080 %                                                                             %
10081 %                                                                             %
10082 %   M a g i c k S e t I m a g e D e l a y                                     %
10083 %                                                                             %
10084 %                                                                             %
10085 %                                                                             %
10086 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10087 %
10088 %  MagickSetImageDelay() sets the image delay.
10089 %
10090 %  The format of the MagickSetImageDelay method is:
10091 %
10092 %      MagickBooleanType MagickSetImageDelay(MagickWand *wand,
10093 %        const size_t delay)
10094 %
10095 %  A description of each parameter follows:
10096 %
10097 %    o wand: the magick wand.
10098 %
10099 %    o delay: the image delay in ticks-per-second units.
10100 %
10101 */
MagickSetImageDelay(MagickWand * wand,const size_t delay)10102 WandExport MagickBooleanType MagickSetImageDelay(MagickWand *wand,
10103   const size_t delay)
10104 {
10105   assert(wand != (MagickWand *) NULL);
10106   assert(wand->signature == MagickWandSignature);
10107   if (wand->debug != MagickFalse)
10108     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10109   if (wand->images == (Image *) NULL)
10110     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10111   wand->images->delay=delay;
10112   return(MagickTrue);
10113 }
10114 
10115 /*
10116 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10117 %                                                                             %
10118 %                                                                             %
10119 %                                                                             %
10120 %   M a g i c k S e t I m a g e D e p t h                                     %
10121 %                                                                             %
10122 %                                                                             %
10123 %                                                                             %
10124 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10125 %
10126 %  MagickSetImageDepth() sets the image depth.
10127 %
10128 %  The format of the MagickSetImageDepth method is:
10129 %
10130 %      MagickBooleanType MagickSetImageDepth(MagickWand *wand,
10131 %        const size_t depth)
10132 %
10133 %  A description of each parameter follows:
10134 %
10135 %    o wand: the magick wand.
10136 %
10137 %    o depth: the image depth in bits: 8, 16, or 32.
10138 %
10139 */
MagickSetImageDepth(MagickWand * wand,const size_t depth)10140 WandExport MagickBooleanType MagickSetImageDepth(MagickWand *wand,
10141   const size_t depth)
10142 {
10143   assert(wand != (MagickWand *) NULL);
10144   assert(wand->signature == MagickWandSignature);
10145   if (wand->debug != MagickFalse)
10146     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10147   if (wand->images == (Image *) NULL)
10148     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10149   return(SetImageDepth(wand->images,depth,wand->exception));
10150 }
10151 
10152 /*
10153 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10154 %                                                                             %
10155 %                                                                             %
10156 %                                                                             %
10157 %   M a g i c k S e t I m a g e D i s p o s e                                 %
10158 %                                                                             %
10159 %                                                                             %
10160 %                                                                             %
10161 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10162 %
10163 %  MagickSetImageDispose() sets the image disposal method.
10164 %
10165 %  The format of the MagickSetImageDispose method is:
10166 %
10167 %      MagickBooleanType MagickSetImageDispose(MagickWand *wand,
10168 %        const DisposeType dispose)
10169 %
10170 %  A description of each parameter follows:
10171 %
10172 %    o wand: the magick wand.
10173 %
10174 %    o dispose: the image disposeal type.
10175 %
10176 */
MagickSetImageDispose(MagickWand * wand,const DisposeType dispose)10177 WandExport MagickBooleanType MagickSetImageDispose(MagickWand *wand,
10178   const DisposeType dispose)
10179 {
10180   assert(wand != (MagickWand *) NULL);
10181   assert(wand->signature == MagickWandSignature);
10182   if (wand->debug != MagickFalse)
10183     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10184   if (wand->images == (Image *) NULL)
10185     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10186   wand->images->dispose=dispose;
10187   return(MagickTrue);
10188 }
10189 
10190 /*
10191 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10192 %                                                                             %
10193 %                                                                             %
10194 %                                                                             %
10195 %   M a g i c k S e t I m a g e E n d i a n                                   %
10196 %                                                                             %
10197 %                                                                             %
10198 %                                                                             %
10199 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10200 %
10201 %  MagickSetImageEndian() sets the image endian method.
10202 %
10203 %  The format of the MagickSetImageEndian method is:
10204 %
10205 %      MagickBooleanType MagickSetImageEndian(MagickWand *wand,
10206 %        const EndianType endian)
10207 %
10208 %  A description of each parameter follows:
10209 %
10210 %    o wand: the magick wand.
10211 %
10212 %    o endian: the image endian type.
10213 %
10214 */
MagickSetImageEndian(MagickWand * wand,const EndianType endian)10215 WandExport MagickBooleanType MagickSetImageEndian(MagickWand *wand,
10216   const EndianType endian)
10217 {
10218   assert(wand != (MagickWand *) NULL);
10219   assert(wand->signature == MagickWandSignature);
10220   if (wand->debug != MagickFalse)
10221     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10222   if (wand->images == (Image *) NULL)
10223     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10224   wand->images->endian=endian;
10225   return(MagickTrue);
10226 }
10227 
10228 /*
10229 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10230 %                                                                             %
10231 %                                                                             %
10232 %                                                                             %
10233 %   M a g i c k S e t I m a g e E x t e n t                                   %
10234 %                                                                             %
10235 %                                                                             %
10236 %                                                                             %
10237 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10238 %
10239 %  MagickSetImageExtent() sets the image size (i.e. columns & rows).
10240 %
10241 %  The format of the MagickSetImageExtent method is:
10242 %
10243 %      MagickBooleanType MagickSetImageExtent(MagickWand *wand,
10244 %        const size_t columns,const unsigned rows)
10245 %
10246 %  A description of each parameter follows:
10247 %
10248 %    o wand: the magick wand.
10249 %
10250 %    o columns:  The image width in pixels.
10251 %
10252 %    o rows:  The image height in pixels.
10253 %
10254 */
MagickSetImageExtent(MagickWand * wand,const size_t columns,const size_t rows)10255 WandExport MagickBooleanType MagickSetImageExtent(MagickWand *wand,
10256   const size_t columns,const size_t rows)
10257 {
10258   assert(wand != (MagickWand *) NULL);
10259   assert(wand->signature == MagickWandSignature);
10260   if (wand->debug != MagickFalse)
10261     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10262   if (wand->images == (Image *) NULL)
10263     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10264   return(SetImageExtent(wand->images,columns,rows,wand->exception));
10265 }
10266 
10267 /*
10268 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10269 %                                                                             %
10270 %                                                                             %
10271 %                                                                             %
10272 %   M a g i c k S e t I m a g e F i l e n a m e                               %
10273 %                                                                             %
10274 %                                                                             %
10275 %                                                                             %
10276 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10277 %
10278 %  MagickSetImageFilename() sets the filename of a particular image in a
10279 %  sequence.
10280 %
10281 %  The format of the MagickSetImageFilename method is:
10282 %
10283 %      MagickBooleanType MagickSetImageFilename(MagickWand *wand,
10284 %        const char *filename)
10285 %
10286 %  A description of each parameter follows:
10287 %
10288 %    o wand: the magick wand.
10289 %
10290 %    o filename: the image filename.
10291 %
10292 */
MagickSetImageFilename(MagickWand * wand,const char * filename)10293 WandExport MagickBooleanType MagickSetImageFilename(MagickWand *wand,
10294   const char *filename)
10295 {
10296   assert(wand != (MagickWand *) NULL);
10297   assert(wand->signature == MagickWandSignature);
10298   if (wand->debug != MagickFalse)
10299     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10300   if (wand->images == (Image *) NULL)
10301     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10302   if (filename == (const char *) NULL)
10303     return(MagickFalse);
10304   (void) CopyMagickString(wand->images->filename,filename,MagickPathExtent);
10305   return(MagickTrue);
10306 }
10307 
10308 /*
10309 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10310 %                                                                             %
10311 %                                                                             %
10312 %                                                                             %
10313 %   M a g i c k S e t I m a g e F o r m a t                                   %
10314 %                                                                             %
10315 %                                                                             %
10316 %                                                                             %
10317 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10318 %
10319 %  MagickSetImageFormat() sets the format of a particular image in a
10320 %  sequence.
10321 %
10322 %  The format of the MagickSetImageFormat method is:
10323 %
10324 %      MagickBooleanType MagickSetImageFormat(MagickWand *wand,
10325 %        const char *format)
10326 %
10327 %  A description of each parameter follows:
10328 %
10329 %    o wand: the magick wand.
10330 %
10331 %    o format: the image format.
10332 %
10333 */
MagickSetImageFormat(MagickWand * wand,const char * format)10334 WandExport MagickBooleanType MagickSetImageFormat(MagickWand *wand,
10335   const char *format)
10336 {
10337   const MagickInfo
10338     *magick_info;
10339 
10340   assert(wand != (MagickWand *) NULL);
10341   assert(wand->signature == MagickWandSignature);
10342   if (wand->debug != MagickFalse)
10343     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10344   if (wand->images == (Image *) NULL)
10345     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10346   if ((format == (char *) NULL) || (*format == '\0'))
10347     {
10348       *wand->images->magick='\0';
10349       return(MagickTrue);
10350     }
10351   magick_info=GetMagickInfo(format,wand->exception);
10352   if (magick_info == (const MagickInfo *) NULL)
10353     return(MagickFalse);
10354   ClearMagickException(wand->exception);
10355   (void) CopyMagickString(wand->images->magick,format,MagickPathExtent);
10356   return(MagickTrue);
10357 }
10358 
10359 /*
10360 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10361 %                                                                             %
10362 %                                                                             %
10363 %                                                                             %
10364 %   M a g i c k S e t I m a g e F u z z                                       %
10365 %                                                                             %
10366 %                                                                             %
10367 %                                                                             %
10368 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10369 %
10370 %  MagickSetImageFuzz() sets the image fuzz.
10371 %
10372 %  The format of the MagickSetImageFuzz method is:
10373 %
10374 %      MagickBooleanType MagickSetImageFuzz(MagickWand *wand,
10375 %        const double fuzz)
10376 %
10377 %  A description of each parameter follows:
10378 %
10379 %    o wand: the magick wand.
10380 %
10381 %    o fuzz: the image fuzz.
10382 %
10383 */
MagickSetImageFuzz(MagickWand * wand,const double fuzz)10384 WandExport MagickBooleanType MagickSetImageFuzz(MagickWand *wand,
10385   const double fuzz)
10386 {
10387   assert(wand != (MagickWand *) NULL);
10388   assert(wand->signature == MagickWandSignature);
10389   if (wand->debug != MagickFalse)
10390     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10391   if (wand->images == (Image *) NULL)
10392     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10393   wand->images->fuzz=fuzz;
10394   return(MagickTrue);
10395 }
10396 
10397 /*
10398 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10399 %                                                                             %
10400 %                                                                             %
10401 %                                                                             %
10402 %   M a g i c k S e t I m a g e G a m m a                                     %
10403 %                                                                             %
10404 %                                                                             %
10405 %                                                                             %
10406 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10407 %
10408 %  MagickSetImageGamma() sets the image gamma.
10409 %
10410 %  The format of the MagickSetImageGamma method is:
10411 %
10412 %      MagickBooleanType MagickSetImageGamma(MagickWand *wand,
10413 %        const double gamma)
10414 %
10415 %  A description of each parameter follows:
10416 %
10417 %    o wand: the magick wand.
10418 %
10419 %    o gamma: the image gamma.
10420 %
10421 */
MagickSetImageGamma(MagickWand * wand,const double gamma)10422 WandExport MagickBooleanType MagickSetImageGamma(MagickWand *wand,
10423   const double gamma)
10424 {
10425   assert(wand != (MagickWand *) NULL);
10426   assert(wand->signature == MagickWandSignature);
10427   if (wand->debug != MagickFalse)
10428     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10429   if (wand->images == (Image *) NULL)
10430     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10431   wand->images->gamma=gamma;
10432   return(MagickTrue);
10433 }
10434 
10435 /*
10436 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10437 %                                                                             %
10438 %                                                                             %
10439 %                                                                             %
10440 %   M a g i c k S e t I m a g e G r a v i t y                                 %
10441 %                                                                             %
10442 %                                                                             %
10443 %                                                                             %
10444 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10445 %
10446 %  MagickSetImageGravity() sets the image gravity type.
10447 %
10448 %  The format of the MagickSetImageGravity method is:
10449 %
10450 %      MagickBooleanType MagickSetImageGravity(MagickWand *wand,
10451 %        const GravityType gravity)
10452 %
10453 %  A description of each parameter follows:
10454 %
10455 %    o wand: the magick wand.
10456 %
10457 %    o gravity: positioning gravity (NorthWestGravity, NorthGravity,
10458 %               NorthEastGravity, WestGravity, CenterGravity,
10459 %               EastGravity, SouthWestGravity, SouthGravity,
10460 %               SouthEastGravity)
10461 %
10462 */
MagickSetImageGravity(MagickWand * wand,const GravityType gravity)10463 WandExport MagickBooleanType MagickSetImageGravity(MagickWand *wand,
10464   const GravityType gravity)
10465 {
10466   assert(wand != (MagickWand *) NULL);
10467   assert(wand->signature == MagickWandSignature);
10468   if (wand->debug != MagickFalse)
10469     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10470   if (wand->images == (Image *) NULL)
10471     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10472   wand->images->gravity=gravity;
10473   return(MagickTrue);
10474 }
10475 
10476 /*
10477 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10478 %                                                                             %
10479 %                                                                             %
10480 %                                                                             %
10481 %   M a g i c k S e t I m a g e G r e e n P r i m a r y                       %
10482 %                                                                             %
10483 %                                                                             %
10484 %                                                                             %
10485 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10486 %
10487 %  MagickSetImageGreenPrimary() sets the image chromaticity green primary
10488 %  point.
10489 %
10490 %  The format of the MagickSetImageGreenPrimary method is:
10491 %
10492 %      MagickBooleanType MagickSetImageGreenPrimary(MagickWand *wand,
10493 %        const double x,const double y,const double z)
10494 %
10495 %  A description of each parameter follows:
10496 %
10497 %    o wand: the magick wand.
10498 %
10499 %    o x: the green primary x-point.
10500 %
10501 %    o y: the green primary y-point.
10502 %
10503 %    o z: the green primary z-point.
10504 %
10505 */
MagickSetImageGreenPrimary(MagickWand * wand,const double x,const double y,const double z)10506 WandExport MagickBooleanType MagickSetImageGreenPrimary(MagickWand *wand,
10507   const double x,const double y,const double z)
10508 {
10509   assert(wand != (MagickWand *) NULL);
10510   assert(wand->signature == MagickWandSignature);
10511   if (wand->debug != MagickFalse)
10512     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10513   if (wand->images == (Image *) NULL)
10514     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10515   wand->images->chromaticity.green_primary.x=x;
10516   wand->images->chromaticity.green_primary.y=y;
10517   wand->images->chromaticity.green_primary.z=z;
10518   return(MagickTrue);
10519 }
10520 
10521 /*
10522 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10523 %                                                                             %
10524 %                                                                             %
10525 %                                                                             %
10526 %   M a g i c k S e t I m a g e I n t e r l a c e S c h e m e                 %
10527 %                                                                             %
10528 %                                                                             %
10529 %                                                                             %
10530 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10531 %
10532 %  MagickSetImageInterlaceScheme() sets the image interlace scheme.
10533 %
10534 %  The format of the MagickSetImageInterlaceScheme method is:
10535 %
10536 %      MagickBooleanType MagickSetImageInterlaceScheme(MagickWand *wand,
10537 %        const InterlaceType interlace)
10538 %
10539 %  A description of each parameter follows:
10540 %
10541 %    o wand: the magick wand.
10542 %
10543 %    o interlace: the image interlace scheme: NoInterlace, LineInterlace,
10544 %      PlaneInterlace, PartitionInterlace.
10545 %
10546 */
MagickSetImageInterlaceScheme(MagickWand * wand,const InterlaceType interlace)10547 WandExport MagickBooleanType MagickSetImageInterlaceScheme(MagickWand *wand,
10548   const InterlaceType interlace)
10549 {
10550   assert(wand != (MagickWand *) NULL);
10551   assert(wand->signature == MagickWandSignature);
10552   if (wand->debug != MagickFalse)
10553     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10554   if (wand->images == (Image *) NULL)
10555     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10556   wand->images->interlace=interlace;
10557   return(MagickTrue);
10558 }
10559 
10560 /*
10561 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10562 %                                                                             %
10563 %                                                                             %
10564 %                                                                             %
10565 %   M a g i c k S e t I m a g e I n t e r p o l a t e M e t h o d             %
10566 %                                                                             %
10567 %                                                                             %
10568 %                                                                             %
10569 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10570 %
10571 %  MagickSetImageInterpolateMethod() sets the image interpolate pixel method.
10572 %
10573 %  The format of the MagickSetImageInterpolateMethod method is:
10574 %
10575 %      MagickBooleanType MagickSetImageInterpolateMethod(MagickWand *wand,
10576 %        const PixelInterpolateMethod method)
10577 %
10578 %  A description of each parameter follows:
10579 %
10580 %    o wand: the magick wand.
10581 %
10582 %    o method: the image interpole pixel methods: choose from Undefined,
10583 %      Average, Bicubic, Bilinear, Filter, Integer, Mesh, NearestNeighbor.
10584 %
10585 */
10586 
MagickSetImagePixelInterpolateMethod(MagickWand * wand,const PixelInterpolateMethod method)10587 WandExport MagickBooleanType MagickSetImagePixelInterpolateMethod(
10588   MagickWand *wand,const PixelInterpolateMethod method)
10589 {
10590   return(MagickSetImageInterpolateMethod(wand,method));
10591 }
10592 
MagickSetImageInterpolateMethod(MagickWand * wand,const PixelInterpolateMethod method)10593 WandExport MagickBooleanType MagickSetImageInterpolateMethod(
10594   MagickWand *wand,const PixelInterpolateMethod method)
10595 {
10596   assert(wand != (MagickWand *) NULL);
10597   assert(wand->signature == MagickWandSignature);
10598   if (wand->debug != MagickFalse)
10599     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10600   if (wand->images == (Image *) NULL)
10601     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10602   wand->images->interpolate=method;
10603   return(MagickTrue);
10604 }
10605 
10606 /*
10607 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10608 %                                                                             %
10609 %                                                                             %
10610 %                                                                             %
10611 %   M a g i c k S e t I m a g e I t e r a t i o n s                           %
10612 %                                                                             %
10613 %                                                                             %
10614 %                                                                             %
10615 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10616 %
10617 %  MagickSetImageIterations() sets the image iterations.
10618 %
10619 %  The format of the MagickSetImageIterations method is:
10620 %
10621 %      MagickBooleanType MagickSetImageIterations(MagickWand *wand,
10622 %        const size_t iterations)
10623 %
10624 %  A description of each parameter follows:
10625 %
10626 %    o wand: the magick wand.
10627 %
10628 %    o delay: the image delay in 1/100th of a second.
10629 %
10630 */
MagickSetImageIterations(MagickWand * wand,const size_t iterations)10631 WandExport MagickBooleanType MagickSetImageIterations(MagickWand *wand,
10632   const size_t iterations)
10633 {
10634   assert(wand != (MagickWand *) NULL);
10635   assert(wand->signature == MagickWandSignature);
10636   if (wand->debug != MagickFalse)
10637     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10638   if (wand->images == (Image *) NULL)
10639     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10640   wand->images->iterations=iterations;
10641   return(MagickTrue);
10642 }
10643 
10644 /*
10645 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10646 %                                                                             %
10647 %                                                                             %
10648 %                                                                             %
10649 %   M a g i c k S e t I m a g e M a t t e                                     %
10650 %                                                                             %
10651 %                                                                             %
10652 %                                                                             %
10653 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10654 %
10655 %  MagickSetImageMatte() sets the image matte channel.
10656 %
10657 %  The format of the MagickSetImageMatte method is:
10658 %
10659 %      MagickBooleanType MagickSetImageMatte(MagickWand *wand,
10660 %        const MagickBooleanType *matte)
10661 %
10662 %  A description of each parameter follows:
10663 %
10664 %    o wand: the magick wand.
10665 %
10666 %    o matte: Set to MagickTrue to enable the image matte channel otherwise
10667 %      MagickFalse.
10668 %
10669 */
MagickSetImageMatte(MagickWand * wand,const MagickBooleanType matte)10670 WandExport MagickBooleanType MagickSetImageMatte(MagickWand *wand,
10671   const MagickBooleanType matte)
10672 {
10673   assert(wand != (MagickWand *) NULL);
10674   assert(wand->signature == MagickWandSignature);
10675   if (wand->debug != MagickFalse)
10676     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10677   if (wand->images == (Image *) NULL)
10678     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10679   if (matte == MagickFalse)
10680     wand->images->alpha_trait=UndefinedPixelTrait;
10681   else
10682     {
10683       if (wand->images->alpha_trait == UndefinedPixelTrait)
10684         (void) SetImageAlpha(wand->images,OpaqueAlpha,wand->exception);
10685       wand->images->alpha_trait=BlendPixelTrait;
10686     }
10687   return(MagickTrue);
10688 }
10689 
10690 /*
10691 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10692 %                                                                             %
10693 %                                                                             %
10694 %                                                                             %
10695 %   M a g i c k S e t I m a g e M a t t e C o l o r                           %
10696 %                                                                             %
10697 %                                                                             %
10698 %                                                                             %
10699 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10700 %
10701 %  MagickSetImageMatteColor() sets the image alpha color.
10702 %
10703 %  The format of the MagickSetImageMatteColor method is:
10704 %
10705 %      MagickBooleanType MagickSetImageMatteColor(MagickWand *wand,
10706 %        const PixelWand *matte)
10707 %
10708 %  A description of each parameter follows:
10709 %
10710 %    o wand: the magick wand.
10711 %
10712 %    o matte: the alpha pixel wand.
10713 %
10714 */
MagickSetImageMatteColor(MagickWand * wand,const PixelWand * alpha)10715 WandExport MagickBooleanType MagickSetImageMatteColor(MagickWand *wand,
10716   const PixelWand *alpha)
10717 {
10718   assert(wand != (MagickWand *)NULL);
10719   assert(wand->signature == MagickWandSignature);
10720   if (wand->debug != MagickFalse)
10721     (void) LogMagickEvent(WandEvent, GetMagickModule(), "%s", wand->name);
10722   if (wand->images == (Image *)NULL)
10723     ThrowWandException(WandError, "ContainsNoImages", wand->name);
10724   PixelGetQuantumPacket(alpha,&wand->images->matte_color);
10725   return(MagickTrue);
10726 }
10727 
10728 /*
10729 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10730 %                                                                             %
10731 %                                                                             %
10732 %                                                                             %
10733 %   M a g i c k S e t I m a g e O p a c i t y                                 %
10734 %                                                                             %
10735 %                                                                             %
10736 %                                                                             %
10737 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10738 %
10739 %  MagickSetImageAlpha() sets the image to the specified alpha level.
10740 %
10741 %  The format of the MagickSetImageAlpha method is:
10742 %
10743 %      MagickBooleanType MagickSetImageAlpha(MagickWand *wand,
10744 %        const double alpha)
10745 %
10746 %  A description of each parameter follows:
10747 %
10748 %    o wand: the magick wand.
10749 %
10750 %    o alpha: the level of transparency: 1.0 is fully opaque and 0.0 is fully
10751 %      transparent.
10752 %
10753 */
MagickSetImageAlpha(MagickWand * wand,const double alpha)10754 WandExport MagickBooleanType MagickSetImageAlpha(MagickWand *wand,
10755   const double alpha)
10756 {
10757   MagickBooleanType
10758     status;
10759 
10760   assert(wand != (MagickWand *) NULL);
10761   assert(wand->signature == MagickWandSignature);
10762   if (wand->debug != MagickFalse)
10763     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10764   if (wand->images == (Image *) NULL)
10765     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10766   status=SetImageAlpha(wand->images,ClampToQuantum(QuantumRange*alpha),
10767     wand->exception);
10768   return(status);
10769 }
10770 
10771 /*
10772 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10773 %                                                                             %
10774 %                                                                             %
10775 %                                                                             %
10776 %   M a g i c k S e t I m a g e O r i e n t a t i o n                         %
10777 %                                                                             %
10778 %                                                                             %
10779 %                                                                             %
10780 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10781 %
10782 %  MagickSetImageOrientation() sets the image orientation.
10783 %
10784 %  The format of the MagickSetImageOrientation method is:
10785 %
10786 %      MagickBooleanType MagickSetImageOrientation(MagickWand *wand,
10787 %        const OrientationType orientation)
10788 %
10789 %  A description of each parameter follows:
10790 %
10791 %    o wand: the magick wand.
10792 %
10793 %    o orientation: the image orientation type.
10794 %
10795 */
MagickSetImageOrientation(MagickWand * wand,const OrientationType orientation)10796 WandExport MagickBooleanType MagickSetImageOrientation(MagickWand *wand,
10797   const OrientationType orientation)
10798 {
10799   assert(wand != (MagickWand *) NULL);
10800   assert(wand->signature == MagickWandSignature);
10801   if (wand->debug != MagickFalse)
10802     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10803   if (wand->images == (Image *) NULL)
10804     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10805   wand->images->orientation=orientation;
10806   return(MagickTrue);
10807 }
10808 
10809 /*
10810 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10811 %                                                                             %
10812 %                                                                             %
10813 %                                                                             %
10814 %   M a g i c k S e t I m a g e P a g e                                       %
10815 %                                                                             %
10816 %                                                                             %
10817 %                                                                             %
10818 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10819 %
10820 %  MagickSetImagePage() sets the page geometry of the image.
10821 %
10822 %  The format of the MagickSetImagePage method is:
10823 %
10824 %      MagickBooleanType MagickSetImagePage(MagickWand *wand,const size_t width,%        const size_t height,const ssize_t x,const ssize_t y)
10825 %
10826 %  A description of each parameter follows:
10827 %
10828 %    o wand: the magick wand.
10829 %
10830 %    o width: the page width.
10831 %
10832 %    o height: the page height.
10833 %
10834 %    o x: the page x-offset.
10835 %
10836 %    o y: the page y-offset.
10837 %
10838 */
MagickSetImagePage(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y)10839 WandExport MagickBooleanType MagickSetImagePage(MagickWand *wand,
10840   const size_t width,const size_t height,const ssize_t x,
10841   const ssize_t y)
10842 {
10843   assert(wand != (MagickWand *) NULL);
10844   assert(wand->signature == MagickWandSignature);
10845   if (wand->debug != MagickFalse)
10846     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10847   if (wand->images == (Image *) NULL)
10848     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10849   wand->images->page.width=width;
10850   wand->images->page.height=height;
10851   wand->images->page.x=x;
10852   wand->images->page.y=y;
10853   return(MagickTrue);
10854 }
10855 
10856 /*
10857 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10858 %                                                                             %
10859 %                                                                             %
10860 %                                                                             %
10861 %   M a g i c k S e t I m a g e P i x e l C o l o r                           %
10862 %                                                                             %
10863 %                                                                             %
10864 %                                                                             %
10865 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10866 %
10867 %  MagickSetImagePixelColor() sets the color of the specified pixel.
10868 %
10869 %  The format of the MagickSetImagePixelColor method is:
10870 %
10871 %      MagickBooleanType MagickSetImagePixelColor(MagickWand *wand,
10872 %        const ssize_t x,const ssize_t y,const PixelWand *color)
10873 %
10874 %  A description of each parameter follows:
10875 %
10876 %    o wand: the magick wand.
10877 %
10878 %    o x,y: the pixel offset into the image.
10879 %
10880 %    o color: Return the colormap color in this wand.
10881 %
10882 */
MagickSetImagePixelColor(MagickWand * wand,const ssize_t x,const ssize_t y,const PixelWand * color)10883 WandExport MagickBooleanType MagickSetImagePixelColor(MagickWand *wand,
10884   const ssize_t x,const ssize_t y,const PixelWand *color)
10885 {
10886   register Quantum
10887     *q;
10888 
10889   CacheView
10890     *image_view;
10891 
10892   assert(wand != (MagickWand *) NULL);
10893   assert(wand->signature == MagickWandSignature);
10894   if (wand->debug != MagickFalse)
10895     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10896   if (wand->images == (Image *) NULL)
10897     ThrowWandException(WandError,"ContainsNoImages",wand->name);
10898   image_view=AcquireAuthenticCacheView(wand->images,wand->exception);
10899   q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,wand->exception);
10900   if (q == (Quantum *) NULL)
10901     {
10902       image_view=DestroyCacheView(image_view);
10903       return(MagickFalse);
10904     }
10905   PixelGetQuantumPixel(wand->images,color,q);
10906   image_view=DestroyCacheView(image_view);
10907   return(MagickTrue);
10908 }
10909 
10910 /*
10911 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10912 %                                                                             %
10913 %                                                                             %
10914 %                                                                             %
10915 %   M a g i c k S e t I m a g e P r o g r e s s M o n i t o r                 %
10916 %                                                                             %
10917 %                                                                             %
10918 %                                                                             %
10919 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10920 %
10921 %  MagickSetImageProgressMonitor() sets the wand image progress monitor to the
10922 %  specified method and returns the previous progress monitor if any.  The
10923 %  progress monitor method looks like this:
10924 %
10925 %    MagickBooleanType MagickProgressMonitor(const char *text,
10926 %      const MagickOffsetType offset,const MagickSizeType span,
10927 %      void *client_data)
10928 %
10929 %  If the progress monitor returns MagickFalse, the current operation is
10930 %  interrupted.
10931 %
10932 %  The format of the MagickSetImageProgressMonitor method is:
10933 %
10934 %      MagickProgressMonitor MagickSetImageProgressMonitor(MagickWand *wand
10935 %        const MagickProgressMonitor progress_monitor,void *client_data)
10936 %
10937 %  A description of each parameter follows:
10938 %
10939 %    o wand: the magick wand.
10940 %
10941 %    o progress_monitor: Specifies a pointer to a method to monitor progress
10942 %      of an image operation.
10943 %
10944 %    o client_data: Specifies a pointer to any client data.
10945 %
10946 */
MagickSetImageProgressMonitor(MagickWand * wand,const MagickProgressMonitor progress_monitor,void * client_data)10947 WandExport MagickProgressMonitor MagickSetImageProgressMonitor(MagickWand *wand,
10948   const MagickProgressMonitor progress_monitor,void *client_data)
10949 {
10950   MagickProgressMonitor
10951     previous_monitor;
10952 
10953   assert(wand != (MagickWand *) NULL);
10954   assert(wand->signature == MagickWandSignature);
10955   if (wand->debug != MagickFalse)
10956     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
10957   if (wand->images == (Image *) NULL)
10958     {
10959       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
10960         "ContainsNoImages","`%s'",wand->name);
10961       return((MagickProgressMonitor) NULL);
10962     }
10963   previous_monitor=SetImageProgressMonitor(wand->images,
10964     progress_monitor,client_data);
10965   return(previous_monitor);
10966 }
10967 
10968 /*
10969 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10970 %                                                                             %
10971 %                                                                             %
10972 %                                                                             %
10973 %   M a g i c k S e t I m a g e R e d P r i m a r y                           %
10974 %                                                                             %
10975 %                                                                             %
10976 %                                                                             %
10977 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10978 %
10979 %  MagickSetImageRedPrimary() sets the image chromaticity red primary point.
10980 %
10981 %  The format of the MagickSetImageRedPrimary method is:
10982 %
10983 %      MagickBooleanType MagickSetImageRedPrimary(MagickWand *wand,
10984 %        const double x,const double y,const double z)
10985 %
10986 %  A description of each parameter follows:
10987 %
10988 %    o wand: the magick wand.
10989 %
10990 %    o x: the red primary x-point.
10991 %
10992 %    o y: the red primary y-point.
10993 %
10994 %    o z: the red primary z-point.
10995 %
10996 */
MagickSetImageRedPrimary(MagickWand * wand,const double x,const double y,const double z)10997 WandExport MagickBooleanType MagickSetImageRedPrimary(MagickWand *wand,
10998   const double x,const double y,const double z)
10999 {
11000   assert(wand != (MagickWand *) NULL);
11001   assert(wand->signature == MagickWandSignature);
11002   if (wand->debug != MagickFalse)
11003     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11004   if (wand->images == (Image *) NULL)
11005     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11006   wand->images->chromaticity.red_primary.x=x;
11007   wand->images->chromaticity.red_primary.y=y;
11008   wand->images->chromaticity.red_primary.z=z;
11009   return(MagickTrue);
11010 }
11011 
11012 /*
11013 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11014 %                                                                             %
11015 %                                                                             %
11016 %                                                                             %
11017 %   M a g i c k S e t I m a g e R e n d e r i n g I n t e n t                 %
11018 %                                                                             %
11019 %                                                                             %
11020 %                                                                             %
11021 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11022 %
11023 %  MagickSetImageRenderingIntent() sets the image rendering intent.
11024 %
11025 %  The format of the MagickSetImageRenderingIntent method is:
11026 %
11027 %      MagickBooleanType MagickSetImageRenderingIntent(MagickWand *wand,
11028 %        const RenderingIntent rendering_intent)
11029 %
11030 %  A description of each parameter follows:
11031 %
11032 %    o wand: the magick wand.
11033 %
11034 %    o rendering_intent: the image rendering intent: UndefinedIntent,
11035 %      SaturationIntent, PerceptualIntent, AbsoluteIntent, or RelativeIntent.
11036 %
11037 */
MagickSetImageRenderingIntent(MagickWand * wand,const RenderingIntent rendering_intent)11038 WandExport MagickBooleanType MagickSetImageRenderingIntent(MagickWand *wand,
11039   const RenderingIntent rendering_intent)
11040 {
11041   assert(wand != (MagickWand *) NULL);
11042   assert(wand->signature == MagickWandSignature);
11043   if (wand->debug != MagickFalse)
11044     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11045   if (wand->images == (Image *) NULL)
11046     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11047   wand->images->rendering_intent=rendering_intent;
11048   return(MagickTrue);
11049 }
11050 
11051 /*
11052 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11053 %                                                                             %
11054 %                                                                             %
11055 %                                                                             %
11056 %   M a g i c k S e t I m a g e R e s o l u t i o n                           %
11057 %                                                                             %
11058 %                                                                             %
11059 %                                                                             %
11060 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11061 %
11062 %  MagickSetImageResolution() sets the image resolution.
11063 %
11064 %  The format of the MagickSetImageResolution method is:
11065 %
11066 %      MagickBooleanType MagickSetImageResolution(MagickWand *wand,
11067 %        const double x_resolution,const double y_resolution)
11068 %
11069 %  A description of each parameter follows:
11070 %
11071 %    o wand: the magick wand.
11072 %
11073 %    o x_resolution: the image x resolution.
11074 %
11075 %    o y_resolution: the image y resolution.
11076 %
11077 */
MagickSetImageResolution(MagickWand * wand,const double x_resolution,const double y_resolution)11078 WandExport MagickBooleanType MagickSetImageResolution(MagickWand *wand,
11079   const double x_resolution,const double y_resolution)
11080 {
11081   assert(wand != (MagickWand *) NULL);
11082   assert(wand->signature == MagickWandSignature);
11083   if (wand->debug != MagickFalse)
11084     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11085   if (wand->images == (Image *) NULL)
11086     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11087   wand->images->resolution.x=x_resolution;
11088   wand->images->resolution.y=y_resolution;
11089   return(MagickTrue);
11090 }
11091 
11092 /*
11093 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11094 %                                                                             %
11095 %                                                                             %
11096 %                                                                             %
11097 %   M a g i c k S e t I m a g e S c e n e                                     %
11098 %                                                                             %
11099 %                                                                             %
11100 %                                                                             %
11101 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11102 %
11103 %  MagickSetImageScene() sets the image scene.
11104 %
11105 %  The format of the MagickSetImageScene method is:
11106 %
11107 %      MagickBooleanType MagickSetImageScene(MagickWand *wand,
11108 %        const size_t scene)
11109 %
11110 %  A description of each parameter follows:
11111 %
11112 %    o wand: the magick wand.
11113 %
11114 %    o delay: the image scene number.
11115 %
11116 */
MagickSetImageScene(MagickWand * wand,const size_t scene)11117 WandExport MagickBooleanType MagickSetImageScene(MagickWand *wand,
11118   const size_t scene)
11119 {
11120   assert(wand != (MagickWand *) NULL);
11121   assert(wand->signature == MagickWandSignature);
11122   if (wand->debug != MagickFalse)
11123     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11124   if (wand->images == (Image *) NULL)
11125     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11126   wand->images->scene=scene;
11127   return(MagickTrue);
11128 }
11129 
11130 /*
11131 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11132 %                                                                             %
11133 %                                                                             %
11134 %                                                                             %
11135 %   M a g i c k S e t I m a g e T i c k s P e r S e c o n d                   %
11136 %                                                                             %
11137 %                                                                             %
11138 %                                                                             %
11139 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11140 %
11141 %  MagickSetImageTicksPerSecond() sets the image ticks-per-second.
11142 %
11143 %  The format of the MagickSetImageTicksPerSecond method is:
11144 %
11145 %      MagickBooleanType MagickSetImageTicksPerSecond(MagickWand *wand,
11146 %        const ssize_t ticks_per-second)
11147 %
11148 %  A description of each parameter follows:
11149 %
11150 %    o wand: the magick wand.
11151 %
11152 %    o ticks_per_second: the units to use for the image delay.
11153 %
11154 */
MagickSetImageTicksPerSecond(MagickWand * wand,const ssize_t ticks_per_second)11155 WandExport MagickBooleanType MagickSetImageTicksPerSecond(MagickWand *wand,
11156   const ssize_t ticks_per_second)
11157 {
11158   assert(wand != (MagickWand *) NULL);
11159   assert(wand->signature == MagickWandSignature);
11160   if (wand->debug != MagickFalse)
11161     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11162   if (wand->images == (Image *) NULL)
11163     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11164   wand->images->ticks_per_second=ticks_per_second;
11165   return(MagickTrue);
11166 }
11167 
11168 /*
11169 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11170 %                                                                             %
11171 %                                                                             %
11172 %                                                                             %
11173 %   M a g i c k S e t I m a g e T y p e                                       %
11174 %                                                                             %
11175 %                                                                             %
11176 %                                                                             %
11177 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11178 %
11179 %  MagickSetImageType() sets the image type.
11180 %
11181 %  The format of the MagickSetImageType method is:
11182 %
11183 %      MagickBooleanType MagickSetImageType(MagickWand *wand,
11184 %        const ImageType image_type)
11185 %
11186 %  A description of each parameter follows:
11187 %
11188 %    o wand: the magick wand.
11189 %
11190 %    o image_type: the image type:   UndefinedType, BilevelType, GrayscaleType,
11191 %      GrayscaleAlphaType, PaletteType, PaletteAlphaType, TrueColorType,
11192 %      TrueColorAlphaType, ColorSeparationType, ColorSeparationAlphaType,
11193 %      or OptimizeType.
11194 %
11195 */
MagickSetImageType(MagickWand * wand,const ImageType image_type)11196 WandExport MagickBooleanType MagickSetImageType(MagickWand *wand,
11197   const ImageType image_type)
11198 {
11199   assert(wand != (MagickWand *) NULL);
11200   assert(wand->signature == MagickWandSignature);
11201   if (wand->debug != MagickFalse)
11202     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11203   if (wand->images == (Image *) NULL)
11204     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11205   return(SetImageType(wand->images,image_type,wand->exception));
11206 }
11207 
11208 /*
11209 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11210 %                                                                             %
11211 %                                                                             %
11212 %                                                                             %
11213 %   M a g i c k S e t I m a g e U n i t s                                     %
11214 %                                                                             %
11215 %                                                                             %
11216 %                                                                             %
11217 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11218 %
11219 %  MagickSetImageUnits() sets the image units of resolution.
11220 %
11221 %  The format of the MagickSetImageUnits method is:
11222 %
11223 %      MagickBooleanType MagickSetImageUnits(MagickWand *wand,
11224 %        const ResolutionType units)
11225 %
11226 %  A description of each parameter follows:
11227 %
11228 %    o wand: the magick wand.
11229 %
11230 %    o units: the image units of resolution : UndefinedResolution,
11231 %      PixelsPerInchResolution, or PixelsPerCentimeterResolution.
11232 %
11233 */
MagickSetImageUnits(MagickWand * wand,const ResolutionType units)11234 WandExport MagickBooleanType MagickSetImageUnits(MagickWand *wand,
11235   const ResolutionType units)
11236 {
11237   assert(wand != (MagickWand *) NULL);
11238   assert(wand->signature == MagickWandSignature);
11239   if (wand->debug != MagickFalse)
11240     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11241   if (wand->images == (Image *) NULL)
11242     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11243   wand->images->units=units;
11244   return(MagickTrue);
11245 }
11246 
11247 /*
11248 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11249 %                                                                             %
11250 %                                                                             %
11251 %                                                                             %
11252 %   M a g i c k S e t I m a g e V i r t u a l P i x e l M e t h o d           %
11253 %                                                                             %
11254 %                                                                             %
11255 %                                                                             %
11256 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11257 %
11258 %  MagickSetImageVirtualPixelMethod() sets the image virtual pixel method.
11259 %
11260 %  The format of the MagickSetImageVirtualPixelMethod method is:
11261 %
11262 %      VirtualPixelMethod MagickSetImageVirtualPixelMethod(MagickWand *wand,
11263 %        const VirtualPixelMethod method)
11264 %
11265 %  A description of each parameter follows:
11266 %
11267 %    o wand: the magick wand.
11268 %
11269 %    o method: the image virtual pixel method : UndefinedVirtualPixelMethod,
11270 %      ConstantVirtualPixelMethod,  EdgeVirtualPixelMethod,
11271 %      MirrorVirtualPixelMethod, or TileVirtualPixelMethod.
11272 %
11273 */
MagickSetImageVirtualPixelMethod(MagickWand * wand,const VirtualPixelMethod method)11274 WandExport VirtualPixelMethod MagickSetImageVirtualPixelMethod(MagickWand *wand,
11275   const VirtualPixelMethod method)
11276 {
11277   assert(wand != (MagickWand *) NULL);
11278   assert(wand->signature == MagickWandSignature);
11279   if (wand->debug != MagickFalse)
11280     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11281   if (wand->images == (Image *) NULL)
11282     return(UndefinedVirtualPixelMethod);
11283   return(SetImageVirtualPixelMethod(wand->images,method,wand->exception));
11284 }
11285 
11286 /*
11287 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11288 %                                                                             %
11289 %                                                                             %
11290 %                                                                             %
11291 %   M a g i c k S e t I m a g e W h i t e P o i n t                           %
11292 %                                                                             %
11293 %                                                                             %
11294 %                                                                             %
11295 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11296 %
11297 %  MagickSetImageWhitePoint() sets the image chromaticity white point.
11298 %
11299 %  The format of the MagickSetImageWhitePoint method is:
11300 %
11301 %      MagickBooleanType MagickSetImageWhitePoint(MagickWand *wand,
11302 %        const double x,const double y,const double z)
11303 %
11304 %  A description of each parameter follows:
11305 %
11306 %    o wand: the magick wand.
11307 %
11308 %    o x: the white x-point.
11309 %
11310 %    o y: the white y-point.
11311 %
11312 %    o z: the white z-point.
11313 %
11314 */
MagickSetImageWhitePoint(MagickWand * wand,const double x,const double y,const double z)11315 WandExport MagickBooleanType MagickSetImageWhitePoint(MagickWand *wand,
11316   const double x,const double y,const double z)
11317 {
11318   assert(wand != (MagickWand *) NULL);
11319   assert(wand->signature == MagickWandSignature);
11320   if (wand->debug != MagickFalse)
11321     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11322   if (wand->images == (Image *) NULL)
11323     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11324   wand->images->chromaticity.white_point.x=x;
11325   wand->images->chromaticity.white_point.y=y;
11326   wand->images->chromaticity.white_point.z=z;
11327   return(MagickTrue);
11328 }
11329 
11330 /*
11331 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11332 %                                                                             %
11333 %                                                                             %
11334 %                                                                             %
11335 %   M a g i c k S h a d e I m a g e C h a n n e l                             %
11336 %                                                                             %
11337 %                                                                             %
11338 %                                                                             %
11339 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11340 %
11341 %  MagickShadeImage() shines a distant light on an image to create a
11342 %  three-dimensional effect. You control the positioning of the light with
11343 %  azimuth and elevation; azimuth is measured in degrees off the x axis
11344 %  and elevation is measured in pixels above the Z axis.
11345 %
11346 %  The format of the MagickShadeImage method is:
11347 %
11348 %      MagickBooleanType MagickShadeImage(MagickWand *wand,
11349 %        const MagickBooleanType gray,const double azimuth,
11350 %        const double elevation)
11351 %
11352 %  A description of each parameter follows:
11353 %
11354 %    o wand: the magick wand.
11355 %
11356 %    o gray: A value other than zero shades the intensity of each pixel.
11357 %
11358 %    o azimuth, elevation:  Define the light source direction.
11359 %
11360 */
MagickShadeImage(MagickWand * wand,const MagickBooleanType gray,const double asimuth,const double elevation)11361 WandExport MagickBooleanType MagickShadeImage(MagickWand *wand,
11362   const MagickBooleanType gray,const double asimuth,const double elevation)
11363 {
11364   Image
11365     *shade_image;
11366 
11367   assert(wand != (MagickWand *) NULL);
11368   assert(wand->signature == MagickWandSignature);
11369   if (wand->debug != MagickFalse)
11370     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11371   if (wand->images == (Image *) NULL)
11372     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11373   shade_image=ShadeImage(wand->images,gray,asimuth,elevation,wand->exception);
11374   if (shade_image == (Image *) NULL)
11375     return(MagickFalse);
11376   ReplaceImageInList(&wand->images,shade_image);
11377   return(MagickTrue);
11378 }
11379 
11380 /*
11381 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11382 %                                                                             %
11383 %                                                                             %
11384 %                                                                             %
11385 %   M a g i c k S h a d o w I m a g e                                         %
11386 %                                                                             %
11387 %                                                                             %
11388 %                                                                             %
11389 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11390 %
11391 %  MagickShadowImage() simulates an image shadow.
11392 %
11393 %  The format of the MagickShadowImage method is:
11394 %
11395 %      MagickBooleanType MagickShadowImage(MagickWand *wand,const double alpha,
11396 %        const double sigma,const ssize_t x,const ssize_t y)
11397 %
11398 %  A description of each parameter follows:
11399 %
11400 %    o wand: the magick wand.
11401 %
11402 %    o alpha: percentage transparency.
11403 %
11404 %    o sigma: the standard deviation of the Gaussian, in pixels.
11405 %
11406 %    o x: the shadow x-offset.
11407 %
11408 %    o y: the shadow y-offset.
11409 %
11410 */
MagickShadowImage(MagickWand * wand,const double alpha,const double sigma,const ssize_t x,const ssize_t y)11411 WandExport MagickBooleanType MagickShadowImage(MagickWand *wand,
11412   const double alpha,const double sigma,const ssize_t x,const ssize_t y)
11413 {
11414   Image
11415     *shadow_image;
11416 
11417   assert(wand != (MagickWand *) NULL);
11418   assert(wand->signature == MagickWandSignature);
11419   if (wand->debug != MagickFalse)
11420     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11421   if (wand->images == (Image *) NULL)
11422     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11423   shadow_image=ShadowImage(wand->images,alpha,sigma,x,y,wand->exception);
11424   if (shadow_image == (Image *) NULL)
11425     return(MagickFalse);
11426   ReplaceImageInList(&wand->images,shadow_image);
11427   return(MagickTrue);
11428 }
11429 
11430 /*
11431 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11432 %                                                                             %
11433 %                                                                             %
11434 %                                                                             %
11435 %   M a g i c k S h a r p e n I m a g e                                       %
11436 %                                                                             %
11437 %                                                                             %
11438 %                                                                             %
11439 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11440 %
11441 %  MagickSharpenImage() sharpens an image.  We convolve the image with a
11442 %  Gaussian operator of the given radius and standard deviation (sigma).
11443 %  For reasonable results, the radius should be larger than sigma.  Use a
11444 %  radius of 0 and MagickSharpenImage() selects a suitable radius for you.
11445 %
11446 %  The format of the MagickSharpenImage method is:
11447 %
11448 %      MagickBooleanType MagickSharpenImage(MagickWand *wand,
11449 %        const double radius,const double sigma)
11450 %
11451 %  A description of each parameter follows:
11452 %
11453 %    o wand: the magick wand.
11454 %
11455 %    o radius: the radius of the Gaussian, in pixels, not counting the center
11456 %      pixel.
11457 %
11458 %    o sigma: the standard deviation of the Gaussian, in pixels.
11459 %
11460 */
MagickSharpenImage(MagickWand * wand,const double radius,const double sigma)11461 WandExport MagickBooleanType MagickSharpenImage(MagickWand *wand,
11462   const double radius,const double sigma)
11463 {
11464   Image
11465     *sharp_image;
11466 
11467   assert(wand != (MagickWand *) NULL);
11468   assert(wand->signature == MagickWandSignature);
11469   if (wand->debug != MagickFalse)
11470     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11471   if (wand->images == (Image *) NULL)
11472     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11473   sharp_image=SharpenImage(wand->images,radius,sigma,wand->exception);
11474   if (sharp_image == (Image *) NULL)
11475     return(MagickFalse);
11476   ReplaceImageInList(&wand->images,sharp_image);
11477   return(MagickTrue);
11478 }
11479 
11480 /*
11481 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11482 %                                                                             %
11483 %                                                                             %
11484 %                                                                             %
11485 %   M a g i c k S h a v e I m a g e                                           %
11486 %                                                                             %
11487 %                                                                             %
11488 %                                                                             %
11489 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11490 %
11491 %  MagickShaveImage() shaves pixels from the image edges.  It allocates the
11492 %  memory necessary for the new Image structure and returns a pointer to the
11493 %  new image.
11494 %
11495 %  The format of the MagickShaveImage method is:
11496 %
11497 %      MagickBooleanType MagickShaveImage(MagickWand *wand,
11498 %        const size_t columns,const size_t rows)
11499 %
11500 %  A description of each parameter follows:
11501 %
11502 %    o wand: the magick wand.
11503 %
11504 %    o columns: the number of columns in the scaled image.
11505 %
11506 %    o rows: the number of rows in the scaled image.
11507 %
11508 %
11509 */
MagickShaveImage(MagickWand * wand,const size_t columns,const size_t rows)11510 WandExport MagickBooleanType MagickShaveImage(MagickWand *wand,
11511   const size_t columns,const size_t rows)
11512 {
11513   Image
11514     *shave_image;
11515 
11516   RectangleInfo
11517     shave_info;
11518 
11519   assert(wand != (MagickWand *) NULL);
11520   assert(wand->signature == MagickWandSignature);
11521   if (wand->debug != MagickFalse)
11522     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11523   if (wand->images == (Image *) NULL)
11524     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11525   shave_info.width=columns;
11526   shave_info.height=rows;
11527   shave_info.x=0;
11528   shave_info.y=0;
11529   shave_image=ShaveImage(wand->images,&shave_info,wand->exception);
11530   if (shave_image == (Image *) NULL)
11531     return(MagickFalse);
11532   ReplaceImageInList(&wand->images,shave_image);
11533   return(MagickTrue);
11534 }
11535 
11536 /*
11537 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11538 %                                                                             %
11539 %                                                                             %
11540 %                                                                             %
11541 %   M a g i c k S h e a r I m a g e                                           %
11542 %                                                                             %
11543 %                                                                             %
11544 %                                                                             %
11545 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11546 %
11547 %  MagickShearImage() slides one edge of an image along the X or Y axis,
11548 %  creating a parallelogram.  An X direction shear slides an edge along the X
11549 %  axis, while a Y direction shear slides an edge along the Y axis.  The amount
11550 %  of the shear is controlled by a shear angle.  For X direction shears, x_shear
11551 %  is measured relative to the Y axis, and similarly, for Y direction shears
11552 %  y_shear is measured relative to the X axis.  Empty triangles left over from
11553 %  shearing the image are filled with the background color.
11554 %
11555 %  The format of the MagickShearImage method is:
11556 %
11557 %      MagickBooleanType MagickShearImage(MagickWand *wand,
11558 %        const PixelWand *background,const double x_shear,const double y_shear)
11559 %
11560 %  A description of each parameter follows:
11561 %
11562 %    o wand: the magick wand.
11563 %
11564 %    o background: the background pixel wand.
11565 %
11566 %    o x_shear: the number of degrees to shear the image.
11567 %
11568 %    o y_shear: the number of degrees to shear the image.
11569 %
11570 */
MagickShearImage(MagickWand * wand,const PixelWand * background,const double x_shear,const double y_shear)11571 WandExport MagickBooleanType MagickShearImage(MagickWand *wand,
11572   const PixelWand *background,const double x_shear,const double y_shear)
11573 {
11574   Image
11575     *shear_image;
11576 
11577   assert(wand != (MagickWand *) NULL);
11578   assert(wand->signature == MagickWandSignature);
11579   if (wand->debug != MagickFalse)
11580     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11581   if (wand->images == (Image *) NULL)
11582     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11583   PixelGetQuantumPacket(background,&wand->images->background_color);
11584   shear_image=ShearImage(wand->images,x_shear,y_shear,wand->exception);
11585   if (shear_image == (Image *) NULL)
11586     return(MagickFalse);
11587   ReplaceImageInList(&wand->images,shear_image);
11588   return(MagickTrue);
11589 }
11590 
11591 /*
11592 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11593 %                                                                             %
11594 %                                                                             %
11595 %                                                                             %
11596 %   M a g i c k S i g m o i d a l C o n t r a s t I m a g e                   %
11597 %                                                                             %
11598 %                                                                             %
11599 %                                                                             %
11600 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11601 %
11602 %  MagickSigmoidalContrastImage() adjusts the contrast of an image with a
11603 %  non-linear sigmoidal contrast algorithm.  Increase the contrast of the
11604 %  image using a sigmoidal transfer function without saturating highlights or
11605 %  shadows.  Contrast indicates how much to increase the contrast (0 is none;
11606 %  3 is typical; 20 is pushing it); mid-point indicates where midtones fall in
11607 %  the resultant image (0 is white; 50% is middle-gray; 100% is black).  Set
11608 %  sharpen to MagickTrue to increase the image contrast otherwise the contrast
11609 %  is reduced.
11610 %
11611 %  The format of the MagickSigmoidalContrastImage method is:
11612 %
11613 %      MagickBooleanType MagickSigmoidalContrastImage(MagickWand *wand,
11614 %        const MagickBooleanType sharpen,const double alpha,const double beta)
11615 %
11616 %  A description of each parameter follows:
11617 %
11618 %    o wand: the magick wand.
11619 %
11620 %    o sharpen: Increase or decrease image contrast.
11621 %
11622 %    o alpha: strength of the contrast, the larger the number the more
11623 %      'threshold-like' it becomes.
11624 %
11625 %    o beta: midpoint of the function as a color value 0 to QuantumRange.
11626 %
11627 */
MagickSigmoidalContrastImage(MagickWand * wand,const MagickBooleanType sharpen,const double alpha,const double beta)11628 WandExport MagickBooleanType MagickSigmoidalContrastImage(
11629   MagickWand *wand,const MagickBooleanType sharpen,const double alpha,
11630   const double beta)
11631 {
11632   MagickBooleanType
11633     status;
11634 
11635   assert(wand != (MagickWand *) NULL);
11636   assert(wand->signature == MagickWandSignature);
11637   if (wand->debug != MagickFalse)
11638     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11639   if (wand->images == (Image *) NULL)
11640     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11641   status=SigmoidalContrastImage(wand->images,sharpen,alpha,beta,
11642     wand->exception);
11643   return(status);
11644 }
11645 
11646 /*
11647 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11648 %                                                                             %
11649 %                                                                             %
11650 %                                                                             %
11651 %   M a g i c k S i m i l a r i t y I m a g e                                 %
11652 %                                                                             %
11653 %                                                                             %
11654 %                                                                             %
11655 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11656 %
11657 %  MagickSimilarityImage() compares the reference image of the image and
11658 %  returns the best match offset.  In addition, it returns a similarity image
11659 %  such that an exact match location is completely white and if none of the
11660 %  pixels match, black, otherwise some gray level in-between.
11661 %
11662 %  The format of the MagickSimilarityImage method is:
11663 %
11664 %      MagickWand *MagickSimilarityImage(MagickWand *wand,
11665 %        const MagickWand *reference,const MetricType metric,
11666 %        const double similarity_threshold,RectangeInfo *offset,
11667 %        double *similarity)
11668 %
11669 %  A description of each parameter follows:
11670 %
11671 %    o wand: the magick wand.
11672 %
11673 %    o reference: the reference wand.
11674 %
11675 %    o metric: the metric.
11676 %
11677 %    o similarity_threshold: minimum distortion for (sub)image match.
11678 %
11679 %    o offset: the best match offset of the reference image within the image.
11680 %
11681 %    o similarity: the computed similarity between the images.
11682 %
11683 */
MagickSimilarityImage(MagickWand * wand,const MagickWand * reference,const MetricType metric,const double similarity_threshold,RectangleInfo * offset,double * similarity)11684 WandExport MagickWand *MagickSimilarityImage(MagickWand *wand,
11685   const MagickWand *reference,const MetricType metric,
11686   const double similarity_threshold,RectangleInfo *offset,double *similarity)
11687 {
11688   Image
11689     *similarity_image;
11690 
11691   assert(wand != (MagickWand *) NULL);
11692   assert(wand->signature == MagickWandSignature);
11693   if (wand->debug != MagickFalse)
11694     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11695   if ((wand->images == (Image *) NULL) || (reference->images == (Image *) NULL))
11696     {
11697       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
11698         "ContainsNoImages","`%s'",wand->name);
11699       return((MagickWand *) NULL);
11700     }
11701   similarity_image=SimilarityImage(wand->images,reference->images,metric,
11702     similarity_threshold,offset,similarity,wand->exception);
11703   if (similarity_image == (Image *) NULL)
11704     return((MagickWand *) NULL);
11705   return(CloneMagickWandFromImages(wand,similarity_image));
11706 }
11707 
11708 /*
11709 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11710 %                                                                             %
11711 %                                                                             %
11712 %                                                                             %
11713 %   M a g i c k S k e t c h I m a g e                                         %
11714 %                                                                             %
11715 %                                                                             %
11716 %                                                                             %
11717 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11718 %
11719 %  MagickSketchImage() simulates a pencil sketch.  We convolve the image with
11720 %  a Gaussian operator of the given radius and standard deviation (sigma).
11721 %  For reasonable results, radius should be larger than sigma.  Use a
11722 %  radius of 0 and SketchImage() selects a suitable radius for you.
11723 %  Angle gives the angle of the blurring motion.
11724 %
11725 %  The format of the MagickSketchImage method is:
11726 %
11727 %      MagickBooleanType MagickSketchImage(MagickWand *wand,
11728 %        const double radius,const double sigma,const double angle)
11729 %
11730 %  A description of each parameter follows:
11731 %
11732 %    o wand: the magick wand.
11733 %
11734 %    o radius: the radius of the Gaussian, in pixels, not counting
11735 %      the center pixel.
11736 %
11737 %    o sigma: the standard deviation of the Gaussian, in pixels.
11738 %
11739 %    o angle: apply the effect along this angle.
11740 %
11741 */
MagickSketchImage(MagickWand * wand,const double radius,const double sigma,const double angle)11742 WandExport MagickBooleanType MagickSketchImage(MagickWand *wand,
11743   const double radius,const double sigma,const double angle)
11744 {
11745   Image
11746     *sketch_image;
11747 
11748   assert(wand != (MagickWand *) NULL);
11749   assert(wand->signature == MagickWandSignature);
11750   if (wand->debug != MagickFalse)
11751     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11752   if (wand->images == (Image *) NULL)
11753     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11754   sketch_image=SketchImage(wand->images,radius,sigma,angle,wand->exception);
11755   if (sketch_image == (Image *) NULL)
11756     return(MagickFalse);
11757   ReplaceImageInList(&wand->images,sketch_image);
11758   return(MagickTrue);
11759 }
11760 
11761 /*
11762 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11763 %                                                                             %
11764 %                                                                             %
11765 %                                                                             %
11766 %   M a g i c k S m u s h I m a g e s                                         %
11767 %                                                                             %
11768 %                                                                             %
11769 %                                                                             %
11770 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11771 %
11772 %  MagickSmushImages() takes all images from the current image pointer to the
11773 %  end of the image list and smushs them to each other top-to-bottom if the
11774 %  stack parameter is true, otherwise left-to-right.
11775 %
11776 %  The format of the MagickSmushImages method is:
11777 %
11778 %      MagickWand *MagickSmushImages(MagickWand *wand,
11779 %        const MagickBooleanType stack,const ssize_t offset)
11780 %
11781 %  A description of each parameter follows:
11782 %
11783 %    o wand: the magick wand.
11784 %
11785 %    o stack: By default, images are stacked left-to-right. Set stack to
11786 %      MagickTrue to stack them top-to-bottom.
11787 %
11788 %    o offset: minimum distance in pixels between images.
11789 %
11790 */
MagickSmushImages(MagickWand * wand,const MagickBooleanType stack,const ssize_t offset)11791 WandExport MagickWand *MagickSmushImages(MagickWand *wand,
11792   const MagickBooleanType stack,const ssize_t offset)
11793 {
11794   Image
11795     *smush_image;
11796 
11797   assert(wand != (MagickWand *) NULL);
11798   assert(wand->signature == MagickWandSignature);
11799   if (wand->debug != MagickFalse)
11800     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11801   if (wand->images == (Image *) NULL)
11802     return((MagickWand *) NULL);
11803   smush_image=SmushImages(wand->images,stack,offset,wand->exception);
11804   if (smush_image == (Image *) NULL)
11805     return((MagickWand *) NULL);
11806   return(CloneMagickWandFromImages(wand,smush_image));
11807 }
11808 
11809 /*
11810 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11811 %                                                                             %
11812 %                                                                             %
11813 %                                                                             %
11814 %     M a g i c k S o l a r i z e I m a g e                                   %
11815 %                                                                             %
11816 %                                                                             %
11817 %                                                                             %
11818 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11819 %
11820 %  MagickSolarizeImage() applies a special effect to the image, similar to the
11821 %  effect achieved in a photo darkroom by selectively exposing areas of photo
11822 %  sensitive paper to light.  Threshold ranges from 0 to QuantumRange and is a
11823 %  measure of the extent of the solarization.
11824 %
11825 %  The format of the MagickSolarizeImage method is:
11826 %
11827 %      MagickBooleanType MagickSolarizeImage(MagickWand *wand,
11828 %        const double threshold)
11829 %
11830 %  A description of each parameter follows:
11831 %
11832 %    o wand: the magick wand.
11833 %
11834 %    o threshold:  Define the extent of the solarization.
11835 %
11836 */
MagickSolarizeImage(MagickWand * wand,const double threshold)11837 WandExport MagickBooleanType MagickSolarizeImage(MagickWand *wand,
11838   const double threshold)
11839 {
11840   MagickBooleanType
11841     status;
11842 
11843   assert(wand != (MagickWand *) NULL);
11844   assert(wand->signature == MagickWandSignature);
11845   if (wand->debug != MagickFalse)
11846     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11847   if (wand->images == (Image *) NULL)
11848     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11849   status=SolarizeImage(wand->images,threshold,wand->exception);
11850   return(status);
11851 }
11852 
11853 /*
11854 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11855 %                                                                             %
11856 %                                                                             %
11857 %                                                                             %
11858 %   M a g i c k S p a r s e C o l o r I m a g e                               %
11859 %                                                                             %
11860 %                                                                             %
11861 %                                                                             %
11862 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11863 %
11864 %  MagickSparseColorImage(), given a set of coordinates, interpolates the
11865 %  colors found at those coordinates, across the whole image, using various
11866 %  methods.
11867 %
11868 %  The format of the MagickSparseColorImage method is:
11869 %
11870 %      MagickBooleanType MagickSparseColorImage(MagickWand *wand,
11871 %        const SparseColorMethod method,const size_t number_arguments,
11872 %        const double *arguments)
11873 %
11874 %  A description of each parameter follows:
11875 %
11876 %    o image: the image to be sparseed.
11877 %
11878 %    o method: the method of image sparseion.
11879 %
11880 %        ArcSparseColorion will always ignore source image offset, and always
11881 %        'bestfit' the destination image with the top left corner offset
11882 %        relative to the polar mapping center.
11883 %
11884 %        Bilinear has no simple inverse mapping so will not allow 'bestfit'
11885 %        style of image sparseion.
11886 %
11887 %        Affine, Perspective, and Bilinear, will do least squares fitting of
11888 %        the distrotion when more than the minimum number of control point
11889 %        pairs are provided.
11890 %
11891 %        Perspective, and Bilinear, will fall back to a Affine sparseion when
11892 %        less than 4 control point pairs are provided. While Affine sparseions
11893 %        will let you use any number of control point pairs, that is Zero pairs
11894 %        is a No-Op (viewport only) distrotion, one pair is a translation and
11895 %        two pairs of control points will do a scale-rotate-translate, without
11896 %        any shearing.
11897 %
11898 %    o number_arguments: the number of arguments given for this sparseion
11899 %      method.
11900 %
11901 %    o arguments: the arguments for this sparseion method.
11902 %
11903 */
MagickSparseColorImage(MagickWand * wand,const SparseColorMethod method,const size_t number_arguments,const double * arguments)11904 WandExport MagickBooleanType MagickSparseColorImage(MagickWand *wand,
11905   const SparseColorMethod method,const size_t number_arguments,
11906   const double *arguments)
11907 {
11908   Image
11909     *sparse_image;
11910 
11911   assert(wand != (MagickWand *) NULL);
11912   assert(wand->signature == MagickWandSignature);
11913   if (wand->debug != MagickFalse)
11914     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11915   if (wand->images == (Image *) NULL)
11916     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11917   sparse_image=SparseColorImage(wand->images,method,number_arguments,arguments,
11918     wand->exception);
11919   if (sparse_image == (Image *) NULL)
11920     return(MagickFalse);
11921   ReplaceImageInList(&wand->images,sparse_image);
11922   return(MagickTrue);
11923 }
11924 
11925 /*
11926 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11927 %                                                                             %
11928 %                                                                             %
11929 %                                                                             %
11930 %   M a g i c k S p l i c e I m a g e                                         %
11931 %                                                                             %
11932 %                                                                             %
11933 %                                                                             %
11934 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11935 %
11936 %  MagickSpliceImage() splices a solid color into the image.
11937 %
11938 %  The format of the MagickSpliceImage method is:
11939 %
11940 %      MagickBooleanType MagickSpliceImage(MagickWand *wand,
11941 %        const size_t width,const size_t height,const ssize_t x,
11942 %        const ssize_t y)
11943 %
11944 %  A description of each parameter follows:
11945 %
11946 %    o wand: the magick wand.
11947 %
11948 %    o width: the region width.
11949 %
11950 %    o height: the region height.
11951 %
11952 %    o x: the region x offset.
11953 %
11954 %    o y: the region y offset.
11955 %
11956 */
MagickSpliceImage(MagickWand * wand,const size_t width,const size_t height,const ssize_t x,const ssize_t y)11957 WandExport MagickBooleanType MagickSpliceImage(MagickWand *wand,
11958   const size_t width,const size_t height,const ssize_t x,
11959   const ssize_t y)
11960 {
11961   Image
11962     *splice_image;
11963 
11964   RectangleInfo
11965     splice;
11966 
11967   assert(wand != (MagickWand *) NULL);
11968   assert(wand->signature == MagickWandSignature);
11969   if (wand->debug != MagickFalse)
11970     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
11971   if (wand->images == (Image *) NULL)
11972     ThrowWandException(WandError,"ContainsNoImages",wand->name);
11973   splice.width=width;
11974   splice.height=height;
11975   splice.x=x;
11976   splice.y=y;
11977   splice_image=SpliceImage(wand->images,&splice,wand->exception);
11978   if (splice_image == (Image *) NULL)
11979     return(MagickFalse);
11980   ReplaceImageInList(&wand->images,splice_image);
11981   return(MagickTrue);
11982 }
11983 
11984 /*
11985 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11986 %                                                                             %
11987 %                                                                             %
11988 %                                                                             %
11989 %   M a g i c k S p r e a d I m a g e                                         %
11990 %                                                                             %
11991 %                                                                             %
11992 %                                                                             %
11993 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11994 %
11995 %  MagickSpreadImage() is a special effects method that randomly displaces each
11996 %  pixel in a block defined by the radius parameter.
11997 %
11998 %  The format of the MagickSpreadImage method is:
11999 %
12000 %      MagickBooleanType MagickSpreadImage(MagickWand *wand,
12001 %        const PixelInterpolateMethod method,const double radius)
12002 %
12003 %  A description of each parameter follows:
12004 %
12005 %    o wand: the magick wand.
12006 %
12007 %    o method:  intepolation method.
12008 %
12009 %    o radius:  Choose a random pixel in a neighborhood of this extent.
12010 %
12011 */
MagickSpreadImage(MagickWand * wand,const PixelInterpolateMethod method,const double radius)12012 WandExport MagickBooleanType MagickSpreadImage(MagickWand *wand,
12013   const PixelInterpolateMethod method,const double radius)
12014 {
12015   Image
12016     *spread_image;
12017 
12018   assert(wand != (MagickWand *) NULL);
12019   assert(wand->signature == MagickWandSignature);
12020   if (wand->debug != MagickFalse)
12021     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12022   if (wand->images == (Image *) NULL)
12023     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12024   spread_image=SpreadImage(wand->images,method,radius,wand->exception);
12025   if (spread_image == (Image *) NULL)
12026     return(MagickFalse);
12027   ReplaceImageInList(&wand->images,spread_image);
12028   return(MagickTrue);
12029 }
12030 
12031 /*
12032 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12033 %                                                                             %
12034 %                                                                             %
12035 %                                                                             %
12036 %   M a g i c k S t a t i s t i c I m a g e                                   %
12037 %                                                                             %
12038 %                                                                             %
12039 %                                                                             %
12040 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12041 %
12042 %  MagickStatisticImage() replace each pixel with corresponding statistic from
12043 %  the neighborhood of the specified width and height.
12044 %
12045 %  The format of the MagickStatisticImage method is:
12046 %
12047 %      MagickBooleanType MagickStatisticImage(MagickWand *wand,
12048 %        const StatisticType type,const double width,const size_t height)
12049 %
12050 %  A description of each parameter follows:
12051 %
12052 %    o wand: the magick wand.
12053 %
12054 %    o type: the statistic type (e.g. median, mode, etc.).
12055 %
12056 %    o width: the width of the pixel neighborhood.
12057 %
12058 %    o height: the height of the pixel neighborhood.
12059 %
12060 */
MagickStatisticImage(MagickWand * wand,const StatisticType type,const size_t width,const size_t height)12061 WandExport MagickBooleanType MagickStatisticImage(MagickWand *wand,
12062   const StatisticType type,const size_t width,const size_t height)
12063 {
12064   Image
12065     *statistic_image;
12066 
12067   assert(wand != (MagickWand *) NULL);
12068   assert(wand->signature == MagickWandSignature);
12069   if (wand->debug != MagickFalse)
12070     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12071   if (wand->images == (Image *) NULL)
12072     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12073   statistic_image=StatisticImage(wand->images,type,width,height,
12074     wand->exception);
12075   if (statistic_image == (Image *) NULL)
12076     return(MagickFalse);
12077   ReplaceImageInList(&wand->images,statistic_image);
12078   return(MagickTrue);
12079 }
12080 
12081 /*
12082 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12083 %                                                                             %
12084 %                                                                             %
12085 %                                                                             %
12086 %   M a g i c k S t e g a n o I m a g e                                       %
12087 %                                                                             %
12088 %                                                                             %
12089 %                                                                             %
12090 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12091 %
12092 %  MagickSteganoImage() hides a digital watermark within the image.
12093 %  Recover the hidden watermark later to prove that the authenticity of
12094 %  an image.  Offset defines the start position within the image to hide
12095 %  the watermark.
12096 %
12097 %  The format of the MagickSteganoImage method is:
12098 %
12099 %      MagickWand *MagickSteganoImage(MagickWand *wand,
12100 %        const MagickWand *watermark_wand,const ssize_t offset)
12101 %
12102 %  A description of each parameter follows:
12103 %
12104 %    o wand: the magick wand.
12105 %
12106 %    o watermark_wand: the watermark wand.
12107 %
12108 %    o offset: Start hiding at this offset into the image.
12109 %
12110 */
MagickSteganoImage(MagickWand * wand,const MagickWand * watermark_wand,const ssize_t offset)12111 WandExport MagickWand *MagickSteganoImage(MagickWand *wand,
12112   const MagickWand *watermark_wand,const ssize_t offset)
12113 {
12114   Image
12115     *stegano_image;
12116 
12117   assert(wand != (MagickWand *) NULL);
12118   assert(wand->signature == MagickWandSignature);
12119   if (wand->debug != MagickFalse)
12120     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12121   if ((wand->images == (Image *) NULL) ||
12122       (watermark_wand->images == (Image *) NULL))
12123     {
12124       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
12125         "ContainsNoImages","`%s'",wand->name);
12126       return((MagickWand *) NULL);
12127     }
12128   wand->images->offset=offset;
12129   stegano_image=SteganoImage(wand->images,watermark_wand->images,
12130     wand->exception);
12131   if (stegano_image == (Image *) NULL)
12132     return((MagickWand *) NULL);
12133   return(CloneMagickWandFromImages(wand,stegano_image));
12134 }
12135 
12136 /*
12137 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12138 %                                                                             %
12139 %                                                                             %
12140 %                                                                             %
12141 %   M a g i c k S t e r e o I m a g e                                         %
12142 %                                                                             %
12143 %                                                                             %
12144 %                                                                             %
12145 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12146 %
12147 %  MagickStereoImage() composites two images and produces a single image that
12148 %  is the composite of a left and right image of a stereo pair
12149 %
12150 %  The format of the MagickStereoImage method is:
12151 %
12152 %      MagickWand *MagickStereoImage(MagickWand *wand,
12153 %        const MagickWand *offset_wand)
12154 %
12155 %  A description of each parameter follows:
12156 %
12157 %    o wand: the magick wand.
12158 %
12159 %    o offset_wand: Another image wand.
12160 %
12161 */
MagickStereoImage(MagickWand * wand,const MagickWand * offset_wand)12162 WandExport MagickWand *MagickStereoImage(MagickWand *wand,
12163   const MagickWand *offset_wand)
12164 {
12165   Image
12166     *stereo_image;
12167 
12168   assert(wand != (MagickWand *) NULL);
12169   assert(wand->signature == MagickWandSignature);
12170   if (wand->debug != MagickFalse)
12171     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12172   if ((wand->images == (Image *) NULL) ||
12173       (offset_wand->images == (Image *) NULL))
12174     {
12175       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
12176         "ContainsNoImages","`%s'",wand->name);
12177       return((MagickWand *) NULL);
12178     }
12179   stereo_image=StereoImage(wand->images,offset_wand->images,wand->exception);
12180   if (stereo_image == (Image *) NULL)
12181     return((MagickWand *) NULL);
12182   return(CloneMagickWandFromImages(wand,stereo_image));
12183 }
12184 
12185 /*
12186 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12187 %                                                                             %
12188 %                                                                             %
12189 %                                                                             %
12190 %   M a g i c k S t r i p I m a g e                                           %
12191 %                                                                             %
12192 %                                                                             %
12193 %                                                                             %
12194 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12195 %
12196 %  MagickStripImage() strips an image of all profiles and comments.
12197 %
12198 %  The format of the MagickStripImage method is:
12199 %
12200 %      MagickBooleanType MagickStripImage(MagickWand *wand)
12201 %
12202 %  A description of each parameter follows:
12203 %
12204 %    o wand: the magick wand.
12205 %
12206 */
MagickStripImage(MagickWand * wand)12207 WandExport MagickBooleanType MagickStripImage(MagickWand *wand)
12208 {
12209   assert(wand != (MagickWand *) NULL);
12210   assert(wand->signature == MagickWandSignature);
12211   if (wand->debug != MagickFalse)
12212     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12213   if (wand->images == (Image *) NULL)
12214     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12215   return(StripImage(wand->images,wand->exception));
12216 }
12217 
12218 /*
12219 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12220 %                                                                             %
12221 %                                                                             %
12222 %                                                                             %
12223 %   M a g i c k S w i r l I m a g e                                           %
12224 %                                                                             %
12225 %                                                                             %
12226 %                                                                             %
12227 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12228 %
12229 %  MagickSwirlImage() swirls the pixels about the center of the image, where
12230 %  degrees indicates the sweep of the arc through which each pixel is moved.
12231 %  You get a more dramatic effect as the degrees move from 1 to 360.
12232 %
12233 %  The format of the MagickSwirlImage method is:
12234 %
12235 %      MagickBooleanType MagickSwirlImage(MagickWand *wand,const double degrees,
12236 %        const PixelInterpolateMethod method)
12237 %
12238 %  A description of each parameter follows:
12239 %
12240 %    o wand: the magick wand.
12241 %
12242 %    o degrees: Define the tightness of the swirling effect.
12243 %
12244 %    o method: the pixel interpolation method.
12245 %
12246 */
MagickSwirlImage(MagickWand * wand,const double degrees,const PixelInterpolateMethod method)12247 WandExport MagickBooleanType MagickSwirlImage(MagickWand *wand,
12248   const double degrees,const PixelInterpolateMethod method)
12249 {
12250   Image
12251     *swirl_image;
12252 
12253   assert(wand != (MagickWand *) NULL);
12254   assert(wand->signature == MagickWandSignature);
12255   if (wand->debug != MagickFalse)
12256     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12257   if (wand->images == (Image *) NULL)
12258     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12259   swirl_image=SwirlImage(wand->images,degrees,method,wand->exception);
12260   if (swirl_image == (Image *) NULL)
12261     return(MagickFalse);
12262   ReplaceImageInList(&wand->images,swirl_image);
12263   return(MagickTrue);
12264 }
12265 
12266 /*
12267 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12268 %                                                                             %
12269 %                                                                             %
12270 %                                                                             %
12271 %   M a g i c k T e x t u r e I m a g e                                       %
12272 %                                                                             %
12273 %                                                                             %
12274 %                                                                             %
12275 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12276 %
12277 %  MagickTextureImage() repeatedly tiles the texture image across and down the
12278 %  image canvas.
12279 %
12280 %  The format of the MagickTextureImage method is:
12281 %
12282 %      MagickWand *MagickTextureImage(MagickWand *wand,
12283 %        const MagickWand *texture_wand)
12284 %
12285 %  A description of each parameter follows:
12286 %
12287 %    o wand: the magick wand.
12288 %
12289 %    o texture_wand: the texture wand
12290 %
12291 */
MagickTextureImage(MagickWand * wand,const MagickWand * texture_wand)12292 WandExport MagickWand *MagickTextureImage(MagickWand *wand,
12293   const MagickWand *texture_wand)
12294 {
12295   Image
12296     *texture_image;
12297 
12298   MagickBooleanType
12299     status;
12300 
12301   assert(wand != (MagickWand *) NULL);
12302   assert(wand->signature == MagickWandSignature);
12303   if (wand->debug != MagickFalse)
12304     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12305   if ((wand->images == (Image *) NULL) ||
12306       (texture_wand->images == (Image *) NULL))
12307     {
12308       (void) ThrowMagickException(wand->exception,GetMagickModule(),WandError,
12309         "ContainsNoImages","`%s'",wand->name);
12310       return((MagickWand *) NULL);
12311     }
12312   texture_image=CloneImage(wand->images,0,0,MagickTrue,wand->exception);
12313   if (texture_image == (Image *) NULL)
12314     return((MagickWand *) NULL);
12315   status=TextureImage(texture_image,texture_wand->images,wand->exception);
12316   if (status == MagickFalse)
12317     {
12318       texture_image=DestroyImage(texture_image);
12319       return((MagickWand *) NULL);
12320     }
12321   return(CloneMagickWandFromImages(wand,texture_image));
12322 }
12323 
12324 /*
12325 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12326 %                                                                             %
12327 %                                                                             %
12328 %                                                                             %
12329 %   M a g i c k T h r e s h o l d I m a g e                                   %
12330 %                                                                             %
12331 %                                                                             %
12332 %                                                                             %
12333 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12334 %
12335 %  MagickThresholdImage() changes the value of individual pixels based on
12336 %  the intensity of each pixel compared to threshold.  The result is a
12337 %  high-contrast, two color image.
12338 %
12339 %  The format of the MagickThresholdImage method is:
12340 %
12341 %      MagickBooleanType MagickThresholdImage(MagickWand *wand,
12342 %        const double threshold)
12343 %      MagickBooleanType MagickThresholdImageChannel(MagickWand *wand,
12344 %        const ChannelType channel,const double threshold)
12345 %
12346 %  A description of each parameter follows:
12347 %
12348 %    o wand: the magick wand.
12349 %
12350 %    o channel: the image channel(s).
12351 %
12352 %    o threshold: Define the threshold value.
12353 %
12354 */
MagickThresholdImage(MagickWand * wand,const double threshold)12355 WandExport MagickBooleanType MagickThresholdImage(MagickWand *wand,
12356   const double threshold)
12357 {
12358   MagickBooleanType
12359     status;
12360 
12361   status=MagickThresholdImageChannel(wand,DefaultChannels,threshold);
12362   return(status);
12363 }
12364 
MagickThresholdImageChannel(MagickWand * wand,const ChannelType channel,const double threshold)12365 WandExport MagickBooleanType MagickThresholdImageChannel(MagickWand *wand,
12366   const ChannelType channel,const double threshold)
12367 {
12368   MagickBooleanType
12369     status;
12370 
12371   ChannelType
12372     channel_mask;
12373 
12374   assert(wand != (MagickWand *) NULL);
12375   assert(wand->signature == MagickWandSignature);
12376   if (wand->debug != MagickFalse)
12377     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12378   if (wand->images == (Image *) NULL)
12379     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12380   channel_mask=SetImageChannelMask(wand->images,channel);
12381   status=BilevelImage(wand->images,threshold,wand->exception);
12382   (void) SetImageChannelMask(wand->images,channel_mask);
12383   return(status);
12384 }
12385 
12386 /*
12387 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12388 %                                                                             %
12389 %                                                                             %
12390 %                                                                             %
12391 %   M a g i c k T h u m b n a i l I m a g e                                   %
12392 %                                                                             %
12393 %                                                                             %
12394 %                                                                             %
12395 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12396 %
12397 %  MagickThumbnailImage()  changes the size of an image to the given dimensions
12398 %  and removes any associated profiles.  The goal is to produce small low cost
12399 %  thumbnail images suited for display on the Web.
12400 %
12401 %  The format of the MagickThumbnailImage method is:
12402 %
12403 %      MagickBooleanType MagickThumbnailImage(MagickWand *wand,
12404 %        const size_t columns,const size_t rows)
12405 %
12406 %  A description of each parameter follows:
12407 %
12408 %    o wand: the magick wand.
12409 %
12410 %    o columns: the number of columns in the scaled image.
12411 %
12412 %    o rows: the number of rows in the scaled image.
12413 %
12414 */
MagickThumbnailImage(MagickWand * wand,const size_t columns,const size_t rows)12415 WandExport MagickBooleanType MagickThumbnailImage(MagickWand *wand,
12416   const size_t columns,const size_t rows)
12417 {
12418   Image
12419     *thumbnail_image;
12420 
12421   assert(wand != (MagickWand *) NULL);
12422   assert(wand->signature == MagickWandSignature);
12423   if (wand->debug != MagickFalse)
12424     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12425   if (wand->images == (Image *) NULL)
12426     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12427   thumbnail_image=ThumbnailImage(wand->images,columns,rows,wand->exception);
12428   if (thumbnail_image == (Image *) NULL)
12429     return(MagickFalse);
12430   ReplaceImageInList(&wand->images,thumbnail_image);
12431   return(MagickTrue);
12432 }
12433 
12434 /*
12435 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12436 %                                                                             %
12437 %                                                                             %
12438 %                                                                             %
12439 %   M a g i c k T i n t I m a g e                                             %
12440 %                                                                             %
12441 %                                                                             %
12442 %                                                                             %
12443 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12444 %
12445 %  MagickTintImage() applies a color vector to each pixel in the image.  The
12446 %  length of the vector is 0 for black and white and at its maximum for the
12447 %  midtones.  The vector weighting function is
12448 %  f(x)=(1-(4.0*((x-0.5)*(x-0.5)))).
12449 %
12450 %  The format of the MagickTintImage method is:
12451 %
12452 %      MagickBooleanType MagickTintImage(MagickWand *wand,
12453 %        const PixelWand *tint,const PixelWand *blend)
12454 %
12455 %  A description of each parameter follows:
12456 %
12457 %    o wand: the magick wand.
12458 %
12459 %    o tint: the tint pixel wand.
12460 %
12461 %    o alpha: the alpha pixel wand.
12462 %
12463 */
MagickTintImage(MagickWand * wand,const PixelWand * tint,const PixelWand * blend)12464 WandExport MagickBooleanType MagickTintImage(MagickWand *wand,
12465   const PixelWand *tint,const PixelWand *blend)
12466 {
12467   char
12468     percent_blend[MagickPathExtent];
12469 
12470   Image
12471     *tint_image;
12472 
12473   PixelInfo
12474     target;
12475 
12476   assert(wand != (MagickWand *) NULL);
12477   assert(wand->signature == MagickWandSignature);
12478   if (wand->debug != MagickFalse)
12479     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12480   if (wand->images == (Image *) NULL)
12481     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12482   if (wand->images->colorspace != CMYKColorspace)
12483     (void) FormatLocaleString(percent_blend,MagickPathExtent,
12484       "%g,%g,%g,%g",(double) (100.0*QuantumScale*
12485       PixelGetRedQuantum(blend)),(double) (100.0*QuantumScale*
12486       PixelGetGreenQuantum(blend)),(double) (100.0*QuantumScale*
12487       PixelGetBlueQuantum(blend)),(double) (100.0*QuantumScale*
12488       PixelGetAlphaQuantum(blend)));
12489   else
12490     (void) FormatLocaleString(percent_blend,MagickPathExtent,
12491       "%g,%g,%g,%g,%g",(double) (100.0*QuantumScale*
12492       PixelGetCyanQuantum(blend)),(double) (100.0*QuantumScale*
12493       PixelGetMagentaQuantum(blend)),(double) (100.0*QuantumScale*
12494       PixelGetYellowQuantum(blend)),(double) (100.0*QuantumScale*
12495       PixelGetBlackQuantum(blend)),(double) (100.0*QuantumScale*
12496       PixelGetAlphaQuantum(blend)));
12497   target=PixelGetPixel(tint);
12498   tint_image=TintImage(wand->images,percent_blend,&target,wand->exception);
12499   if (tint_image == (Image *) NULL)
12500     return(MagickFalse);
12501   ReplaceImageInList(&wand->images,tint_image);
12502   return(MagickTrue);
12503 }
12504 
12505 /*
12506 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12507 %                                                                             %
12508 %                                                                             %
12509 %                                                                             %
12510 %   M a g i c k T r a n s f o r m I m a g e C o l o r s p a c e               %
12511 %                                                                             %
12512 %                                                                             %
12513 %                                                                             %
12514 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12515 %
12516 %  MagickTransformImageColorspace() transform the image colorspace, setting
12517 %  the images colorspace while transforming the images data to that
12518 %  colorspace.
12519 %
12520 %  The format of the MagickTransformImageColorspace method is:
12521 %
12522 %      MagickBooleanType MagickTransformImageColorspace(MagickWand *wand,
12523 %        const ColorspaceType colorspace)
12524 %
12525 %  A description of each parameter follows:
12526 %
12527 %    o wand: the magick wand.
12528 %
12529 %    o colorspace: the image colorspace:   UndefinedColorspace,
12530 %      sRGBColorspace, RGBColorspace, GRAYColorspace,
12531 %      OHTAColorspace, XYZColorspace, YCbCrColorspace,
12532 %      YCCColorspace, YIQColorspace, YPbPrColorspace,
12533 %      YPbPrColorspace, YUVColorspace, CMYKColorspace,
12534 %      HSLColorspace, HWBColorspace.
12535 %
12536 */
MagickTransformImageColorspace(MagickWand * wand,const ColorspaceType colorspace)12537 WandExport MagickBooleanType MagickTransformImageColorspace(MagickWand *wand,
12538   const ColorspaceType colorspace)
12539 {
12540   assert(wand != (MagickWand *) NULL);
12541   assert(wand->signature == MagickWandSignature);
12542   if (wand->debug != MagickFalse)
12543     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12544   if (wand->images == (Image *) NULL)
12545     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12546   return(TransformImageColorspace(wand->images,colorspace,wand->exception));
12547 }
12548 
12549 /*
12550 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12551 %                                                                             %
12552 %                                                                             %
12553 %                                                                             %
12554 %   M a g i c k T r a n s p a r e n t P a i n t I m a g e                     %
12555 %                                                                             %
12556 %                                                                             %
12557 %                                                                             %
12558 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12559 %
12560 %  MagickTransparentPaintImage() changes any pixel that matches color with the
12561 %  color defined by fill.
12562 %
12563 %  The format of the MagickTransparentPaintImage method is:
12564 %
12565 %      MagickBooleanType MagickTransparentPaintImage(MagickWand *wand,
12566 %        const PixelWand *target,const double alpha,const double fuzz,
12567 %        const MagickBooleanType invert)
12568 %
12569 %  A description of each parameter follows:
12570 %
12571 %    o wand: the magick wand.
12572 %
12573 %    o target: Change this target color to specified alpha value within
12574 %      the image.
12575 %
12576 %    o alpha: the level of transparency: 1.0 is fully opaque and 0.0 is fully
12577 %      transparent.
12578 %
12579 %    o fuzz: By default target must match a particular pixel color
12580 %      exactly.  However, in many cases two colors may differ by a small amount.
12581 %      The fuzz member of image defines how much tolerance is acceptable to
12582 %      consider two colors as the same.  For example, set fuzz to 10 and the
12583 %      color red at intensities of 100 and 102 respectively are now interpreted
12584 %      as the same color for the purposes of the floodfill.
12585 %
12586 %    o invert: paint any pixel that does not match the target color.
12587 %
12588 */
MagickTransparentPaintImage(MagickWand * wand,const PixelWand * target,const double alpha,const double fuzz,const MagickBooleanType invert)12589 WandExport MagickBooleanType MagickTransparentPaintImage(MagickWand *wand,
12590   const PixelWand *target,const double alpha,const double fuzz,
12591   const MagickBooleanType invert)
12592 {
12593   MagickBooleanType
12594     status;
12595 
12596   PixelInfo
12597     target_pixel;
12598 
12599   assert(wand != (MagickWand *) NULL);
12600   assert(wand->signature == MagickWandSignature);
12601   if (wand->debug != MagickFalse)
12602     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12603   if (wand->images == (Image *) NULL)
12604     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12605   PixelGetMagickColor(target,&target_pixel);
12606   wand->images->fuzz=fuzz;
12607   status=TransparentPaintImage(wand->images,&target_pixel,ClampToQuantum(
12608     QuantumRange*alpha),invert,wand->exception);
12609   return(status);
12610 }
12611 
12612 /*
12613 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12614 %                                                                             %
12615 %                                                                             %
12616 %                                                                             %
12617 %   M a g i c k T r a n s p o s e I m a g e                                   %
12618 %                                                                             %
12619 %                                                                             %
12620 %                                                                             %
12621 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12622 %
12623 %  MagickTransposeImage() creates a vertical mirror image by reflecting the
12624 %  pixels around the central x-axis while rotating them 90-degrees.
12625 %
12626 %  The format of the MagickTransposeImage method is:
12627 %
12628 %      MagickBooleanType MagickTransposeImage(MagickWand *wand)
12629 %
12630 %  A description of each parameter follows:
12631 %
12632 %    o wand: the magick wand.
12633 %
12634 */
MagickTransposeImage(MagickWand * wand)12635 WandExport MagickBooleanType MagickTransposeImage(MagickWand *wand)
12636 {
12637   Image
12638     *transpose_image;
12639 
12640   assert(wand != (MagickWand *) NULL);
12641   assert(wand->signature == MagickWandSignature);
12642   if (wand->debug != MagickFalse)
12643     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12644   if (wand->images == (Image *) NULL)
12645     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12646   transpose_image=TransposeImage(wand->images,wand->exception);
12647   if (transpose_image == (Image *) NULL)
12648     return(MagickFalse);
12649   ReplaceImageInList(&wand->images,transpose_image);
12650   return(MagickTrue);
12651 }
12652 
12653 /*
12654 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12655 %                                                                             %
12656 %                                                                             %
12657 %                                                                             %
12658 %   M a g i c k T r a n s v e r s e I m a g e                                 %
12659 %                                                                             %
12660 %                                                                             %
12661 %                                                                             %
12662 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12663 %
12664 %  MagickTransverseImage() creates a horizontal mirror image by reflecting the
12665 %  pixels around the central y-axis while rotating them 270-degrees.
12666 %
12667 %  The format of the MagickTransverseImage method is:
12668 %
12669 %      MagickBooleanType MagickTransverseImage(MagickWand *wand)
12670 %
12671 %  A description of each parameter follows:
12672 %
12673 %    o wand: the magick wand.
12674 %
12675 */
MagickTransverseImage(MagickWand * wand)12676 WandExport MagickBooleanType MagickTransverseImage(MagickWand *wand)
12677 {
12678   Image
12679     *transverse_image;
12680 
12681   assert(wand != (MagickWand *) NULL);
12682   assert(wand->signature == MagickWandSignature);
12683   if (wand->debug != MagickFalse)
12684     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12685   if (wand->images == (Image *) NULL)
12686     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12687   transverse_image=TransverseImage(wand->images,wand->exception);
12688   if (transverse_image == (Image *) NULL)
12689     return(MagickFalse);
12690   ReplaceImageInList(&wand->images,transverse_image);
12691   return(MagickTrue);
12692 }
12693 
12694 /*
12695 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12696 %                                                                             %
12697 %                                                                             %
12698 %                                                                             %
12699 %   M a g i c k T r i m I m a g e                                             %
12700 %                                                                             %
12701 %                                                                             %
12702 %                                                                             %
12703 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12704 %
12705 %  MagickTrimImage() remove edges that are the background color from the image.
12706 %
12707 %  The format of the MagickTrimImage method is:
12708 %
12709 %      MagickBooleanType MagickTrimImage(MagickWand *wand,const double fuzz)
12710 %
12711 %  A description of each parameter follows:
12712 %
12713 %    o wand: the magick wand.
12714 %
12715 %    o fuzz: By default target must match a particular pixel color
12716 %      exactly.  However, in many cases two colors may differ by a small amount.
12717 %      The fuzz member of image defines how much tolerance is acceptable to
12718 %      consider two colors as the same.  For example, set fuzz to 10 and the
12719 %      color red at intensities of 100 and 102 respectively are now interpreted
12720 %      as the same color for the purposes of the floodfill.
12721 %
12722 */
MagickTrimImage(MagickWand * wand,const double fuzz)12723 WandExport MagickBooleanType MagickTrimImage(MagickWand *wand,const double fuzz)
12724 {
12725   Image
12726     *trim_image;
12727 
12728   assert(wand != (MagickWand *) NULL);
12729   assert(wand->signature == MagickWandSignature);
12730   if (wand->debug != MagickFalse)
12731     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12732   if (wand->images == (Image *) NULL)
12733     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12734   wand->images->fuzz=fuzz;
12735   trim_image=TrimImage(wand->images,wand->exception);
12736   if (trim_image == (Image *) NULL)
12737     return(MagickFalse);
12738   ReplaceImageInList(&wand->images,trim_image);
12739   return(MagickTrue);
12740 }
12741 
12742 /*
12743 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12744 %                                                                             %
12745 %                                                                             %
12746 %                                                                             %
12747 %   M a g i c k U n i q u e I m a g e C o l o r s                             %
12748 %                                                                             %
12749 %                                                                             %
12750 %                                                                             %
12751 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12752 %
12753 %  MagickUniqueImageColors() discards all but one of any pixel color.
12754 %
12755 %  The format of the MagickUniqueImageColors method is:
12756 %
12757 %      MagickBooleanType MagickUniqueImageColors(MagickWand *wand)
12758 %
12759 %  A description of each parameter follows:
12760 %
12761 %    o wand: the magick wand.
12762 %
12763 */
MagickUniqueImageColors(MagickWand * wand)12764 WandExport MagickBooleanType MagickUniqueImageColors(MagickWand *wand)
12765 {
12766   Image
12767     *unique_image;
12768 
12769   assert(wand != (MagickWand *) NULL);
12770   assert(wand->signature == MagickWandSignature);
12771   if (wand->debug != MagickFalse)
12772     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12773   if (wand->images == (Image *) NULL)
12774     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12775   unique_image=UniqueImageColors(wand->images,wand->exception);
12776   if (unique_image == (Image *) NULL)
12777     return(MagickFalse);
12778   ReplaceImageInList(&wand->images,unique_image);
12779   return(MagickTrue);
12780 }
12781 
12782 /*
12783 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12784 %                                                                             %
12785 %                                                                             %
12786 %                                                                             %
12787 %   M a g i c k U n s h a r p M a s k I m a g e                               %
12788 %                                                                             %
12789 %                                                                             %
12790 %                                                                             %
12791 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12792 %
12793 %  MagickUnsharpMaskImage() sharpens an image.  We convolve the image with a
12794 %  Gaussian operator of the given radius and standard deviation (sigma).
12795 %  For reasonable results, radius should be larger than sigma.  Use a radius
12796 %  of 0 and UnsharpMaskImage() selects a suitable radius for you.
12797 %
12798 %  The format of the MagickUnsharpMaskImage method is:
12799 %
12800 %      MagickBooleanType MagickUnsharpMaskImage(MagickWand *wand,
12801 %        const double radius,const double sigma,const double gain,
12802 %        const double threshold)
12803 %
12804 %  A description of each parameter follows:
12805 %
12806 %    o wand: the magick wand.
12807 %
12808 %    o radius: the radius of the Gaussian, in pixels, not counting the center
12809 %      pixel.
12810 %
12811 %    o sigma: the standard deviation of the Gaussian, in pixels.
12812 %
12813 %    o gain: the percentage of the difference between the original and the
12814 %      blur image that is added back into the original.
12815 %
12816 %    o threshold: the threshold in pixels needed to apply the diffence gain.
12817 %
12818 */
MagickUnsharpMaskImage(MagickWand * wand,const double radius,const double sigma,const double gain,const double threshold)12819 WandExport MagickBooleanType MagickUnsharpMaskImage(MagickWand *wand,
12820   const double radius,const double sigma,const double gain,
12821   const double threshold)
12822 {
12823   Image
12824     *unsharp_image;
12825 
12826   assert(wand != (MagickWand *) NULL);
12827   assert(wand->signature == MagickWandSignature);
12828   if (wand->debug != MagickFalse)
12829     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12830   if (wand->images == (Image *) NULL)
12831     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12832   unsharp_image=UnsharpMaskImage(wand->images,radius,sigma,gain,threshold,
12833     wand->exception);
12834   if (unsharp_image == (Image *) NULL)
12835     return(MagickFalse);
12836   ReplaceImageInList(&wand->images,unsharp_image);
12837   return(MagickTrue);
12838 }
12839 
12840 /*
12841 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12842 %                                                                             %
12843 %                                                                             %
12844 %                                                                             %
12845 %   M a g i c k V i g n e t t e I m a g e                                     %
12846 %                                                                             %
12847 %                                                                             %
12848 %                                                                             %
12849 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12850 %
12851 %  MagickVignetteImage() softens the edges of the image in vignette style.
12852 %
12853 %  The format of the MagickVignetteImage method is:
12854 %
12855 %      MagickBooleanType MagickVignetteImage(MagickWand *wand,
12856 %        const double radius,const double sigma,const ssize_t x,
12857 %        const ssize_t y)
12858 %
12859 %  A description of each parameter follows:
12860 %
12861 %    o wand: the magick wand.
12862 %
12863 %    o radius: the radius.
12864 %
12865 %    o sigma: the sigma.
12866 %
12867 %    o x, y:  Define the x and y ellipse offset.
12868 %
12869 */
MagickVignetteImage(MagickWand * wand,const double radius,const double sigma,const ssize_t x,const ssize_t y)12870 WandExport MagickBooleanType MagickVignetteImage(MagickWand *wand,
12871   const double radius,const double sigma,const ssize_t x,const ssize_t y)
12872 {
12873   Image
12874     *vignette_image;
12875 
12876   assert(wand != (MagickWand *) NULL);
12877   assert(wand->signature == MagickWandSignature);
12878   if (wand->debug != MagickFalse)
12879     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12880   if (wand->images == (Image *) NULL)
12881     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12882   vignette_image=VignetteImage(wand->images,radius,sigma,x,y,wand->exception);
12883   if (vignette_image == (Image *) NULL)
12884     return(MagickFalse);
12885   ReplaceImageInList(&wand->images,vignette_image);
12886   return(MagickTrue);
12887 }
12888 
12889 /*
12890 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12891 %                                                                             %
12892 %                                                                             %
12893 %                                                                             %
12894 %   M a g i c k W a v e I m a g e                                             %
12895 %                                                                             %
12896 %                                                                             %
12897 %                                                                             %
12898 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12899 %
12900 %  MagickWaveImage()  creates a "ripple" effect in the image by shifting
12901 %  the pixels vertically along a sine wave whose amplitude and wavelength
12902 %  is specified by the given parameters.
12903 %
12904 %  The format of the MagickWaveImage method is:
12905 %
12906 %      MagickBooleanType MagickWaveImage(MagickWand *wand,
12907 %        const double amplitude,const double wave_length,
12908 %        const PixelInterpolateMethod method)
12909 %
12910 %  A description of each parameter follows:
12911 %
12912 %    o wand: the magick wand.
12913 %
12914 %    o amplitude, wave_length:  Define the amplitude and wave length of the
12915 %      sine wave.
12916 %
12917 %    o method: the pixel interpolation method.
12918 %
12919 */
MagickWaveImage(MagickWand * wand,const double amplitude,const double wave_length,const PixelInterpolateMethod method)12920 WandExport MagickBooleanType MagickWaveImage(MagickWand *wand,
12921   const double amplitude,const double wave_length,
12922   const PixelInterpolateMethod method)
12923 {
12924   Image
12925     *wave_image;
12926 
12927   assert(wand != (MagickWand *) NULL);
12928   assert(wand->signature == MagickWandSignature);
12929   if (wand->debug != MagickFalse)
12930     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12931   if (wand->images == (Image *) NULL)
12932     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12933   wave_image=WaveImage(wand->images,amplitude,wave_length,method,
12934     wand->exception);
12935   if (wave_image == (Image *) NULL)
12936     return(MagickFalse);
12937   ReplaceImageInList(&wand->images,wave_image);
12938   return(MagickTrue);
12939 }
12940 
12941 /*
12942 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12943 %                                                                             %
12944 %                                                                             %
12945 %                                                                             %
12946 %   M a g i c k W a v e l e t D e n o i s e I m a g e                         %
12947 %                                                                             %
12948 %                                                                             %
12949 %                                                                             %
12950 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12951 %
12952 %  MagickWaveletDenoiseImage() removes noise from the image using a wavelet
12953 %  transform.  The wavelet transform is a fast hierarchical scheme for
12954 %  processing an image using a set of consecutive lowpass and high_pass filters,
12955 %  followed by a decimation.  This results in a decomposition into different
12956 %  scales which can be regarded as different “frequency bands”, determined by
12957 %  the mother wavelet.
12958 %
12959 %  The format of the MagickWaveletDenoiseImage method is:
12960 %
12961 %      MagickBooleanType MagickWaveletDenoiseImage(MagickWand *wand,
12962 %        const double threshold,const double softness)
12963 %
12964 %  A description of each parameter follows:
12965 %
12966 %    o wand: the magick wand.
12967 %
12968 %    o threshold: set the threshold for smoothing.
12969 %
12970 %    o softness: attenuate the smoothing threshold.
12971 %
12972 */
MagickWaveletDenoiseImage(MagickWand * wand,const double threshold,const double softness)12973 WandExport MagickBooleanType MagickWaveletDenoiseImage(MagickWand *wand,
12974   const double threshold,const double softness)
12975 {
12976   Image
12977     *noise_image;
12978 
12979   assert(wand != (MagickWand *) NULL);
12980   assert(wand->signature == MagickWandSignature);
12981   if (wand->debug != MagickFalse)
12982     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
12983   if (wand->images == (Image *) NULL)
12984     ThrowWandException(WandError,"ContainsNoImages",wand->name);
12985   noise_image=WaveletDenoiseImage(wand->images,threshold,softness,
12986     wand->exception);
12987   if (noise_image == (Image *) NULL)
12988     return(MagickFalse);
12989   ReplaceImageInList(&wand->images,noise_image);
12990   return(MagickTrue);
12991 }
12992 
12993 /*
12994 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12995 %                                                                             %
12996 %                                                                             %
12997 %                                                                             %
12998 %   M a g i c k W h i t e T h r e s h o l d I m a g e                         %
12999 %                                                                             %
13000 %                                                                             %
13001 %                                                                             %
13002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13003 %
13004 %  MagickWhiteThresholdImage() is like ThresholdImage() but  force all pixels
13005 %  above the threshold into white while leaving all pixels below the threshold
13006 %  unchanged.
13007 %
13008 %  The format of the MagickWhiteThresholdImage method is:
13009 %
13010 %      MagickBooleanType MagickWhiteThresholdImage(MagickWand *wand,
13011 %        const PixelWand *threshold)
13012 %
13013 %  A description of each parameter follows:
13014 %
13015 %    o wand: the magick wand.
13016 %
13017 %    o threshold: the pixel wand.
13018 %
13019 */
MagickWhiteThresholdImage(MagickWand * wand,const PixelWand * threshold)13020 WandExport MagickBooleanType MagickWhiteThresholdImage(MagickWand *wand,
13021   const PixelWand *threshold)
13022 {
13023   char
13024     thresholds[MagickPathExtent];
13025 
13026   assert(wand != (MagickWand *) NULL);
13027   assert(wand->signature == MagickWandSignature);
13028   if (wand->debug != MagickFalse)
13029     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
13030   if (wand->images == (Image *) NULL)
13031     ThrowWandException(WandError,"ContainsNoImages",wand->name);
13032   (void) FormatLocaleString(thresholds,MagickPathExtent,
13033     QuantumFormat "," QuantumFormat "," QuantumFormat "," QuantumFormat,
13034     PixelGetRedQuantum(threshold),PixelGetGreenQuantum(threshold),
13035     PixelGetBlueQuantum(threshold),PixelGetAlphaQuantum(threshold));
13036   return(WhiteThresholdImage(wand->images,thresholds,wand->exception));
13037 }
13038 
13039 /*
13040 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13041 %                                                                             %
13042 %                                                                             %
13043 %                                                                             %
13044 %   M a g i c k W r i t e I m a g e                                           %
13045 %                                                                             %
13046 %                                                                             %
13047 %                                                                             %
13048 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13049 %
13050 %  MagickWriteImage() writes an image to the specified filename.  If the
13051 %  filename parameter is NULL, the image is written to the filename set
13052 %  by MagickReadImage() or MagickSetImageFilename().
13053 %
13054 %  The format of the MagickWriteImage method is:
13055 %
13056 %      MagickBooleanType MagickWriteImage(MagickWand *wand,
13057 %        const char *filename)
13058 %
13059 %  A description of each parameter follows:
13060 %
13061 %    o wand: the magick wand.
13062 %
13063 %    o filename: the image filename.
13064 %
13065 %
13066 */
MagickWriteImage(MagickWand * wand,const char * filename)13067 WandExport MagickBooleanType MagickWriteImage(MagickWand *wand,
13068   const char *filename)
13069 {
13070   Image
13071     *image;
13072 
13073   ImageInfo
13074     *write_info;
13075 
13076   MagickBooleanType
13077     status;
13078 
13079   assert(wand != (MagickWand *) NULL);
13080   assert(wand->signature == MagickWandSignature);
13081   if (wand->debug != MagickFalse)
13082     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
13083   if (wand->images == (Image *) NULL)
13084     ThrowWandException(WandError,"ContainsNoImages",wand->name);
13085   if (filename != (const char *) NULL)
13086     (void) CopyMagickString(wand->images->filename,filename,MagickPathExtent);
13087   image=CloneImage(wand->images,0,0,MagickTrue,wand->exception);
13088   if (image == (Image *) NULL)
13089     return(MagickFalse);
13090   write_info=CloneImageInfo(wand->image_info);
13091   write_info->adjoin=MagickTrue;
13092   status=WriteImage(write_info,image,wand->exception);
13093   image=DestroyImage(image);
13094   write_info=DestroyImageInfo(write_info);
13095   return(status);
13096 }
13097 
13098 /*
13099 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13100 %                                                                             %
13101 %                                                                             %
13102 %                                                                             %
13103 %   M a g i c k W r i t e I m a g e F i l e                                   %
13104 %                                                                             %
13105 %                                                                             %
13106 %                                                                             %
13107 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13108 %
13109 %  MagickWriteImageFile() writes an image to an open file descriptor.
13110 %
13111 %  The format of the MagickWriteImageFile method is:
13112 %
13113 %      MagickBooleanType MagickWriteImageFile(MagickWand *wand,FILE *file)
13114 %
13115 %  A description of each parameter follows:
13116 %
13117 %    o wand: the magick wand.
13118 %
13119 %    o file: the file descriptor.
13120 %
13121 */
MagickWriteImageFile(MagickWand * wand,FILE * file)13122 WandExport MagickBooleanType MagickWriteImageFile(MagickWand *wand,FILE *file)
13123 {
13124   Image
13125     *image;
13126 
13127   ImageInfo
13128     *write_info;
13129 
13130   MagickBooleanType
13131     status;
13132 
13133   assert(wand != (MagickWand *) NULL);
13134   assert(wand->signature == MagickWandSignature);
13135   assert(file != (FILE *) NULL);
13136   if (wand->debug != MagickFalse)
13137     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
13138   if (wand->images == (Image *) NULL)
13139     ThrowWandException(WandError,"ContainsNoImages",wand->name);
13140   image=CloneImage(wand->images,0,0,MagickTrue,wand->exception);
13141   if (image == (Image *) NULL)
13142     return(MagickFalse);
13143   write_info=CloneImageInfo(wand->image_info);
13144   SetImageInfoFile(write_info,file);
13145   write_info->adjoin=MagickTrue;
13146   status=WriteImage(write_info,image,wand->exception);
13147   write_info=DestroyImageInfo(write_info);
13148   image=DestroyImage(image);
13149   return(status);
13150 }
13151 
13152 /*
13153 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13154 %                                                                             %
13155 %                                                                             %
13156 %                                                                             %
13157 %   M a g i c k W r i t e I m a g e s                                         %
13158 %                                                                             %
13159 %                                                                             %
13160 %                                                                             %
13161 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13162 %
13163 %  MagickWriteImages() writes an image or image sequence.
13164 %
13165 %  The format of the MagickWriteImages method is:
13166 %
13167 %      MagickBooleanType MagickWriteImages(MagickWand *wand,
13168 %        const char *filename,const MagickBooleanType adjoin)
13169 %
13170 %  A description of each parameter follows:
13171 %
13172 %    o wand: the magick wand.
13173 %
13174 %    o filename: the image filename.
13175 %
13176 %    o adjoin: join images into a single multi-image file.
13177 %
13178 */
MagickWriteImages(MagickWand * wand,const char * filename,const MagickBooleanType adjoin)13179 WandExport MagickBooleanType MagickWriteImages(MagickWand *wand,
13180   const char *filename,const MagickBooleanType adjoin)
13181 {
13182   ImageInfo
13183     *write_info;
13184 
13185   MagickBooleanType
13186     status;
13187 
13188   assert(wand != (MagickWand *) NULL);
13189   assert(wand->signature == MagickWandSignature);
13190   if (wand->debug != MagickFalse)
13191     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
13192   if (wand->images == (Image *) NULL)
13193     ThrowWandException(WandError,"ContainsNoImages",wand->name);
13194   write_info=CloneImageInfo(wand->image_info);
13195   write_info->adjoin=adjoin;
13196   status=WriteImages(write_info,wand->images,filename,wand->exception);
13197   write_info=DestroyImageInfo(write_info);
13198   return(status);
13199 }
13200 
13201 /*
13202 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13203 %                                                                             %
13204 %                                                                             %
13205 %                                                                             %
13206 %   M a g i c k W r i t e I m a g e s F i l e                                 %
13207 %                                                                             %
13208 %                                                                             %
13209 %                                                                             %
13210 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13211 %
13212 %  MagickWriteImagesFile() writes an image sequence to an open file descriptor.
13213 %
13214 %  The format of the MagickWriteImagesFile method is:
13215 %
13216 %      MagickBooleanType MagickWriteImagesFile(MagickWand *wand,FILE *file)
13217 %
13218 %  A description of each parameter follows:
13219 %
13220 %    o wand: the magick wand.
13221 %
13222 %    o file: the file descriptor.
13223 %
13224 */
MagickWriteImagesFile(MagickWand * wand,FILE * file)13225 WandExport MagickBooleanType MagickWriteImagesFile(MagickWand *wand,FILE *file)
13226 {
13227   ImageInfo
13228     *write_info;
13229 
13230   MagickBooleanType
13231     status;
13232 
13233   assert(wand != (MagickWand *) NULL);
13234   assert(wand->signature == MagickWandSignature);
13235   if (wand->debug != MagickFalse)
13236     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
13237   if (wand->images == (Image *) NULL)
13238     ThrowWandException(WandError,"ContainsNoImages",wand->name);
13239   write_info=CloneImageInfo(wand->image_info);
13240   SetImageInfoFile(write_info,file);
13241   write_info->adjoin=MagickTrue;
13242   status=WriteImages(write_info,wand->images,(const char *) NULL,
13243     wand->exception);
13244   write_info=DestroyImageInfo(write_info);
13245   return(status);
13246 }
13247