blob: e86b4ded1da9dd76f50b6d81d78a00f517c66591 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% FFFFF X X %
7% F X X %
8% FFF X %
9% F X X %
10% F X X %
11% %
12% %
13% MagickCore Image Special Effects Methods %
14% %
15% Software Design %
16% John Cristy %
17% October 1996 %
18% %
19% %
cristy45ef08f2012-12-07 13:13:34 +000020% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
37%
38*/
39
40/*
41 Include declarations.
42*/
cristy4c08aed2011-07-01 19:47:50 +000043#include "MagickCore/studio.h"
44#include "MagickCore/annotate.h"
45#include "MagickCore/artifact.h"
46#include "MagickCore/attribute.h"
47#include "MagickCore/cache.h"
48#include "MagickCore/cache-view.h"
49#include "MagickCore/color.h"
50#include "MagickCore/color-private.h"
cristy9b7a4fc2012-04-08 22:26:56 +000051#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000052#include "MagickCore/composite.h"
53#include "MagickCore/decorate.h"
cristyc53413d2011-11-17 13:04:26 +000054#include "MagickCore/distort.h"
cristy4c08aed2011-07-01 19:47:50 +000055#include "MagickCore/draw.h"
56#include "MagickCore/effect.h"
57#include "MagickCore/enhance.h"
58#include "MagickCore/exception.h"
59#include "MagickCore/exception-private.h"
60#include "MagickCore/fx.h"
61#include "MagickCore/fx-private.h"
62#include "MagickCore/gem.h"
cristy8ea81222011-09-04 10:33:32 +000063#include "MagickCore/gem-private.h"
cristy4c08aed2011-07-01 19:47:50 +000064#include "MagickCore/geometry.h"
65#include "MagickCore/layer.h"
66#include "MagickCore/list.h"
67#include "MagickCore/log.h"
68#include "MagickCore/image.h"
69#include "MagickCore/image-private.h"
70#include "MagickCore/magick.h"
71#include "MagickCore/memory_.h"
72#include "MagickCore/monitor.h"
73#include "MagickCore/monitor-private.h"
74#include "MagickCore/option.h"
75#include "MagickCore/pixel.h"
76#include "MagickCore/pixel-accessor.h"
77#include "MagickCore/property.h"
78#include "MagickCore/quantum.h"
79#include "MagickCore/quantum-private.h"
80#include "MagickCore/random_.h"
81#include "MagickCore/random-private.h"
82#include "MagickCore/resample.h"
83#include "MagickCore/resample-private.h"
84#include "MagickCore/resize.h"
cristy57340e02012-05-05 00:53:23 +000085#include "MagickCore/resource_.h"
cristy4c08aed2011-07-01 19:47:50 +000086#include "MagickCore/splay-tree.h"
87#include "MagickCore/statistic.h"
88#include "MagickCore/string_.h"
89#include "MagickCore/string-private.h"
90#include "MagickCore/thread-private.h"
91#include "MagickCore/transform.h"
92#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000093
94/*
95 Define declarations.
96*/
97#define LeftShiftOperator 0xf5
98#define RightShiftOperator 0xf6
99#define LessThanEqualOperator 0xf7
100#define GreaterThanEqualOperator 0xf8
101#define EqualOperator 0xf9
102#define NotEqualOperator 0xfa
103#define LogicalAndOperator 0xfb
104#define LogicalOrOperator 0xfc
cristy116af162010-08-13 01:25:47 +0000105#define ExponentialNotation 0xfd
cristy3ed852e2009-09-05 21:47:34 +0000106
107struct _FxInfo
108{
109 const Image
110 *images;
111
cristy3ed852e2009-09-05 21:47:34 +0000112 char
113 *expression;
114
115 FILE
116 *file;
117
118 SplayTreeInfo
119 *colors,
120 *symbols;
121
cristyd76c51e2011-03-26 00:21:26 +0000122 CacheView
123 **view;
cristy3ed852e2009-09-05 21:47:34 +0000124
125 RandomInfo
126 *random_info;
127
128 ExceptionInfo
129 *exception;
130};
131
132/*
133%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
134% %
135% %
136% %
137+ A c q u i r e F x I n f o %
138% %
139% %
140% %
141%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
142%
143% AcquireFxInfo() allocates the FxInfo structure.
144%
145% The format of the AcquireFxInfo method is:
146%
cristydb070952012-04-20 14:33:00 +0000147% FxInfo *AcquireFxInfo(Image *image,const char *expression,
148% ExceptionInfo *exception)
cristy0a9b3722010-10-23 18:45:49 +0000149%
cristy3ed852e2009-09-05 21:47:34 +0000150% A description of each parameter follows:
151%
152% o image: the image.
153%
154% o expression: the expression.
155%
cristydb070952012-04-20 14:33:00 +0000156% o exception: return any errors or warnings in this structure.
157%
cristy3ed852e2009-09-05 21:47:34 +0000158*/
cristydb070952012-04-20 14:33:00 +0000159MagickPrivate FxInfo *AcquireFxInfo(const Image *image,const char *expression,
160 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000161{
162 char
163 fx_op[2];
164
cristycb180922011-03-11 14:41:24 +0000165 const Image
166 *next;
167
cristy3ed852e2009-09-05 21:47:34 +0000168 FxInfo
169 *fx_info;
170
cristybb503372010-05-27 20:51:26 +0000171 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000172 i;
173
cristy73bd4a52010-10-05 11:24:23 +0000174 fx_info=(FxInfo *) AcquireMagickMemory(sizeof(*fx_info));
cristy3ed852e2009-09-05 21:47:34 +0000175 if (fx_info == (FxInfo *) NULL)
176 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
177 (void) ResetMagickMemory(fx_info,0,sizeof(*fx_info));
178 fx_info->exception=AcquireExceptionInfo();
anthony7d86e172011-03-23 12:37:06 +0000179 fx_info->images=image;
cristy3ed852e2009-09-05 21:47:34 +0000180 fx_info->colors=NewSplayTree(CompareSplayTreeString,RelinquishMagickMemory,
181 RelinquishMagickMemory);
182 fx_info->symbols=NewSplayTree(CompareSplayTreeString,RelinquishMagickMemory,
183 RelinquishMagickMemory);
cristyd76c51e2011-03-26 00:21:26 +0000184 fx_info->view=(CacheView **) AcquireQuantumMemory(GetImageListLength(
185 fx_info->images),sizeof(*fx_info->view));
186 if (fx_info->view == (CacheView **) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000187 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
cristya2262262011-03-11 02:50:37 +0000188 i=0;
cristy0ea377f2011-03-24 00:54:19 +0000189 next=GetFirstImageInList(fx_info->images);
190 for ( ; next != (Image *) NULL; next=next->next)
cristy3ed852e2009-09-05 21:47:34 +0000191 {
cristy4bc52022012-12-13 14:15:41 +0000192 fx_info->view[i]=AcquireVirtualCacheView(next);
cristya2262262011-03-11 02:50:37 +0000193 i++;
cristy3ed852e2009-09-05 21:47:34 +0000194 }
195 fx_info->random_info=AcquireRandomInfo();
196 fx_info->expression=ConstantString(expression);
197 fx_info->file=stderr;
198 (void) SubstituteString(&fx_info->expression," ",""); /* compact string */
cristy37af0912011-05-23 16:09:42 +0000199 /*
200 Force right-to-left associativity for unary negation.
201 */
202 (void) SubstituteString(&fx_info->expression,"-","-1.0*");
cristy8fbb96d2012-07-18 01:18:52 +0000203 (void) SubstituteString(&fx_info->expression,"E-1.0*","E-");
204 (void) SubstituteString(&fx_info->expression,"e-1.0*","e-");
cristy8b8a3ae2010-10-23 18:49:46 +0000205 /*
cristy3ed852e2009-09-05 21:47:34 +0000206 Convert complex to simple operators.
207 */
208 fx_op[1]='\0';
209 *fx_op=(char) LeftShiftOperator;
210 (void) SubstituteString(&fx_info->expression,"<<",fx_op);
211 *fx_op=(char) RightShiftOperator;
212 (void) SubstituteString(&fx_info->expression,">>",fx_op);
213 *fx_op=(char) LessThanEqualOperator;
214 (void) SubstituteString(&fx_info->expression,"<=",fx_op);
215 *fx_op=(char) GreaterThanEqualOperator;
216 (void) SubstituteString(&fx_info->expression,">=",fx_op);
217 *fx_op=(char) EqualOperator;
218 (void) SubstituteString(&fx_info->expression,"==",fx_op);
219 *fx_op=(char) NotEqualOperator;
220 (void) SubstituteString(&fx_info->expression,"!=",fx_op);
221 *fx_op=(char) LogicalAndOperator;
222 (void) SubstituteString(&fx_info->expression,"&&",fx_op);
223 *fx_op=(char) LogicalOrOperator;
224 (void) SubstituteString(&fx_info->expression,"||",fx_op);
cristy116af162010-08-13 01:25:47 +0000225 *fx_op=(char) ExponentialNotation;
226 (void) SubstituteString(&fx_info->expression,"**",fx_op);
cristy3ed852e2009-09-05 21:47:34 +0000227 return(fx_info);
228}
229
230/*
231%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
232% %
233% %
234% %
235% A d d N o i s e I m a g e %
236% %
237% %
238% %
239%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
240%
241% AddNoiseImage() adds random noise to the image.
242%
243% The format of the AddNoiseImage method is:
244%
245% Image *AddNoiseImage(const Image *image,const NoiseType noise_type,
cristy9ed1f812011-10-08 02:00:08 +0000246% const double attenuate,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000247%
248% A description of each parameter follows:
249%
250% o image: the image.
251%
252% o channel: the channel type.
253%
254% o noise_type: The type of noise: Uniform, Gaussian, Multiplicative,
255% Impulse, Laplacian, or Poisson.
256%
cristy9ed1f812011-10-08 02:00:08 +0000257% o attenuate: attenuate the random distribution.
258%
cristy3ed852e2009-09-05 21:47:34 +0000259% o exception: return any errors or warnings in this structure.
260%
261*/
cristy9ed1f812011-10-08 02:00:08 +0000262MagickExport Image *AddNoiseImage(const Image *image,const NoiseType noise_type,
263 const double attenuate,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000264{
265#define AddNoiseImageTag "AddNoise/Image"
266
cristyfa112112010-01-04 17:48:07 +0000267 CacheView
268 *image_view,
269 *noise_view;
270
cristy3ed852e2009-09-05 21:47:34 +0000271 Image
272 *noise_image;
273
cristy3ed852e2009-09-05 21:47:34 +0000274 MagickBooleanType
275 status;
276
cristybb503372010-05-27 20:51:26 +0000277 MagickOffsetType
278 progress;
279
cristy3ed852e2009-09-05 21:47:34 +0000280 RandomInfo
cristyfa112112010-01-04 17:48:07 +0000281 **restrict random_info;
cristy3ed852e2009-09-05 21:47:34 +0000282
cristybb503372010-05-27 20:51:26 +0000283 ssize_t
284 y;
285
glennrpf7659d72012-09-24 18:14:56 +0000286#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy57340e02012-05-05 00:53:23 +0000287 unsigned long
288 key;
glennrpf7659d72012-09-24 18:14:56 +0000289#endif
cristy57340e02012-05-05 00:53:23 +0000290
cristy3ed852e2009-09-05 21:47:34 +0000291 /*
292 Initialize noise image attributes.
293 */
294 assert(image != (const Image *) NULL);
295 assert(image->signature == MagickSignature);
296 if (image->debug != MagickFalse)
297 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
298 assert(exception != (ExceptionInfo *) NULL);
299 assert(exception->signature == MagickSignature);
cristyb2145892011-10-10 00:55:32 +0000300 noise_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +0000301 if (noise_image == (Image *) NULL)
302 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +0000303 if (SetImageStorageClass(noise_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000304 {
cristy3ed852e2009-09-05 21:47:34 +0000305 noise_image=DestroyImage(noise_image);
306 return((Image *) NULL);
307 }
cristy98ccd782012-07-09 11:22:59 +0000308 if (IsGrayColorspace(image->colorspace) != MagickFalse)
cristyb09db112012-07-11 12:04:31 +0000309 (void) TransformImageColorspace(noise_image,RGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000310 /*
311 Add noise in each row.
312 */
cristy3ed852e2009-09-05 21:47:34 +0000313 status=MagickTrue;
314 progress=0;
315 random_info=AcquireRandomInfoThreadSet();
cristy4bc52022012-12-13 14:15:41 +0000316 image_view=AcquireVirtualCacheView(image);
317 noise_view=AcquireAuthenticCacheView(noise_image);
cristy319a1e72010-02-21 15:13:11 +0000318#if defined(MAGICKCORE_OPENMP_SUPPORT)
glennrpf7659d72012-09-24 18:14:56 +0000319 key=GetRandomSecretKey(random_info[0]);
cristy57340e02012-05-05 00:53:23 +0000320 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +0000321 dynamic_number_threads(image,image->columns,image->rows,key == ~0UL)
cristy3ed852e2009-09-05 21:47:34 +0000322#endif
cristybb503372010-05-27 20:51:26 +0000323 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000324 {
cristy5c9e6f22010-09-17 17:31:01 +0000325 const int
326 id = GetOpenMPThreadId();
cristy6ebe97c2010-07-03 01:17:28 +0000327
cristy3ed852e2009-09-05 21:47:34 +0000328 MagickBooleanType
329 sync;
330
cristy4c08aed2011-07-01 19:47:50 +0000331 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000332 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000333
cristybb503372010-05-27 20:51:26 +0000334 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000335 x;
336
cristy4c08aed2011-07-01 19:47:50 +0000337 register Quantum
cristyc47d1f82009-11-26 01:44:43 +0000338 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000339
340 if (status == MagickFalse)
341 continue;
342 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristya6d7a9b2012-01-18 20:04:48 +0000343 q=QueueCacheViewAuthenticPixels(noise_view,0,y,noise_image->columns,1,
cristy3ed852e2009-09-05 21:47:34 +0000344 exception);
cristy4c08aed2011-07-01 19:47:50 +0000345 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +0000346 {
347 status=MagickFalse;
348 continue;
349 }
cristybb503372010-05-27 20:51:26 +0000350 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000351 {
cristy850b3072011-10-08 01:38:05 +0000352 register ssize_t
353 i;
354
355 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
356 {
357 PixelChannel
358 channel;
359
360 PixelTrait
361 noise_traits,
362 traits;
363
cristycf1296e2012-08-26 23:40:49 +0000364 channel=GetPixelChannelChannel(image,i);
365 traits=GetPixelChannelTraits(image,channel);
366 noise_traits=GetPixelChannelTraits(noise_image,channel);
cristy850b3072011-10-08 01:38:05 +0000367 if ((traits == UndefinedPixelTrait) ||
368 (noise_traits == UndefinedPixelTrait))
369 continue;
cristy1eced092012-08-10 23:10:56 +0000370 if (((noise_traits & CopyPixelTrait) != 0) ||
371 (GetPixelMask(image,p) != 0))
cristyb2145892011-10-10 00:55:32 +0000372 {
373 SetPixelChannel(noise_image,channel,p[i],q);
374 continue;
375 }
cristy850b3072011-10-08 01:38:05 +0000376 SetPixelChannel(noise_image,channel,ClampToQuantum(
377 GenerateDifferentialNoise(random_info[id],p[i],noise_type,attenuate)),
378 q);
379 }
cristyed231572011-07-14 02:18:59 +0000380 p+=GetPixelChannels(image);
381 q+=GetPixelChannels(noise_image);
cristy3ed852e2009-09-05 21:47:34 +0000382 }
383 sync=SyncCacheViewAuthenticPixels(noise_view,exception);
384 if (sync == MagickFalse)
385 status=MagickFalse;
386 if (image->progress_monitor != (MagickProgressMonitor) NULL)
387 {
388 MagickBooleanType
389 proceed;
390
cristyb5d5f722009-11-04 03:03:49 +0000391#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy319a1e72010-02-21 15:13:11 +0000392 #pragma omp critical (MagickCore_AddNoiseImage)
cristy3ed852e2009-09-05 21:47:34 +0000393#endif
394 proceed=SetImageProgress(image,AddNoiseImageTag,progress++,
395 image->rows);
396 if (proceed == MagickFalse)
397 status=MagickFalse;
398 }
399 }
400 noise_view=DestroyCacheView(noise_view);
401 image_view=DestroyCacheView(image_view);
402 random_info=DestroyRandomInfoThreadSet(random_info);
403 if (status == MagickFalse)
404 noise_image=DestroyImage(noise_image);
405 return(noise_image);
406}
407
408/*
409%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
410% %
411% %
412% %
413% B l u e S h i f t I m a g e %
414% %
415% %
416% %
417%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
418%
419% BlueShiftImage() mutes the colors of the image to simulate a scene at
420% nighttime in the moonlight.
421%
422% The format of the BlueShiftImage method is:
423%
424% Image *BlueShiftImage(const Image *image,const double factor,
425% ExceptionInfo *exception)
426%
427% A description of each parameter follows:
428%
429% o image: the image.
430%
431% o factor: the shift factor.
432%
433% o exception: return any errors or warnings in this structure.
434%
435*/
436MagickExport Image *BlueShiftImage(const Image *image,const double factor,
437 ExceptionInfo *exception)
438{
439#define BlueShiftImageTag "BlueShift/Image"
440
cristyc4c8d132010-01-07 01:58:38 +0000441 CacheView
442 *image_view,
443 *shift_view;
444
cristy3ed852e2009-09-05 21:47:34 +0000445 Image
446 *shift_image;
447
cristy3ed852e2009-09-05 21:47:34 +0000448 MagickBooleanType
449 status;
450
cristybb503372010-05-27 20:51:26 +0000451 MagickOffsetType
452 progress;
453
454 ssize_t
455 y;
456
cristy3ed852e2009-09-05 21:47:34 +0000457 /*
458 Allocate blue shift image.
459 */
460 assert(image != (const Image *) NULL);
461 assert(image->signature == MagickSignature);
462 if (image->debug != MagickFalse)
463 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
464 assert(exception != (ExceptionInfo *) NULL);
465 assert(exception->signature == MagickSignature);
cristya6d7a9b2012-01-18 20:04:48 +0000466 shift_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +0000467 if (shift_image == (Image *) NULL)
468 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +0000469 if (SetImageStorageClass(shift_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000470 {
cristy3ed852e2009-09-05 21:47:34 +0000471 shift_image=DestroyImage(shift_image);
472 return((Image *) NULL);
473 }
474 /*
475 Blue-shift DirectClass image.
476 */
477 status=MagickTrue;
478 progress=0;
cristy4bc52022012-12-13 14:15:41 +0000479 image_view=AcquireVirtualCacheView(image);
480 shift_view=AcquireAuthenticCacheView(shift_image);
cristy319a1e72010-02-21 15:13:11 +0000481#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +0000482 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +0000483 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +0000484#endif
cristybb503372010-05-27 20:51:26 +0000485 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000486 {
487 MagickBooleanType
488 sync;
489
cristy4c08aed2011-07-01 19:47:50 +0000490 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000491 pixel;
492
493 Quantum
494 quantum;
495
cristy4c08aed2011-07-01 19:47:50 +0000496 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000497 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000498
cristybb503372010-05-27 20:51:26 +0000499 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000500 x;
501
cristy4c08aed2011-07-01 19:47:50 +0000502 register Quantum
cristyc47d1f82009-11-26 01:44:43 +0000503 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000504
505 if (status == MagickFalse)
506 continue;
507 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
508 q=QueueCacheViewAuthenticPixels(shift_view,0,y,shift_image->columns,1,
509 exception);
cristy4c08aed2011-07-01 19:47:50 +0000510 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +0000511 {
512 status=MagickFalse;
513 continue;
514 }
cristybb503372010-05-27 20:51:26 +0000515 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000516 {
cristy4c08aed2011-07-01 19:47:50 +0000517 quantum=GetPixelRed(image,p);
518 if (GetPixelGreen(image,p) < quantum)
519 quantum=GetPixelGreen(image,p);
520 if (GetPixelBlue(image,p) < quantum)
521 quantum=GetPixelBlue(image,p);
522 pixel.red=0.5*(GetPixelRed(image,p)+factor*quantum);
523 pixel.green=0.5*(GetPixelGreen(image,p)+factor*quantum);
524 pixel.blue=0.5*(GetPixelBlue(image,p)+factor*quantum);
525 quantum=GetPixelRed(image,p);
526 if (GetPixelGreen(image,p) > quantum)
527 quantum=GetPixelGreen(image,p);
528 if (GetPixelBlue(image,p) > quantum)
529 quantum=GetPixelBlue(image,p);
cristy3ed852e2009-09-05 21:47:34 +0000530 pixel.red=0.5*(pixel.red+factor*quantum);
531 pixel.green=0.5*(pixel.green+factor*quantum);
532 pixel.blue=0.5*(pixel.blue+factor*quantum);
cristy4c08aed2011-07-01 19:47:50 +0000533 SetPixelRed(shift_image,ClampToQuantum(pixel.red),q);
534 SetPixelGreen(shift_image,ClampToQuantum(pixel.green),q);
535 SetPixelBlue(shift_image,ClampToQuantum(pixel.blue),q);
cristyed231572011-07-14 02:18:59 +0000536 p+=GetPixelChannels(image);
537 q+=GetPixelChannels(shift_image);
cristy3ed852e2009-09-05 21:47:34 +0000538 }
539 sync=SyncCacheViewAuthenticPixels(shift_view,exception);
540 if (sync == MagickFalse)
541 status=MagickFalse;
542 if (image->progress_monitor != (MagickProgressMonitor) NULL)
543 {
544 MagickBooleanType
545 proceed;
546
cristy319a1e72010-02-21 15:13:11 +0000547#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +0000548 #pragma omp critical (MagickCore_BlueShiftImage)
cristy3ed852e2009-09-05 21:47:34 +0000549#endif
550 proceed=SetImageProgress(image,BlueShiftImageTag,progress++,
551 image->rows);
552 if (proceed == MagickFalse)
553 status=MagickFalse;
554 }
555 }
556 image_view=DestroyCacheView(image_view);
557 shift_view=DestroyCacheView(shift_view);
558 if (status == MagickFalse)
559 shift_image=DestroyImage(shift_image);
560 return(shift_image);
561}
562
563/*
564%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
565% %
566% %
567% %
568% C h a r c o a l I m a g e %
569% %
570% %
571% %
572%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
573%
574% CharcoalImage() creates a new image that is a copy of an existing one with
575% the edge highlighted. It allocates the memory necessary for the new Image
576% structure and returns a pointer to the new image.
577%
578% The format of the CharcoalImage method is:
579%
580% Image *CharcoalImage(const Image *image,const double radius,
cristyaa2c16c2012-03-25 22:21:35 +0000581% const double sigma,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000582%
583% A description of each parameter follows:
584%
585% o image: the image.
586%
587% o radius: the radius of the pixel neighborhood.
588%
589% o sigma: the standard deviation of the Gaussian, in pixels.
590%
591% o exception: return any errors or warnings in this structure.
592%
593*/
594MagickExport Image *CharcoalImage(const Image *image,const double radius,
cristyaa2c16c2012-03-25 22:21:35 +0000595 const double sigma,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000596{
597 Image
598 *charcoal_image,
599 *clone_image,
600 *edge_image;
601
602 assert(image != (Image *) NULL);
603 assert(image->signature == MagickSignature);
604 if (image->debug != MagickFalse)
605 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
606 assert(exception != (ExceptionInfo *) NULL);
607 assert(exception->signature == MagickSignature);
608 clone_image=CloneImage(image,0,0,MagickTrue,exception);
609 if (clone_image == (Image *) NULL)
610 return((Image *) NULL);
cristy018f07f2011-09-04 21:15:19 +0000611 (void) SetImageType(clone_image,GrayscaleType,exception);
cristy8ae632d2011-09-05 17:29:53 +0000612 edge_image=EdgeImage(clone_image,radius,sigma,exception);
cristy3ed852e2009-09-05 21:47:34 +0000613 clone_image=DestroyImage(clone_image);
614 if (edge_image == (Image *) NULL)
615 return((Image *) NULL);
cristyaa2c16c2012-03-25 22:21:35 +0000616 charcoal_image=BlurImage(edge_image,radius,sigma,exception);
cristy3ed852e2009-09-05 21:47:34 +0000617 edge_image=DestroyImage(edge_image);
618 if (charcoal_image == (Image *) NULL)
619 return((Image *) NULL);
cristye23ec9d2011-08-16 18:15:40 +0000620 (void) NormalizeImage(charcoal_image,exception);
cristyb3e7c6c2011-07-24 01:43:55 +0000621 (void) NegateImage(charcoal_image,MagickFalse,exception);
cristy018f07f2011-09-04 21:15:19 +0000622 (void) SetImageType(charcoal_image,GrayscaleType,exception);
cristy3ed852e2009-09-05 21:47:34 +0000623 return(charcoal_image);
624}
625
626/*
627%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
628% %
629% %
630% %
631% C o l o r i z e I m a g e %
632% %
633% %
634% %
635%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
636%
637% ColorizeImage() blends the fill color with each pixel in the image.
638% A percentage blend is specified with opacity. Control the application
639% of different color components by specifying a different percentage for
640% each component (e.g. 90/100/10 is 90% red, 100% green, and 10% blue).
641%
642% The format of the ColorizeImage method is:
643%
cristyc7e6ff62011-10-03 13:46:11 +0000644% Image *ColorizeImage(const Image *image,const char *blend,
645% const PixelInfo *colorize,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000646%
647% A description of each parameter follows:
648%
649% o image: the image.
650%
cristyc7e6ff62011-10-03 13:46:11 +0000651% o blend: A character string indicating the level of blending as a
cristy3ed852e2009-09-05 21:47:34 +0000652% percentage.
653%
654% o colorize: A color value.
655%
656% o exception: return any errors or warnings in this structure.
657%
658*/
cristyc7e6ff62011-10-03 13:46:11 +0000659MagickExport Image *ColorizeImage(const Image *image,const char *blend,
660 const PixelInfo *colorize,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000661{
662#define ColorizeImageTag "Colorize/Image"
cristy0cf6da52012-08-25 00:35:24 +0000663#define Colorize(pixel,blend_percentage,colorize) \
664 (((pixel)*(100.0-(blend_percentage))+(colorize)*(blend_percentage))/100.0)
cristy3ed852e2009-09-05 21:47:34 +0000665
cristyc4c8d132010-01-07 01:58:38 +0000666 CacheView
667 *colorize_view,
668 *image_view;
669
cristy3ed852e2009-09-05 21:47:34 +0000670 GeometryInfo
671 geometry_info;
672
673 Image
674 *colorize_image;
675
cristy3ed852e2009-09-05 21:47:34 +0000676 MagickBooleanType
677 status;
678
cristybb503372010-05-27 20:51:26 +0000679 MagickOffsetType
680 progress;
681
cristy3ed852e2009-09-05 21:47:34 +0000682 MagickStatusType
683 flags;
684
cristyc7e6ff62011-10-03 13:46:11 +0000685 PixelInfo
cristy20c3aed2012-04-10 01:06:21 +0000686 blend_percentage;
cristyc7e6ff62011-10-03 13:46:11 +0000687
cristybb503372010-05-27 20:51:26 +0000688 ssize_t
689 y;
690
cristy3ed852e2009-09-05 21:47:34 +0000691 /*
692 Allocate colorized image.
693 */
694 assert(image != (const Image *) NULL);
695 assert(image->signature == MagickSignature);
696 if (image->debug != MagickFalse)
697 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
698 assert(exception != (ExceptionInfo *) NULL);
699 assert(exception->signature == MagickSignature);
cristy768165d2012-04-09 15:01:35 +0000700 colorize_image=CloneImage(image,image->columns,image->rows,MagickTrue,
701 exception);
702 if (colorize_image == (Image *) NULL)
703 return((Image *) NULL);
704 if (SetImageStorageClass(colorize_image,DirectClass,exception) == MagickFalse)
705 {
706 colorize_image=DestroyImage(colorize_image);
707 return((Image *) NULL);
708 }
cristy9b7a4fc2012-04-08 22:26:56 +0000709 if ((IsGrayColorspace(image->colorspace) != MagickFalse) &&
cristy20c3aed2012-04-10 01:06:21 +0000710 (IsPixelInfoGray(colorize) != MagickFalse))
cristyb09db112012-07-11 12:04:31 +0000711 (void) SetImageColorspace(colorize_image,RGBColorspace,exception);
cristy8a46d822012-08-28 23:32:39 +0000712 if ((colorize_image->alpha_trait != BlendPixelTrait) &&
713 (colorize->alpha_trait == BlendPixelTrait))
cristy768165d2012-04-09 15:01:35 +0000714 (void) SetImageAlpha(colorize_image,OpaqueAlpha,exception);
715 if (blend == (const char *) NULL)
716 return(colorize_image);
cristy20c3aed2012-04-10 01:06:21 +0000717 GetPixelInfo(image,&blend_percentage);
718 flags=ParseGeometry(blend,&geometry_info);
719 blend_percentage.red=geometry_info.rho;
720 blend_percentage.green=geometry_info.rho;
721 blend_percentage.blue=geometry_info.rho;
722 blend_percentage.black=geometry_info.rho;
cristy3ee7de52012-04-14 23:40:47 +0000723 blend_percentage.alpha=geometry_info.rho;
cristy20c3aed2012-04-10 01:06:21 +0000724 if ((flags & SigmaValue) != 0)
725 blend_percentage.green=geometry_info.sigma;
726 if ((flags & XiValue) != 0)
727 blend_percentage.blue=geometry_info.xi;
728 if ((flags & PsiValue) != 0)
729 blend_percentage.alpha=geometry_info.psi;
730 if (blend_percentage.colorspace == CMYKColorspace)
731 {
732 if ((flags & PsiValue) != 0)
733 blend_percentage.black=geometry_info.psi;
734 if ((flags & ChiValue) != 0)
735 blend_percentage.alpha=geometry_info.chi;
736 }
cristy3ed852e2009-09-05 21:47:34 +0000737 /*
738 Colorize DirectClass image.
739 */
740 status=MagickTrue;
741 progress=0;
cristy4bc52022012-12-13 14:15:41 +0000742 image_view=AcquireVirtualCacheView(image);
743 colorize_view=AcquireAuthenticCacheView(colorize_image);
cristy319a1e72010-02-21 15:13:11 +0000744#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +0000745 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +0000746 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +0000747#endif
cristybb503372010-05-27 20:51:26 +0000748 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000749 {
750 MagickBooleanType
751 sync;
752
cristy4c08aed2011-07-01 19:47:50 +0000753 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000754 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000755
cristy4c08aed2011-07-01 19:47:50 +0000756 register Quantum
cristyc47d1f82009-11-26 01:44:43 +0000757 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000758
cristy4a37c622012-08-23 18:47:56 +0000759 register ssize_t
760 x;
761
cristy3ed852e2009-09-05 21:47:34 +0000762 if (status == MagickFalse)
763 continue;
764 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
765 q=QueueCacheViewAuthenticPixels(colorize_view,0,y,colorize_image->columns,1,
766 exception);
cristy4c08aed2011-07-01 19:47:50 +0000767 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +0000768 {
769 status=MagickFalse;
770 continue;
771 }
cristybb503372010-05-27 20:51:26 +0000772 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000773 {
cristy0cf6da52012-08-25 00:35:24 +0000774 register ssize_t
775 i;
776
777 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
778 {
779 PixelChannel
780 channel;
781
782 PixelTrait
783 colorize_traits,
784 traits;
785
cristycf1296e2012-08-26 23:40:49 +0000786 channel=GetPixelChannelChannel(image,i);
787 traits=GetPixelChannelTraits(image,channel);
788 colorize_traits=GetPixelChannelTraits(colorize_image,channel);
cristy0cf6da52012-08-25 00:35:24 +0000789 if ((traits == UndefinedPixelTrait) ||
790 (colorize_traits == UndefinedPixelTrait))
cristyd6803382012-04-10 01:41:25 +0000791 continue;
cristy0cf6da52012-08-25 00:35:24 +0000792 if (((colorize_traits & CopyPixelTrait) != 0) ||
793 (GetPixelMask(image,p) != 0))
794 {
795 SetPixelChannel(colorize_image,channel,p[i],q);
796 continue;
797 }
cristycf1296e2012-08-26 23:40:49 +0000798 SetPixelChannel(colorize_image,channel,
799 ClampToQuantum(Colorize(p[i],GetPixelInfoChannel(&blend_percentage,
800 channel),GetPixelInfoChannel(colorize,channel))),q);
cristy0cf6da52012-08-25 00:35:24 +0000801 }
cristyed231572011-07-14 02:18:59 +0000802 p+=GetPixelChannels(image);
803 q+=GetPixelChannels(colorize_image);
cristy3ed852e2009-09-05 21:47:34 +0000804 }
805 sync=SyncCacheViewAuthenticPixels(colorize_view,exception);
806 if (sync == MagickFalse)
807 status=MagickFalse;
808 if (image->progress_monitor != (MagickProgressMonitor) NULL)
809 {
810 MagickBooleanType
811 proceed;
812
cristy319a1e72010-02-21 15:13:11 +0000813#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +0000814 #pragma omp critical (MagickCore_ColorizeImage)
cristy3ed852e2009-09-05 21:47:34 +0000815#endif
816 proceed=SetImageProgress(image,ColorizeImageTag,progress++,image->rows);
817 if (proceed == MagickFalse)
818 status=MagickFalse;
819 }
820 }
821 image_view=DestroyCacheView(image_view);
822 colorize_view=DestroyCacheView(colorize_view);
823 if (status == MagickFalse)
824 colorize_image=DestroyImage(colorize_image);
825 return(colorize_image);
826}
827
828/*
829%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
830% %
831% %
832% %
cristye6365592010-04-02 17:31:23 +0000833% C o l o r M a t r i x I m a g e %
834% %
835% %
836% %
837%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
838%
839% ColorMatrixImage() applies color transformation to an image. This method
840% permits saturation changes, hue rotation, luminance to alpha, and various
841% other effects. Although variable-sized transformation matrices can be used,
842% typically one uses a 5x5 matrix for an RGBA image and a 6x6 for CMYKA
843% (or RGBA with offsets). The matrix is similar to those used by Adobe Flash
844% except offsets are in column 6 rather than 5 (in support of CMYKA images)
845% and offsets are normalized (divide Flash offset by 255).
846%
847% The format of the ColorMatrixImage method is:
848%
849% Image *ColorMatrixImage(const Image *image,
850% const KernelInfo *color_matrix,ExceptionInfo *exception)
851%
852% A description of each parameter follows:
853%
854% o image: the image.
855%
856% o color_matrix: the color matrix.
857%
858% o exception: return any errors or warnings in this structure.
859%
860*/
anthonyfd706f92012-01-19 04:22:02 +0000861/* FUTURE: modify to make use of a MagickMatrix Mutliply function
862 That should be provided in "matrix.c"
863 (ASIDE: actually distorts should do this too but currently doesn't)
864*/
865
cristye6365592010-04-02 17:31:23 +0000866MagickExport Image *ColorMatrixImage(const Image *image,
867 const KernelInfo *color_matrix,ExceptionInfo *exception)
868{
869#define ColorMatrixImageTag "ColorMatrix/Image"
870
871 CacheView
872 *color_view,
873 *image_view;
874
875 double
876 ColorMatrix[6][6] =
877 {
878 { 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 },
879 { 0.0, 1.0, 0.0, 0.0, 0.0, 0.0 },
880 { 0.0, 0.0, 1.0, 0.0, 0.0, 0.0 },
881 { 0.0, 0.0, 0.0, 1.0, 0.0, 0.0 },
882 { 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 },
883 { 0.0, 0.0, 0.0, 0.0, 0.0, 1.0 }
884 };
885
886 Image
887 *color_image;
888
cristye6365592010-04-02 17:31:23 +0000889 MagickBooleanType
890 status;
891
cristybb503372010-05-27 20:51:26 +0000892 MagickOffsetType
893 progress;
894
895 register ssize_t
cristye6365592010-04-02 17:31:23 +0000896 i;
897
cristybb503372010-05-27 20:51:26 +0000898 ssize_t
899 u,
900 v,
901 y;
902
cristye6365592010-04-02 17:31:23 +0000903 /*
anthonyfd706f92012-01-19 04:22:02 +0000904 Map given color_matrix, into a 6x6 matrix RGBKA and a constant
cristye6365592010-04-02 17:31:23 +0000905 */
906 assert(image != (Image *) NULL);
907 assert(image->signature == MagickSignature);
908 if (image->debug != MagickFalse)
909 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
910 assert(exception != (ExceptionInfo *) NULL);
911 assert(exception->signature == MagickSignature);
912 i=0;
cristybb503372010-05-27 20:51:26 +0000913 for (v=0; v < (ssize_t) color_matrix->height; v++)
914 for (u=0; u < (ssize_t) color_matrix->width; u++)
cristye6365592010-04-02 17:31:23 +0000915 {
916 if ((v < 6) && (u < 6))
917 ColorMatrix[v][u]=color_matrix->values[i];
918 i++;
919 }
920 /*
921 Initialize color image.
922 */
cristy12550e62010-06-07 12:46:40 +0000923 color_image=CloneImage(image,0,0,MagickTrue,exception);
cristye6365592010-04-02 17:31:23 +0000924 if (color_image == (Image *) NULL)
925 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +0000926 if (SetImageStorageClass(color_image,DirectClass,exception) == MagickFalse)
cristye6365592010-04-02 17:31:23 +0000927 {
cristye6365592010-04-02 17:31:23 +0000928 color_image=DestroyImage(color_image);
929 return((Image *) NULL);
930 }
931 if (image->debug != MagickFalse)
932 {
933 char
934 format[MaxTextExtent],
935 *message;
936
937 (void) LogMagickEvent(TransformEvent,GetMagickModule(),
938 " ColorMatrix image with color matrix:");
939 message=AcquireString("");
940 for (v=0; v < 6; v++)
941 {
942 *message='\0';
cristyb51dff52011-05-19 16:55:47 +0000943 (void) FormatLocaleString(format,MaxTextExtent,"%.20g: ",(double) v);
cristye6365592010-04-02 17:31:23 +0000944 (void) ConcatenateString(&message,format);
945 for (u=0; u < 6; u++)
946 {
cristyb51dff52011-05-19 16:55:47 +0000947 (void) FormatLocaleString(format,MaxTextExtent,"%+f ",
cristye6365592010-04-02 17:31:23 +0000948 ColorMatrix[v][u]);
949 (void) ConcatenateString(&message,format);
950 }
951 (void) LogMagickEvent(TransformEvent,GetMagickModule(),"%s",message);
952 }
953 message=DestroyString(message);
954 }
955 /*
anthonyfd706f92012-01-19 04:22:02 +0000956 Apply the ColorMatrix to image.
cristye6365592010-04-02 17:31:23 +0000957 */
958 status=MagickTrue;
959 progress=0;
cristy4bc52022012-12-13 14:15:41 +0000960 image_view=AcquireVirtualCacheView(image);
961 color_view=AcquireAuthenticCacheView(color_image);
cristye6365592010-04-02 17:31:23 +0000962#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +0000963 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +0000964 dynamic_number_threads(image,image->columns,image->rows,1)
cristye6365592010-04-02 17:31:23 +0000965#endif
cristybb503372010-05-27 20:51:26 +0000966 for (y=0; y < (ssize_t) image->rows; y++)
cristye6365592010-04-02 17:31:23 +0000967 {
cristyfcc25d92012-02-19 23:06:48 +0000968 PixelInfo
cristye6365592010-04-02 17:31:23 +0000969 pixel;
970
cristy4c08aed2011-07-01 19:47:50 +0000971 register const Quantum
cristye6365592010-04-02 17:31:23 +0000972 *restrict p;
973
cristy4c08aed2011-07-01 19:47:50 +0000974 register Quantum
975 *restrict q;
976
cristybb503372010-05-27 20:51:26 +0000977 register ssize_t
cristye6365592010-04-02 17:31:23 +0000978 x;
979
cristye6365592010-04-02 17:31:23 +0000980 if (status == MagickFalse)
981 continue;
982 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
983 q=GetCacheViewAuthenticPixels(color_view,0,y,color_image->columns,1,
984 exception);
cristy4c08aed2011-07-01 19:47:50 +0000985 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristye6365592010-04-02 17:31:23 +0000986 {
987 status=MagickFalse;
988 continue;
989 }
cristyfcc25d92012-02-19 23:06:48 +0000990 GetPixelInfo(image,&pixel);
cristybb503372010-05-27 20:51:26 +0000991 for (x=0; x < (ssize_t) image->columns; x++)
cristye6365592010-04-02 17:31:23 +0000992 {
cristybb503372010-05-27 20:51:26 +0000993 register ssize_t
cristye6365592010-04-02 17:31:23 +0000994 v;
995
cristybb503372010-05-27 20:51:26 +0000996 size_t
cristye6365592010-04-02 17:31:23 +0000997 height;
998
cristyfcc25d92012-02-19 23:06:48 +0000999 GetPixelInfoPixel(image,p,&pixel);
cristye6365592010-04-02 17:31:23 +00001000 height=color_matrix->height > 6 ? 6UL : color_matrix->height;
cristybb503372010-05-27 20:51:26 +00001001 for (v=0; v < (ssize_t) height; v++)
cristye6365592010-04-02 17:31:23 +00001002 {
cristya19f1d72012-08-07 18:24:38 +00001003 double
cristyfcc25d92012-02-19 23:06:48 +00001004 sum;
1005
1006 sum=ColorMatrix[v][0]*GetPixelRed(image,p)+ColorMatrix[v][1]*
cristy4c08aed2011-07-01 19:47:50 +00001007 GetPixelGreen(image,p)+ColorMatrix[v][2]*GetPixelBlue(image,p);
cristye6365592010-04-02 17:31:23 +00001008 if (image->colorspace == CMYKColorspace)
cristyfcc25d92012-02-19 23:06:48 +00001009 sum+=ColorMatrix[v][3]*GetPixelBlack(image,p);
cristy8a46d822012-08-28 23:32:39 +00001010 if (image->alpha_trait == BlendPixelTrait)
cristyfcc25d92012-02-19 23:06:48 +00001011 sum+=ColorMatrix[v][4]*GetPixelAlpha(image,p);
1012 sum+=QuantumRange*ColorMatrix[v][5];
cristye6365592010-04-02 17:31:23 +00001013 switch (v)
1014 {
cristyfcc25d92012-02-19 23:06:48 +00001015 case 0: pixel.red=sum; break;
1016 case 1: pixel.green=sum; break;
1017 case 2: pixel.blue=sum; break;
1018 case 3: pixel.black=sum; break;
1019 case 4: pixel.alpha=sum; break;
1020 default: break;
cristye6365592010-04-02 17:31:23 +00001021 }
1022 }
cristyfcc25d92012-02-19 23:06:48 +00001023 SetPixelInfoPixel(color_image,&pixel,q);
cristyed231572011-07-14 02:18:59 +00001024 p+=GetPixelChannels(image);
1025 q+=GetPixelChannels(color_image);
cristye6365592010-04-02 17:31:23 +00001026 }
1027 if (SyncCacheViewAuthenticPixels(color_view,exception) == MagickFalse)
1028 status=MagickFalse;
1029 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1030 {
1031 MagickBooleanType
1032 proceed;
1033
1034#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00001035 #pragma omp critical (MagickCore_ColorMatrixImage)
cristye6365592010-04-02 17:31:23 +00001036#endif
1037 proceed=SetImageProgress(image,ColorMatrixImageTag,progress++,
1038 image->rows);
1039 if (proceed == MagickFalse)
1040 status=MagickFalse;
1041 }
1042 }
1043 color_view=DestroyCacheView(color_view);
1044 image_view=DestroyCacheView(image_view);
1045 if (status == MagickFalse)
1046 color_image=DestroyImage(color_image);
1047 return(color_image);
1048}
1049
1050/*
1051%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1052% %
1053% %
1054% %
cristy3ed852e2009-09-05 21:47:34 +00001055+ D e s t r o y F x I n f o %
1056% %
1057% %
1058% %
1059%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1060%
1061% DestroyFxInfo() deallocates memory associated with an FxInfo structure.
1062%
1063% The format of the DestroyFxInfo method is:
1064%
1065% ImageInfo *DestroyFxInfo(ImageInfo *fx_info)
1066%
1067% A description of each parameter follows:
1068%
1069% o fx_info: the fx info.
1070%
1071*/
cristy7832dc22011-09-05 01:21:53 +00001072MagickPrivate FxInfo *DestroyFxInfo(FxInfo *fx_info)
cristy3ed852e2009-09-05 21:47:34 +00001073{
cristybb503372010-05-27 20:51:26 +00001074 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001075 i;
1076
1077 fx_info->exception=DestroyExceptionInfo(fx_info->exception);
1078 fx_info->expression=DestroyString(fx_info->expression);
1079 fx_info->symbols=DestroySplayTree(fx_info->symbols);
1080 fx_info->colors=DestroySplayTree(fx_info->colors);
cristy0ea377f2011-03-24 00:54:19 +00001081 for (i=(ssize_t) GetImageListLength(fx_info->images)-1; i >= 0; i--)
cristyd76c51e2011-03-26 00:21:26 +00001082 fx_info->view[i]=DestroyCacheView(fx_info->view[i]);
1083 fx_info->view=(CacheView **) RelinquishMagickMemory(fx_info->view);
cristy3ed852e2009-09-05 21:47:34 +00001084 fx_info->random_info=DestroyRandomInfo(fx_info->random_info);
1085 fx_info=(FxInfo *) RelinquishMagickMemory(fx_info);
1086 return(fx_info);
1087}
1088
1089/*
1090%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1091% %
1092% %
1093% %
cristy3ed852e2009-09-05 21:47:34 +00001094+ F x E v a l u a t e C h a n n e l E x p r e s s i o n %
1095% %
1096% %
1097% %
1098%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1099%
1100% FxEvaluateChannelExpression() evaluates an expression and returns the
1101% results.
1102%
1103% The format of the FxEvaluateExpression method is:
1104%
cristya19f1d72012-08-07 18:24:38 +00001105% double FxEvaluateChannelExpression(FxInfo *fx_info,
cristy0568ffc2011-07-25 16:54:14 +00001106% const PixelChannel channel,const ssize_t x,const ssize_t y,
cristya19f1d72012-08-07 18:24:38 +00001107% double *alpha,Exceptioninfo *exception)
1108% double FxEvaluateExpression(FxInfo *fx_info,
1109% double *alpha,Exceptioninfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001110%
1111% A description of each parameter follows:
1112%
1113% o fx_info: the fx info.
1114%
1115% o channel: the channel.
1116%
1117% o x,y: the pixel position.
1118%
1119% o alpha: the result.
1120%
1121% o exception: return any errors or warnings in this structure.
1122%
1123*/
1124
cristy351842f2010-03-07 15:27:38 +00001125static inline double MagickMax(const double x,const double y)
1126{
1127 if (x > y)
1128 return(x);
1129 return(y);
1130}
1131
1132static inline double MagickMin(const double x,const double y)
1133{
1134 if (x < y)
1135 return(x);
1136 return(y);
1137}
1138
cristya19f1d72012-08-07 18:24:38 +00001139static double FxChannelStatistics(FxInfo *fx_info,Image *image,
cristy0568ffc2011-07-25 16:54:14 +00001140 PixelChannel channel,const char *symbol,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001141{
cristy5048d302012-08-07 01:05:16 +00001142 ChannelType
1143 channel_mask;
1144
cristy3ed852e2009-09-05 21:47:34 +00001145 char
1146 key[MaxTextExtent],
1147 statistic[MaxTextExtent];
1148
1149 const char
1150 *value;
1151
1152 register const char
1153 *p;
1154
cristy5048d302012-08-07 01:05:16 +00001155 channel_mask=UndefinedChannel;
cristy3ed852e2009-09-05 21:47:34 +00001156 for (p=symbol; (*p != '.') && (*p != '\0'); p++) ;
1157 if (*p == '.')
cristy3ed852e2009-09-05 21:47:34 +00001158 {
cristy5048d302012-08-07 01:05:16 +00001159 ssize_t
1160 option;
1161
1162 option=ParseCommandOption(MagickPixelChannelOptions,MagickTrue,p+1);
1163 if (option >= 0)
1164 {
1165 channel=(PixelChannel) option;
1166 channel_mask=(ChannelType) (channel_mask | (1 << channel));
cristycf1296e2012-08-26 23:40:49 +00001167 SetPixelChannelMask(image,channel_mask);
cristy5048d302012-08-07 01:05:16 +00001168 }
cristy3ed852e2009-09-05 21:47:34 +00001169 }
cristyb51dff52011-05-19 16:55:47 +00001170 (void) FormatLocaleString(key,MaxTextExtent,"%p.%.20g.%s",(void *) image,
cristye8c25f92010-06-03 00:53:06 +00001171 (double) channel,symbol);
cristy3ed852e2009-09-05 21:47:34 +00001172 value=(const char *) GetValueFromSplayTree(fx_info->symbols,key);
1173 if (value != (const char *) NULL)
cristy5048d302012-08-07 01:05:16 +00001174 {
1175 if (channel_mask != UndefinedChannel)
cristycf1296e2012-08-26 23:40:49 +00001176 SetPixelChannelMask(image,channel_mask);
cristy5048d302012-08-07 01:05:16 +00001177 return(QuantumScale*StringToDouble(value,(char **) NULL));
1178 }
cristy3ed852e2009-09-05 21:47:34 +00001179 (void) DeleteNodeFromSplayTree(fx_info->symbols,key);
1180 if (LocaleNCompare(symbol,"depth",5) == 0)
1181 {
cristybb503372010-05-27 20:51:26 +00001182 size_t
cristy3ed852e2009-09-05 21:47:34 +00001183 depth;
1184
cristyfefab1b2011-07-05 00:33:22 +00001185 depth=GetImageDepth(image,exception);
1186 (void) FormatLocaleString(statistic,MaxTextExtent,"%.20g",(double) depth);
cristy3ed852e2009-09-05 21:47:34 +00001187 }
1188 if (LocaleNCompare(symbol,"kurtosis",8) == 0)
1189 {
1190 double
1191 kurtosis,
1192 skewness;
1193
cristyd42d9952011-07-08 14:21:50 +00001194 (void) GetImageKurtosis(image,&kurtosis,&skewness,exception);
cristyb51dff52011-05-19 16:55:47 +00001195 (void) FormatLocaleString(statistic,MaxTextExtent,"%g",kurtosis);
cristy3ed852e2009-09-05 21:47:34 +00001196 }
1197 if (LocaleNCompare(symbol,"maxima",6) == 0)
1198 {
1199 double
1200 maxima,
1201 minima;
1202
cristyd42d9952011-07-08 14:21:50 +00001203 (void) GetImageRange(image,&minima,&maxima,exception);
cristyb51dff52011-05-19 16:55:47 +00001204 (void) FormatLocaleString(statistic,MaxTextExtent,"%g",maxima);
cristy3ed852e2009-09-05 21:47:34 +00001205 }
1206 if (LocaleNCompare(symbol,"mean",4) == 0)
1207 {
1208 double
1209 mean,
1210 standard_deviation;
1211
cristyd42d9952011-07-08 14:21:50 +00001212 (void) GetImageMean(image,&mean,&standard_deviation,exception);
cristyb51dff52011-05-19 16:55:47 +00001213 (void) FormatLocaleString(statistic,MaxTextExtent,"%g",mean);
cristy3ed852e2009-09-05 21:47:34 +00001214 }
1215 if (LocaleNCompare(symbol,"minima",6) == 0)
1216 {
1217 double
1218 maxima,
1219 minima;
1220
cristyd42d9952011-07-08 14:21:50 +00001221 (void) GetImageRange(image,&minima,&maxima,exception);
cristyb51dff52011-05-19 16:55:47 +00001222 (void) FormatLocaleString(statistic,MaxTextExtent,"%g",minima);
cristy3ed852e2009-09-05 21:47:34 +00001223 }
1224 if (LocaleNCompare(symbol,"skewness",8) == 0)
1225 {
1226 double
1227 kurtosis,
1228 skewness;
1229
cristyd42d9952011-07-08 14:21:50 +00001230 (void) GetImageKurtosis(image,&kurtosis,&skewness,exception);
cristyb51dff52011-05-19 16:55:47 +00001231 (void) FormatLocaleString(statistic,MaxTextExtent,"%g",skewness);
cristy3ed852e2009-09-05 21:47:34 +00001232 }
1233 if (LocaleNCompare(symbol,"standard_deviation",18) == 0)
1234 {
1235 double
1236 mean,
1237 standard_deviation;
1238
cristyd42d9952011-07-08 14:21:50 +00001239 (void) GetImageMean(image,&mean,&standard_deviation,exception);
cristyb51dff52011-05-19 16:55:47 +00001240 (void) FormatLocaleString(statistic,MaxTextExtent,"%g",
cristy3ed852e2009-09-05 21:47:34 +00001241 standard_deviation);
1242 }
cristy5048d302012-08-07 01:05:16 +00001243 if (channel_mask != UndefinedChannel)
cristycf1296e2012-08-26 23:40:49 +00001244 SetPixelChannelMask(image,channel_mask);
cristy3ed852e2009-09-05 21:47:34 +00001245 (void) AddValueToSplayTree(fx_info->symbols,ConstantString(key),
1246 ConstantString(statistic));
cristydbdd0e32011-11-04 23:29:40 +00001247 return(QuantumScale*StringToDouble(statistic,(char **) NULL));
cristy3ed852e2009-09-05 21:47:34 +00001248}
1249
cristya19f1d72012-08-07 18:24:38 +00001250static double
cristy0568ffc2011-07-25 16:54:14 +00001251 FxEvaluateSubexpression(FxInfo *,const PixelChannel,const ssize_t,
cristya19f1d72012-08-07 18:24:38 +00001252 const ssize_t,const char *,double *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +00001253
cristyb0aad4c2011-11-02 19:30:35 +00001254static MagickOffsetType FxGCD(MagickOffsetType alpha,MagickOffsetType beta)
1255{
1256 if (beta != 0)
1257 return(FxGCD(beta,alpha % beta));
1258 return(alpha);
1259}
1260
cristy3ed852e2009-09-05 21:47:34 +00001261static inline const char *FxSubexpression(const char *expression,
1262 ExceptionInfo *exception)
1263{
1264 const char
1265 *subexpression;
1266
cristybb503372010-05-27 20:51:26 +00001267 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001268 level;
1269
1270 level=0;
1271 subexpression=expression;
1272 while ((*subexpression != '\0') &&
1273 ((level != 1) || (strchr(")",(int) *subexpression) == (char *) NULL)))
1274 {
1275 if (strchr("(",(int) *subexpression) != (char *) NULL)
1276 level++;
1277 else
1278 if (strchr(")",(int) *subexpression) != (char *) NULL)
1279 level--;
1280 subexpression++;
1281 }
1282 if (*subexpression == '\0')
1283 (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
anthonye5b39652012-04-21 05:37:29 +00001284 "UnbalancedParenthesis","'%s'",expression);
cristy3ed852e2009-09-05 21:47:34 +00001285 return(subexpression);
1286}
1287
cristya19f1d72012-08-07 18:24:38 +00001288static double FxGetSymbol(FxInfo *fx_info,const PixelChannel channel,
cristye85007d2010-06-06 22:51:36 +00001289 const ssize_t x,const ssize_t y,const char *expression,
1290 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001291{
1292 char
1293 *q,
1294 subexpression[MaxTextExtent],
1295 symbol[MaxTextExtent];
1296
1297 const char
1298 *p,
1299 *value;
1300
1301 Image
1302 *image;
1303
cristy4c08aed2011-07-01 19:47:50 +00001304 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001305 pixel;
1306
cristya19f1d72012-08-07 18:24:38 +00001307 double
cristy3ed852e2009-09-05 21:47:34 +00001308 alpha,
1309 beta;
1310
1311 PointInfo
1312 point;
1313
cristybb503372010-05-27 20:51:26 +00001314 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001315 i;
1316
1317 size_t
cristy1707c6c2012-01-18 23:30:54 +00001318 length,
cristy3ed852e2009-09-05 21:47:34 +00001319 level;
1320
1321 p=expression;
1322 i=GetImageIndexInList(fx_info->images);
1323 level=0;
1324 point.x=(double) x;
1325 point.y=(double) y;
1326 if (isalpha((int) *(p+1)) == 0)
1327 {
1328 if (strchr("suv",(int) *p) != (char *) NULL)
1329 {
1330 switch (*p)
1331 {
1332 case 's':
1333 default:
1334 {
1335 i=GetImageIndexInList(fx_info->images);
1336 break;
1337 }
1338 case 'u': i=0; break;
1339 case 'v': i=1; break;
1340 }
1341 p++;
1342 if (*p == '[')
1343 {
1344 level++;
1345 q=subexpression;
1346 for (p++; *p != '\0'; )
1347 {
1348 if (*p == '[')
1349 level++;
1350 else
1351 if (*p == ']')
1352 {
1353 level--;
1354 if (level == 0)
1355 break;
1356 }
1357 *q++=(*p++);
1358 }
1359 *q='\0';
1360 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,subexpression,
1361 &beta,exception);
cristybb503372010-05-27 20:51:26 +00001362 i=(ssize_t) (alpha+0.5);
cristy3ed852e2009-09-05 21:47:34 +00001363 p++;
1364 }
1365 if (*p == '.')
1366 p++;
1367 }
1368 if ((isalpha((int) *(p+1)) == 0) && (*p == 'p'))
1369 {
1370 p++;
1371 if (*p == '{')
1372 {
1373 level++;
1374 q=subexpression;
1375 for (p++; *p != '\0'; )
1376 {
1377 if (*p == '{')
1378 level++;
1379 else
1380 if (*p == '}')
1381 {
1382 level--;
1383 if (level == 0)
1384 break;
1385 }
1386 *q++=(*p++);
1387 }
1388 *q='\0';
1389 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,subexpression,
1390 &beta,exception);
1391 point.x=alpha;
1392 point.y=beta;
1393 p++;
1394 }
1395 else
1396 if (*p == '[')
1397 {
1398 level++;
1399 q=subexpression;
1400 for (p++; *p != '\0'; )
1401 {
1402 if (*p == '[')
1403 level++;
1404 else
1405 if (*p == ']')
1406 {
1407 level--;
1408 if (level == 0)
1409 break;
1410 }
1411 *q++=(*p++);
1412 }
1413 *q='\0';
1414 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,subexpression,
1415 &beta,exception);
1416 point.x+=alpha;
1417 point.y+=beta;
1418 p++;
1419 }
1420 if (*p == '.')
1421 p++;
1422 }
1423 }
1424 length=GetImageListLength(fx_info->images);
1425 while (i < 0)
cristybb503372010-05-27 20:51:26 +00001426 i+=(ssize_t) length;
cristy3ed852e2009-09-05 21:47:34 +00001427 i%=length;
1428 image=GetImageFromList(fx_info->images,i);
1429 if (image == (Image *) NULL)
1430 {
1431 (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
anthonye5b39652012-04-21 05:37:29 +00001432 "NoSuchImage","'%s'",expression);
cristy3ed852e2009-09-05 21:47:34 +00001433 return(0.0);
1434 }
cristy4c08aed2011-07-01 19:47:50 +00001435 GetPixelInfo(image,&pixel);
1436 (void) InterpolatePixelInfo(image,fx_info->view[i],image->interpolate,
cristy4f820712011-04-01 12:35:43 +00001437 point.x,point.y,&pixel,exception);
cristy1707c6c2012-01-18 23:30:54 +00001438 if ((strlen(p) > 2) && (LocaleCompare(p,"intensity") != 0) &&
1439 (LocaleCompare(p,"luminance") != 0) && (LocaleCompare(p,"hue") != 0) &&
cristy3ed852e2009-09-05 21:47:34 +00001440 (LocaleCompare(p,"saturation") != 0) &&
1441 (LocaleCompare(p,"lightness") != 0))
1442 {
1443 char
1444 name[MaxTextExtent];
1445
1446 (void) CopyMagickString(name,p,MaxTextExtent);
1447 for (q=name+(strlen(name)-1); q > name; q--)
1448 {
1449 if (*q == ')')
1450 break;
1451 if (*q == '.')
1452 {
1453 *q='\0';
1454 break;
1455 }
1456 }
1457 if ((strlen(name) > 2) &&
1458 (GetValueFromSplayTree(fx_info->symbols,name) == (const char *) NULL))
1459 {
cristy4c08aed2011-07-01 19:47:50 +00001460 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001461 *color;
1462
cristy4c08aed2011-07-01 19:47:50 +00001463 color=(PixelInfo *) GetValueFromSplayTree(fx_info->colors,name);
1464 if (color != (PixelInfo *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001465 {
1466 pixel=(*color);
1467 p+=strlen(name);
1468 }
1469 else
cristy1707c6c2012-01-18 23:30:54 +00001470 {
1471 MagickBooleanType
1472 status;
1473
1474 status=QueryColorCompliance(name,AllCompliance,&pixel,
1475 fx_info->exception);
1476 if (status != MagickFalse)
1477 {
1478 (void) AddValueToSplayTree(fx_info->colors,ConstantString(
1479 name),ClonePixelInfo(&pixel));
1480 p+=strlen(name);
1481 }
1482 }
cristy3ed852e2009-09-05 21:47:34 +00001483 }
1484 }
1485 (void) CopyMagickString(symbol,p,MaxTextExtent);
1486 StripString(symbol);
1487 if (*symbol == '\0')
1488 {
1489 switch (channel)
1490 {
cristy0568ffc2011-07-25 16:54:14 +00001491 case RedPixelChannel: return(QuantumScale*pixel.red);
1492 case GreenPixelChannel: return(QuantumScale*pixel.green);
1493 case BluePixelChannel: return(QuantumScale*pixel.blue);
1494 case BlackPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001495 {
1496 if (image->colorspace != CMYKColorspace)
1497 {
1498 (void) ThrowMagickException(exception,GetMagickModule(),
anthonye5b39652012-04-21 05:37:29 +00001499 ImageError,"ColorSeparatedImageRequired","'%s'",
cristy3ed852e2009-09-05 21:47:34 +00001500 image->filename);
1501 return(0.0);
1502 }
cristy4c08aed2011-07-01 19:47:50 +00001503 return(QuantumScale*pixel.black);
1504 }
cristy0568ffc2011-07-25 16:54:14 +00001505 case AlphaPixelChannel:
cristy4c08aed2011-07-01 19:47:50 +00001506 {
cristya19f1d72012-08-07 18:24:38 +00001507 double
cristy4c08aed2011-07-01 19:47:50 +00001508 alpha;
1509
cristy8a46d822012-08-28 23:32:39 +00001510 if (pixel.alpha_trait != BlendPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +00001511 return(1.0);
cristya19f1d72012-08-07 18:24:38 +00001512 alpha=(double) (QuantumScale*pixel.alpha);
cristy4c08aed2011-07-01 19:47:50 +00001513 return(alpha);
cristy3ed852e2009-09-05 21:47:34 +00001514 }
cristya382aca2011-12-06 18:22:48 +00001515 case IndexPixelChannel:
1516 return(0.0);
cristyb3a73b52011-07-26 01:34:43 +00001517 case IntensityPixelChannel:
cristyf364ed42010-12-15 01:54:43 +00001518 {
cristy4c08aed2011-07-01 19:47:50 +00001519 return(QuantumScale*GetPixelInfoIntensity(&pixel));
cristyf364ed42010-12-15 01:54:43 +00001520 }
cristy3ed852e2009-09-05 21:47:34 +00001521 default:
1522 break;
1523 }
1524 (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
anthonye5b39652012-04-21 05:37:29 +00001525 "UnableToParseExpression","'%s'",p);
cristy3ed852e2009-09-05 21:47:34 +00001526 return(0.0);
1527 }
1528 switch (*symbol)
1529 {
1530 case 'A':
1531 case 'a':
1532 {
1533 if (LocaleCompare(symbol,"a") == 0)
cristya19f1d72012-08-07 18:24:38 +00001534 return((double) (QuantumScale*pixel.alpha));
cristy3ed852e2009-09-05 21:47:34 +00001535 break;
1536 }
1537 case 'B':
1538 case 'b':
1539 {
1540 if (LocaleCompare(symbol,"b") == 0)
1541 return(QuantumScale*pixel.blue);
1542 break;
1543 }
1544 case 'C':
1545 case 'c':
1546 {
1547 if (LocaleNCompare(symbol,"channel",7) == 0)
1548 {
1549 GeometryInfo
1550 channel_info;
1551
1552 MagickStatusType
1553 flags;
1554
1555 flags=ParseGeometry(symbol+7,&channel_info);
1556 if (image->colorspace == CMYKColorspace)
1557 switch (channel)
1558 {
cristy0568ffc2011-07-25 16:54:14 +00001559 case CyanPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001560 {
1561 if ((flags & RhoValue) == 0)
1562 return(0.0);
1563 return(channel_info.rho);
1564 }
cristy0568ffc2011-07-25 16:54:14 +00001565 case MagentaPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001566 {
1567 if ((flags & SigmaValue) == 0)
1568 return(0.0);
1569 return(channel_info.sigma);
1570 }
cristy0568ffc2011-07-25 16:54:14 +00001571 case YellowPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001572 {
1573 if ((flags & XiValue) == 0)
1574 return(0.0);
1575 return(channel_info.xi);
1576 }
cristy0568ffc2011-07-25 16:54:14 +00001577 case BlackPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001578 {
1579 if ((flags & PsiValue) == 0)
1580 return(0.0);
1581 return(channel_info.psi);
1582 }
cristy0568ffc2011-07-25 16:54:14 +00001583 case AlphaPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001584 {
1585 if ((flags & ChiValue) == 0)
1586 return(0.0);
1587 return(channel_info.chi);
1588 }
1589 default:
1590 return(0.0);
1591 }
1592 switch (channel)
1593 {
cristy0568ffc2011-07-25 16:54:14 +00001594 case RedPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001595 {
1596 if ((flags & RhoValue) == 0)
1597 return(0.0);
1598 return(channel_info.rho);
1599 }
cristy0568ffc2011-07-25 16:54:14 +00001600 case GreenPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001601 {
1602 if ((flags & SigmaValue) == 0)
1603 return(0.0);
1604 return(channel_info.sigma);
1605 }
cristy0568ffc2011-07-25 16:54:14 +00001606 case BluePixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001607 {
1608 if ((flags & XiValue) == 0)
1609 return(0.0);
1610 return(channel_info.xi);
1611 }
cristy0568ffc2011-07-25 16:54:14 +00001612 case BlackPixelChannel:
cristy3ed852e2009-09-05 21:47:34 +00001613 {
1614 if ((flags & ChiValue) == 0)
1615 return(0.0);
1616 return(channel_info.chi);
1617 }
cristy0568ffc2011-07-25 16:54:14 +00001618 case AlphaPixelChannel:
cristy4c08aed2011-07-01 19:47:50 +00001619 {
1620 if ((flags & PsiValue) == 0)
1621 return(0.0);
1622 return(channel_info.psi);
1623 }
cristy3ed852e2009-09-05 21:47:34 +00001624 default:
1625 return(0.0);
1626 }
1627 return(0.0);
1628 }
1629 if (LocaleCompare(symbol,"c") == 0)
1630 return(QuantumScale*pixel.red);
1631 break;
1632 }
1633 case 'D':
1634 case 'd':
1635 {
1636 if (LocaleNCompare(symbol,"depth",5) == 0)
1637 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1638 break;
1639 }
1640 case 'G':
1641 case 'g':
1642 {
1643 if (LocaleCompare(symbol,"g") == 0)
1644 return(QuantumScale*pixel.green);
1645 break;
1646 }
1647 case 'K':
1648 case 'k':
1649 {
1650 if (LocaleNCompare(symbol,"kurtosis",8) == 0)
1651 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1652 if (LocaleCompare(symbol,"k") == 0)
1653 {
1654 if (image->colorspace != CMYKColorspace)
1655 {
1656 (void) ThrowMagickException(exception,GetMagickModule(),
anthonye5b39652012-04-21 05:37:29 +00001657 OptionError,"ColorSeparatedImageRequired","'%s'",
cristy3ed852e2009-09-05 21:47:34 +00001658 image->filename);
1659 return(0.0);
1660 }
cristy4c08aed2011-07-01 19:47:50 +00001661 return(QuantumScale*pixel.black);
cristy3ed852e2009-09-05 21:47:34 +00001662 }
1663 break;
1664 }
1665 case 'H':
1666 case 'h':
1667 {
1668 if (LocaleCompare(symbol,"h") == 0)
cristya19f1d72012-08-07 18:24:38 +00001669 return((double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001670 if (LocaleCompare(symbol,"hue") == 0)
1671 {
1672 double
1673 hue,
1674 lightness,
1675 saturation;
1676
cristy0a39a5c2012-06-27 12:51:45 +00001677 ConvertRGBToHSL(pixel.red,pixel.green,pixel.blue,&hue,&saturation,
cristyda1f9c12011-10-02 21:39:49 +00001678 &lightness);
cristy3ed852e2009-09-05 21:47:34 +00001679 return(hue);
1680 }
1681 break;
1682 }
1683 case 'I':
1684 case 'i':
1685 {
1686 if ((LocaleCompare(symbol,"image.depth") == 0) ||
1687 (LocaleCompare(symbol,"image.minima") == 0) ||
1688 (LocaleCompare(symbol,"image.maxima") == 0) ||
1689 (LocaleCompare(symbol,"image.mean") == 0) ||
1690 (LocaleCompare(symbol,"image.kurtosis") == 0) ||
1691 (LocaleCompare(symbol,"image.skewness") == 0) ||
1692 (LocaleCompare(symbol,"image.standard_deviation") == 0))
1693 return(FxChannelStatistics(fx_info,image,channel,symbol+6,exception));
1694 if (LocaleCompare(symbol,"image.resolution.x") == 0)
cristy2a11bef2011-10-28 18:33:11 +00001695 return(image->resolution.x);
cristy3ed852e2009-09-05 21:47:34 +00001696 if (LocaleCompare(symbol,"image.resolution.y") == 0)
cristy2a11bef2011-10-28 18:33:11 +00001697 return(image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +00001698 if (LocaleCompare(symbol,"intensity") == 0)
cristy4c08aed2011-07-01 19:47:50 +00001699 return(QuantumScale*GetPixelInfoIntensity(&pixel));
cristy3ed852e2009-09-05 21:47:34 +00001700 if (LocaleCompare(symbol,"i") == 0)
cristya19f1d72012-08-07 18:24:38 +00001701 return((double) x);
cristy3ed852e2009-09-05 21:47:34 +00001702 break;
1703 }
1704 case 'J':
1705 case 'j':
1706 {
1707 if (LocaleCompare(symbol,"j") == 0)
cristya19f1d72012-08-07 18:24:38 +00001708 return((double) y);
cristy3ed852e2009-09-05 21:47:34 +00001709 break;
1710 }
1711 case 'L':
1712 case 'l':
1713 {
1714 if (LocaleCompare(symbol,"lightness") == 0)
1715 {
1716 double
1717 hue,
1718 lightness,
1719 saturation;
1720
cristy0a39a5c2012-06-27 12:51:45 +00001721 ConvertRGBToHSL(pixel.red,pixel.green,pixel.blue,&hue,&saturation,
cristyda1f9c12011-10-02 21:39:49 +00001722 &lightness);
cristy3ed852e2009-09-05 21:47:34 +00001723 return(lightness);
1724 }
1725 if (LocaleCompare(symbol,"luminance") == 0)
1726 {
1727 double
1728 luminence;
1729
cristya86a5cb2012-10-14 13:40:33 +00001730 luminence=0.21267f*pixel.red+0.71516f*pixel.green+0.07217f*pixel.blue;
cristy3ed852e2009-09-05 21:47:34 +00001731 return(QuantumScale*luminence);
1732 }
1733 break;
1734 }
1735 case 'M':
1736 case 'm':
1737 {
1738 if (LocaleNCompare(symbol,"maxima",6) == 0)
1739 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1740 if (LocaleNCompare(symbol,"mean",4) == 0)
1741 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1742 if (LocaleNCompare(symbol,"minima",6) == 0)
1743 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1744 if (LocaleCompare(symbol,"m") == 0)
1745 return(QuantumScale*pixel.blue);
1746 break;
1747 }
1748 case 'N':
1749 case 'n':
1750 {
1751 if (LocaleCompare(symbol,"n") == 0)
cristya19f1d72012-08-07 18:24:38 +00001752 return((double) GetImageListLength(fx_info->images));
cristy3ed852e2009-09-05 21:47:34 +00001753 break;
1754 }
1755 case 'O':
1756 case 'o':
1757 {
1758 if (LocaleCompare(symbol,"o") == 0)
cristy4c08aed2011-07-01 19:47:50 +00001759 return(QuantumScale*pixel.alpha);
cristy3ed852e2009-09-05 21:47:34 +00001760 break;
1761 }
1762 case 'P':
1763 case 'p':
1764 {
1765 if (LocaleCompare(symbol,"page.height") == 0)
cristya19f1d72012-08-07 18:24:38 +00001766 return((double) image->page.height);
cristy3ed852e2009-09-05 21:47:34 +00001767 if (LocaleCompare(symbol,"page.width") == 0)
cristya19f1d72012-08-07 18:24:38 +00001768 return((double) image->page.width);
cristy3ed852e2009-09-05 21:47:34 +00001769 if (LocaleCompare(symbol,"page.x") == 0)
cristya19f1d72012-08-07 18:24:38 +00001770 return((double) image->page.x);
cristy3ed852e2009-09-05 21:47:34 +00001771 if (LocaleCompare(symbol,"page.y") == 0)
cristya19f1d72012-08-07 18:24:38 +00001772 return((double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +00001773 break;
1774 }
1775 case 'R':
1776 case 'r':
1777 {
1778 if (LocaleCompare(symbol,"resolution.x") == 0)
cristy2a11bef2011-10-28 18:33:11 +00001779 return(image->resolution.x);
cristy3ed852e2009-09-05 21:47:34 +00001780 if (LocaleCompare(symbol,"resolution.y") == 0)
cristy2a11bef2011-10-28 18:33:11 +00001781 return(image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +00001782 if (LocaleCompare(symbol,"r") == 0)
1783 return(QuantumScale*pixel.red);
1784 break;
1785 }
1786 case 'S':
1787 case 's':
1788 {
1789 if (LocaleCompare(symbol,"saturation") == 0)
1790 {
1791 double
1792 hue,
1793 lightness,
1794 saturation;
1795
cristy0a39a5c2012-06-27 12:51:45 +00001796 ConvertRGBToHSL(pixel.red,pixel.green,pixel.blue,&hue,&saturation,
cristyda1f9c12011-10-02 21:39:49 +00001797 &lightness);
cristy3ed852e2009-09-05 21:47:34 +00001798 return(saturation);
1799 }
1800 if (LocaleNCompare(symbol,"skewness",8) == 0)
1801 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1802 if (LocaleNCompare(symbol,"standard_deviation",18) == 0)
1803 return(FxChannelStatistics(fx_info,image,channel,symbol,exception));
1804 break;
1805 }
1806 case 'T':
1807 case 't':
1808 {
1809 if (LocaleCompare(symbol,"t") == 0)
cristya19f1d72012-08-07 18:24:38 +00001810 return((double) GetImageIndexInList(fx_info->images));
cristy3ed852e2009-09-05 21:47:34 +00001811 break;
1812 }
1813 case 'W':
1814 case 'w':
1815 {
1816 if (LocaleCompare(symbol,"w") == 0)
cristya19f1d72012-08-07 18:24:38 +00001817 return((double) image->columns);
cristy3ed852e2009-09-05 21:47:34 +00001818 break;
1819 }
1820 case 'Y':
1821 case 'y':
1822 {
1823 if (LocaleCompare(symbol,"y") == 0)
1824 return(QuantumScale*pixel.green);
1825 break;
1826 }
1827 case 'Z':
1828 case 'z':
1829 {
1830 if (LocaleCompare(symbol,"z") == 0)
1831 {
cristya19f1d72012-08-07 18:24:38 +00001832 double
cristy3ed852e2009-09-05 21:47:34 +00001833 depth;
1834
cristya19f1d72012-08-07 18:24:38 +00001835 depth=(double) GetImageDepth(image,fx_info->exception);
cristy3ed852e2009-09-05 21:47:34 +00001836 return(depth);
1837 }
1838 break;
1839 }
1840 default:
1841 break;
1842 }
1843 value=(const char *) GetValueFromSplayTree(fx_info->symbols,symbol);
1844 if (value != (const char *) NULL)
cristya19f1d72012-08-07 18:24:38 +00001845 return((double) StringToDouble(value,(char **) NULL));
cristy3ed852e2009-09-05 21:47:34 +00001846 (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
anthonye5b39652012-04-21 05:37:29 +00001847 "UnableToParseExpression","'%s'",symbol);
cristy3ed852e2009-09-05 21:47:34 +00001848 return(0.0);
1849}
1850
1851static const char *FxOperatorPrecedence(const char *expression,
1852 ExceptionInfo *exception)
1853{
1854 typedef enum
1855 {
1856 UndefinedPrecedence,
1857 NullPrecedence,
1858 BitwiseComplementPrecedence,
1859 ExponentPrecedence,
cristy116af162010-08-13 01:25:47 +00001860 ExponentialNotationPrecedence,
cristy3ed852e2009-09-05 21:47:34 +00001861 MultiplyPrecedence,
1862 AdditionPrecedence,
1863 ShiftPrecedence,
1864 RelationalPrecedence,
1865 EquivalencyPrecedence,
1866 BitwiseAndPrecedence,
1867 BitwiseOrPrecedence,
1868 LogicalAndPrecedence,
1869 LogicalOrPrecedence,
1870 TernaryPrecedence,
1871 AssignmentPrecedence,
1872 CommaPrecedence,
1873 SeparatorPrecedence
1874 } FxPrecedence;
1875
1876 FxPrecedence
1877 precedence,
1878 target;
1879
1880 register const char
1881 *subexpression;
1882
1883 register int
1884 c;
1885
cristybb503372010-05-27 20:51:26 +00001886 size_t
cristy3ed852e2009-09-05 21:47:34 +00001887 level;
1888
1889 c=0;
1890 level=0;
1891 subexpression=(const char *) NULL;
1892 target=NullPrecedence;
1893 while (*expression != '\0')
1894 {
1895 precedence=UndefinedPrecedence;
1896 if ((isspace((int) ((char) *expression)) != 0) || (c == (int) '@'))
1897 {
1898 expression++;
1899 continue;
1900 }
cristy488fa882010-03-01 22:34:24 +00001901 switch (*expression)
1902 {
1903 case 'A':
1904 case 'a':
cristy3ed852e2009-09-05 21:47:34 +00001905 {
cristyb33454f2011-08-03 02:10:45 +00001906#if defined(MAGICKCORE_HAVE_ACOSH)
cristy363772a2011-07-28 23:25:33 +00001907 if (LocaleNCompare(expression,"acosh",5) == 0)
1908 {
1909 expression+=5;
1910 break;
1911 }
cristyb33454f2011-08-03 02:10:45 +00001912#endif
1913#if defined(MAGICKCORE_HAVE_ASINH)
cristy363772a2011-07-28 23:25:33 +00001914 if (LocaleNCompare(expression,"asinh",5) == 0)
1915 {
1916 expression+=5;
1917 break;
1918 }
cristyb33454f2011-08-03 02:10:45 +00001919#endif
1920#if defined(MAGICKCORE_HAVE_ATANH)
cristy363772a2011-07-28 23:25:33 +00001921 if (LocaleNCompare(expression,"atanh",5) == 0)
cristy488fa882010-03-01 22:34:24 +00001922 {
1923 expression+=5;
1924 break;
1925 }
cristyb33454f2011-08-03 02:10:45 +00001926#endif
anthony62838e52012-05-24 12:41:54 +00001927 if (LocaleNCompare(expression,"atan2",5) == 0)
1928 {
1929 expression+=5;
1930 break;
1931 }
cristy488fa882010-03-01 22:34:24 +00001932 break;
cristy3ed852e2009-09-05 21:47:34 +00001933 }
cristy62d455f2011-11-03 11:42:28 +00001934 case 'E':
1935 case 'e':
1936 {
1937 if ((LocaleNCompare(expression,"E+",2) == 0) ||
1938 (LocaleNCompare(expression,"E-",2) == 0))
1939 {
1940 expression+=2; /* scientific notation */
1941 break;
1942 }
1943 }
cristy488fa882010-03-01 22:34:24 +00001944 case 'J':
1945 case 'j':
1946 {
1947 if ((LocaleNCompare(expression,"j0",2) == 0) ||
1948 (LocaleNCompare(expression,"j1",2) == 0))
1949 {
1950 expression+=2;
1951 break;
1952 }
1953 break;
1954 }
cristy2def9322010-06-18 23:59:37 +00001955 case '#':
1956 {
1957 while (isxdigit((int) ((unsigned char) *(expression+1))) != 0)
1958 expression++;
1959 break;
1960 }
cristy488fa882010-03-01 22:34:24 +00001961 default:
1962 break;
1963 }
cristy3ed852e2009-09-05 21:47:34 +00001964 if ((c == (int) '{') || (c == (int) '['))
1965 level++;
1966 else
1967 if ((c == (int) '}') || (c == (int) ']'))
1968 level--;
1969 if (level == 0)
1970 switch ((unsigned char) *expression)
1971 {
1972 case '~':
1973 case '!':
1974 {
1975 precedence=BitwiseComplementPrecedence;
1976 break;
1977 }
1978 case '^':
cristy6621e252010-08-13 00:42:57 +00001979 case '@':
cristy3ed852e2009-09-05 21:47:34 +00001980 {
1981 precedence=ExponentPrecedence;
1982 break;
1983 }
1984 default:
1985 {
1986 if (((c != 0) && ((isdigit((int) ((char) c)) != 0) ||
1987 (strchr(")",c) != (char *) NULL))) &&
1988 (((islower((int) ((char) *expression)) != 0) ||
1989 (strchr("(",(int) *expression) != (char *) NULL)) ||
1990 ((isdigit((int) ((char) c)) == 0) &&
1991 (isdigit((int) ((char) *expression)) != 0))) &&
1992 (strchr("xy",(int) *expression) == (char *) NULL))
1993 precedence=MultiplyPrecedence;
1994 break;
1995 }
1996 case '*':
1997 case '/':
1998 case '%':
1999 {
2000 precedence=MultiplyPrecedence;
2001 break;
2002 }
2003 case '+':
2004 case '-':
2005 {
2006 if ((strchr("(+-/*%:&^|<>~,",c) == (char *) NULL) ||
2007 (isalpha(c) != 0))
2008 precedence=AdditionPrecedence;
2009 break;
2010 }
2011 case LeftShiftOperator:
2012 case RightShiftOperator:
2013 {
2014 precedence=ShiftPrecedence;
2015 break;
2016 }
2017 case '<':
2018 case LessThanEqualOperator:
2019 case GreaterThanEqualOperator:
2020 case '>':
2021 {
2022 precedence=RelationalPrecedence;
2023 break;
2024 }
2025 case EqualOperator:
2026 case NotEqualOperator:
2027 {
2028 precedence=EquivalencyPrecedence;
2029 break;
2030 }
2031 case '&':
2032 {
2033 precedence=BitwiseAndPrecedence;
2034 break;
2035 }
2036 case '|':
2037 {
2038 precedence=BitwiseOrPrecedence;
2039 break;
2040 }
2041 case LogicalAndOperator:
2042 {
2043 precedence=LogicalAndPrecedence;
2044 break;
2045 }
2046 case LogicalOrOperator:
2047 {
2048 precedence=LogicalOrPrecedence;
2049 break;
2050 }
cristy116af162010-08-13 01:25:47 +00002051 case ExponentialNotation:
2052 {
2053 precedence=ExponentialNotationPrecedence;
2054 break;
2055 }
cristy3ed852e2009-09-05 21:47:34 +00002056 case ':':
2057 case '?':
2058 {
2059 precedence=TernaryPrecedence;
2060 break;
2061 }
2062 case '=':
2063 {
2064 precedence=AssignmentPrecedence;
2065 break;
2066 }
2067 case ',':
2068 {
2069 precedence=CommaPrecedence;
2070 break;
2071 }
2072 case ';':
2073 {
2074 precedence=SeparatorPrecedence;
2075 break;
2076 }
2077 }
2078 if ((precedence == BitwiseComplementPrecedence) ||
2079 (precedence == TernaryPrecedence) ||
2080 (precedence == AssignmentPrecedence))
2081 {
2082 if (precedence > target)
2083 {
2084 /*
2085 Right-to-left associativity.
2086 */
2087 target=precedence;
2088 subexpression=expression;
2089 }
2090 }
2091 else
2092 if (precedence >= target)
2093 {
2094 /*
2095 Left-to-right associativity.
2096 */
2097 target=precedence;
2098 subexpression=expression;
2099 }
2100 if (strchr("(",(int) *expression) != (char *) NULL)
2101 expression=FxSubexpression(expression,exception);
2102 c=(int) (*expression++);
2103 }
2104 return(subexpression);
2105}
2106
cristya19f1d72012-08-07 18:24:38 +00002107static double FxEvaluateSubexpression(FxInfo *fx_info,
cristy0568ffc2011-07-25 16:54:14 +00002108 const PixelChannel channel,const ssize_t x,const ssize_t y,
cristya19f1d72012-08-07 18:24:38 +00002109 const char *expression,double *beta,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002110{
2111 char
2112 *q,
2113 subexpression[MaxTextExtent];
2114
cristya19f1d72012-08-07 18:24:38 +00002115 double
cristy3ed852e2009-09-05 21:47:34 +00002116 alpha,
2117 gamma;
2118
2119 register const char
2120 *p;
2121
2122 *beta=0.0;
2123 if (exception->severity != UndefinedException)
2124 return(0.0);
2125 while (isspace((int) *expression) != 0)
2126 expression++;
2127 if (*expression == '\0')
2128 {
2129 (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
anthonye5b39652012-04-21 05:37:29 +00002130 "MissingExpression","'%s'",expression);
cristy3ed852e2009-09-05 21:47:34 +00002131 return(0.0);
2132 }
cristy66322f02010-05-17 11:40:48 +00002133 *subexpression='\0';
cristy3ed852e2009-09-05 21:47:34 +00002134 p=FxOperatorPrecedence(expression,exception);
2135 if (p != (const char *) NULL)
2136 {
2137 (void) CopyMagickString(subexpression,expression,(size_t)
2138 (p-expression+1));
2139 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,subexpression,beta,
2140 exception);
2141 switch ((unsigned char) *p)
2142 {
2143 case '~':
2144 {
2145 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristya19f1d72012-08-07 18:24:38 +00002146 *beta=(double) (~(size_t) *beta);
cristy3ed852e2009-09-05 21:47:34 +00002147 return(*beta);
2148 }
2149 case '!':
2150 {
2151 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2152 return(*beta == 0.0 ? 1.0 : 0.0);
2153 }
2154 case '^':
2155 {
2156 *beta=pow((double) alpha,(double) FxEvaluateSubexpression(fx_info,
2157 channel,x,y,++p,beta,exception));
2158 return(*beta);
2159 }
2160 case '*':
cristy116af162010-08-13 01:25:47 +00002161 case ExponentialNotation:
cristy3ed852e2009-09-05 21:47:34 +00002162 {
2163 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2164 return(alpha*(*beta));
2165 }
2166 case '/':
2167 {
2168 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2169 if (*beta == 0.0)
2170 {
2171 if (exception->severity == UndefinedException)
2172 (void) ThrowMagickException(exception,GetMagickModule(),
anthonye5b39652012-04-21 05:37:29 +00002173 OptionError,"DivideByZero","'%s'",expression);
cristy3ed852e2009-09-05 21:47:34 +00002174 return(0.0);
2175 }
2176 return(alpha/(*beta));
2177 }
2178 case '%':
2179 {
2180 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2181 *beta=fabs(floor(((double) *beta)+0.5));
2182 if (*beta == 0.0)
2183 {
2184 (void) ThrowMagickException(exception,GetMagickModule(),
anthonye5b39652012-04-21 05:37:29 +00002185 OptionError,"DivideByZero","'%s'",expression);
cristy3ed852e2009-09-05 21:47:34 +00002186 return(0.0);
2187 }
2188 return(fmod((double) alpha,(double) *beta));
2189 }
2190 case '+':
2191 {
2192 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2193 return(alpha+(*beta));
2194 }
2195 case '-':
2196 {
2197 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2198 return(alpha-(*beta));
2199 }
2200 case LeftShiftOperator:
2201 {
2202 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristya19f1d72012-08-07 18:24:38 +00002203 *beta=(double) ((size_t) (alpha+0.5) << (size_t) (gamma+0.5));
cristy3ed852e2009-09-05 21:47:34 +00002204 return(*beta);
2205 }
2206 case RightShiftOperator:
2207 {
2208 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristya19f1d72012-08-07 18:24:38 +00002209 *beta=(double) ((size_t) (alpha+0.5) >> (size_t) (gamma+0.5));
cristy3ed852e2009-09-05 21:47:34 +00002210 return(*beta);
2211 }
2212 case '<':
2213 {
2214 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2215 return(alpha < *beta ? 1.0 : 0.0);
2216 }
2217 case LessThanEqualOperator:
2218 {
2219 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2220 return(alpha <= *beta ? 1.0 : 0.0);
2221 }
2222 case '>':
2223 {
2224 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2225 return(alpha > *beta ? 1.0 : 0.0);
2226 }
2227 case GreaterThanEqualOperator:
2228 {
2229 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2230 return(alpha >= *beta ? 1.0 : 0.0);
2231 }
2232 case EqualOperator:
2233 {
2234 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristy9b528342012-06-02 00:59:20 +00002235 return(fabs(alpha-(*beta)) < MagickEpsilon ? MagickEpsilon : 0.0);
cristy3ed852e2009-09-05 21:47:34 +00002236 }
2237 case NotEqualOperator:
2238 {
2239 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristy972050b2012-06-04 22:09:17 +00002240 return(fabs(alpha-(*beta)) >= MagickEpsilon ? 1.0 : 0.0);
cristy3ed852e2009-09-05 21:47:34 +00002241 }
2242 case '&':
2243 {
2244 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristya19f1d72012-08-07 18:24:38 +00002245 *beta=(double) ((size_t) (alpha+0.5) & (size_t) (gamma+0.5));
cristy3ed852e2009-09-05 21:47:34 +00002246 return(*beta);
2247 }
2248 case '|':
2249 {
2250 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristya19f1d72012-08-07 18:24:38 +00002251 *beta=(double) ((size_t) (alpha+0.5) | (size_t) (gamma+0.5));
cristy3ed852e2009-09-05 21:47:34 +00002252 return(*beta);
2253 }
2254 case LogicalAndOperator:
2255 {
2256 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2257 *beta=(alpha > 0.0) && (gamma > 0.0) ? 1.0 : 0.0;
2258 return(*beta);
2259 }
2260 case LogicalOrOperator:
2261 {
2262 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2263 *beta=(alpha > 0.0) || (gamma > 0.0) ? 1.0 : 0.0;
2264 return(*beta);
2265 }
2266 case '?':
2267 {
cristya19f1d72012-08-07 18:24:38 +00002268 double
cristy3ed852e2009-09-05 21:47:34 +00002269 gamma;
2270
2271 (void) CopyMagickString(subexpression,++p,MaxTextExtent);
2272 q=subexpression;
2273 p=StringToken(":",&q);
2274 if (q == (char *) NULL)
2275 {
2276 (void) ThrowMagickException(exception,GetMagickModule(),
anthonye5b39652012-04-21 05:37:29 +00002277 OptionError,"UnableToParseExpression","'%s'",subexpression);
cristy3ed852e2009-09-05 21:47:34 +00002278 return(0.0);
2279 }
cristy972050b2012-06-04 22:09:17 +00002280 if (fabs((double) alpha) >= MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00002281 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,p,beta,exception);
2282 else
2283 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,q,beta,exception);
2284 return(gamma);
2285 }
2286 case '=':
2287 {
2288 char
2289 numeric[MaxTextExtent];
2290
2291 q=subexpression;
2292 while (isalpha((int) ((unsigned char) *q)) != 0)
2293 q++;
2294 if (*q != '\0')
2295 {
2296 (void) ThrowMagickException(exception,GetMagickModule(),
anthonye5b39652012-04-21 05:37:29 +00002297 OptionError,"UnableToParseExpression","'%s'",subexpression);
cristy3ed852e2009-09-05 21:47:34 +00002298 return(0.0);
2299 }
2300 ClearMagickException(exception);
2301 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
cristyb51dff52011-05-19 16:55:47 +00002302 (void) FormatLocaleString(numeric,MaxTextExtent,"%g",(double)
cristy8cd5b312010-01-07 01:10:24 +00002303 *beta);
cristy3ed852e2009-09-05 21:47:34 +00002304 (void) DeleteNodeFromSplayTree(fx_info->symbols,subexpression);
2305 (void) AddValueToSplayTree(fx_info->symbols,ConstantString(
2306 subexpression),ConstantString(numeric));
2307 return(*beta);
2308 }
2309 case ',':
2310 {
2311 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2312 return(alpha);
2313 }
2314 case ';':
2315 {
2316 *beta=FxEvaluateSubexpression(fx_info,channel,x,y,++p,beta,exception);
2317 return(*beta);
2318 }
2319 default:
2320 {
2321 gamma=alpha*FxEvaluateSubexpression(fx_info,channel,x,y,p,beta,
2322 exception);
2323 return(gamma);
2324 }
2325 }
2326 }
2327 if (strchr("(",(int) *expression) != (char *) NULL)
2328 {
2329 (void) CopyMagickString(subexpression,expression+1,MaxTextExtent);
2330 subexpression[strlen(subexpression)-1]='\0';
2331 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,subexpression,beta,
2332 exception);
2333 return(gamma);
2334 }
cristy8b8a3ae2010-10-23 18:49:46 +00002335 switch (*expression)
cristy3ed852e2009-09-05 21:47:34 +00002336 {
2337 case '+':
2338 {
2339 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,expression+1,beta,
2340 exception);
2341 return(1.0*gamma);
2342 }
2343 case '-':
2344 {
2345 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,expression+1,beta,
2346 exception);
2347 return(-1.0*gamma);
2348 }
2349 case '~':
2350 {
2351 gamma=FxEvaluateSubexpression(fx_info,channel,x,y,expression+1,beta,
2352 exception);
cristya19f1d72012-08-07 18:24:38 +00002353 return((double) (~(size_t) (gamma+0.5)));
cristy3ed852e2009-09-05 21:47:34 +00002354 }
2355 case 'A':
2356 case 'a':
2357 {
2358 if (LocaleNCompare(expression,"abs",3) == 0)
2359 {
2360 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2361 exception);
cristya19f1d72012-08-07 18:24:38 +00002362 return((double) fabs((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002363 }
cristyb33454f2011-08-03 02:10:45 +00002364#if defined(MAGICKCORE_HAVE_ACOSH)
cristy363772a2011-07-28 23:25:33 +00002365 if (LocaleNCompare(expression,"acosh",5) == 0)
2366 {
2367 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2368 exception);
cristya19f1d72012-08-07 18:24:38 +00002369 return((double) acosh((double) alpha));
cristy363772a2011-07-28 23:25:33 +00002370 }
cristyb33454f2011-08-03 02:10:45 +00002371#endif
cristy3ed852e2009-09-05 21:47:34 +00002372 if (LocaleNCompare(expression,"acos",4) == 0)
2373 {
2374 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2375 exception);
cristya19f1d72012-08-07 18:24:38 +00002376 return((double) acos((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002377 }
cristy43c22f42010-03-30 12:34:07 +00002378#if defined(MAGICKCORE_HAVE_J1)
cristyee56cf12010-03-01 22:17:06 +00002379 if (LocaleNCompare(expression,"airy",4) == 0)
2380 {
2381 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2382 exception);
2383 if (alpha == 0.0)
cristy2dd03222010-03-30 22:12:11 +00002384 return(1.0);
2385 gamma=2.0*j1((double) (MagickPI*alpha))/(MagickPI*alpha);
cristy43c22f42010-03-30 12:34:07 +00002386 return(gamma*gamma);
cristyee56cf12010-03-01 22:17:06 +00002387 }
cristy43c22f42010-03-30 12:34:07 +00002388#endif
cristyb33454f2011-08-03 02:10:45 +00002389#if defined(MAGICKCORE_HAVE_ASINH)
cristy363772a2011-07-28 23:25:33 +00002390 if (LocaleNCompare(expression,"asinh",5) == 0)
2391 {
2392 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2393 exception);
cristya19f1d72012-08-07 18:24:38 +00002394 return((double) asinh((double) alpha));
cristy363772a2011-07-28 23:25:33 +00002395 }
cristyb33454f2011-08-03 02:10:45 +00002396#endif
cristy3ed852e2009-09-05 21:47:34 +00002397 if (LocaleNCompare(expression,"asin",4) == 0)
2398 {
2399 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2400 exception);
cristya19f1d72012-08-07 18:24:38 +00002401 return((double) asin((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002402 }
2403 if (LocaleNCompare(expression,"alt",3) == 0)
2404 {
2405 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2406 exception);
cristybb503372010-05-27 20:51:26 +00002407 return(((ssize_t) alpha) & 0x01 ? -1.0 : 1.0);
cristy3ed852e2009-09-05 21:47:34 +00002408 }
2409 if (LocaleNCompare(expression,"atan2",5) == 0)
2410 {
2411 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2412 exception);
cristya19f1d72012-08-07 18:24:38 +00002413 return((double) atan2((double) alpha,(double) *beta));
cristy3ed852e2009-09-05 21:47:34 +00002414 }
cristyb33454f2011-08-03 02:10:45 +00002415#if defined(MAGICKCORE_HAVE_ATANH)
cristy363772a2011-07-28 23:25:33 +00002416 if (LocaleNCompare(expression,"atanh",5) == 0)
2417 {
2418 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2419 exception);
cristya19f1d72012-08-07 18:24:38 +00002420 return((double) atanh((double) alpha));
cristy363772a2011-07-28 23:25:33 +00002421 }
cristyb33454f2011-08-03 02:10:45 +00002422#endif
cristy3ed852e2009-09-05 21:47:34 +00002423 if (LocaleNCompare(expression,"atan",4) == 0)
2424 {
2425 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2426 exception);
cristya19f1d72012-08-07 18:24:38 +00002427 return((double) atan((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002428 }
2429 if (LocaleCompare(expression,"a") == 0)
2430 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2431 break;
2432 }
2433 case 'B':
2434 case 'b':
2435 {
2436 if (LocaleCompare(expression,"b") == 0)
2437 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2438 break;
2439 }
2440 case 'C':
2441 case 'c':
2442 {
2443 if (LocaleNCompare(expression,"ceil",4) == 0)
2444 {
2445 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2446 exception);
cristya19f1d72012-08-07 18:24:38 +00002447 return((double) ceil((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002448 }
2449 if (LocaleNCompare(expression,"cosh",4) == 0)
2450 {
2451 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2452 exception);
cristya19f1d72012-08-07 18:24:38 +00002453 return((double) cosh((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002454 }
2455 if (LocaleNCompare(expression,"cos",3) == 0)
2456 {
2457 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2458 exception);
cristya19f1d72012-08-07 18:24:38 +00002459 return((double) cos((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002460 }
2461 if (LocaleCompare(expression,"c") == 0)
2462 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2463 break;
2464 }
2465 case 'D':
2466 case 'd':
2467 {
2468 if (LocaleNCompare(expression,"debug",5) == 0)
2469 {
2470 const char
2471 *type;
2472
2473 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2474 exception);
2475 if (fx_info->images->colorspace == CMYKColorspace)
2476 switch (channel)
2477 {
cristy0568ffc2011-07-25 16:54:14 +00002478 case CyanPixelChannel: type="cyan"; break;
2479 case MagentaPixelChannel: type="magenta"; break;
2480 case YellowPixelChannel: type="yellow"; break;
2481 case AlphaPixelChannel: type="opacity"; break;
2482 case BlackPixelChannel: type="black"; break;
cristy3ed852e2009-09-05 21:47:34 +00002483 default: type="unknown"; break;
2484 }
2485 else
2486 switch (channel)
2487 {
cristy0568ffc2011-07-25 16:54:14 +00002488 case RedPixelChannel: type="red"; break;
2489 case GreenPixelChannel: type="green"; break;
2490 case BluePixelChannel: type="blue"; break;
2491 case AlphaPixelChannel: type="opacity"; break;
cristy3ed852e2009-09-05 21:47:34 +00002492 default: type="unknown"; break;
2493 }
2494 (void) CopyMagickString(subexpression,expression+6,MaxTextExtent);
2495 if (strlen(subexpression) > 1)
2496 subexpression[strlen(subexpression)-1]='\0';
2497 if (fx_info->file != (FILE *) NULL)
cristy1707c6c2012-01-18 23:30:54 +00002498 (void) FormatLocaleFile(fx_info->file,"%s[%.20g,%.20g].%s: "
2499 "%s=%.*g\n",fx_info->images->filename,(double) x,(double) y,type,
2500 subexpression,GetMagickPrecision(),(double) alpha);
cristy3ed852e2009-09-05 21:47:34 +00002501 return(0.0);
2502 }
cristy5597a8d2011-11-04 00:25:32 +00002503 if (LocaleNCompare(expression,"drc",3) == 0)
2504 {
2505 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2506 exception);
cristya19f1d72012-08-07 18:24:38 +00002507 return((double) (alpha/(*beta*(alpha-1.0)+1.0)));
cristy5597a8d2011-11-04 00:25:32 +00002508 }
cristy3ed852e2009-09-05 21:47:34 +00002509 break;
2510 }
2511 case 'E':
2512 case 'e':
2513 {
2514 if (LocaleCompare(expression,"epsilon") == 0)
cristya19f1d72012-08-07 18:24:38 +00002515 return((double) MagickEpsilon);
cristy3ed852e2009-09-05 21:47:34 +00002516 if (LocaleNCompare(expression,"exp",3) == 0)
2517 {
2518 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2519 exception);
cristya19f1d72012-08-07 18:24:38 +00002520 return((double) exp((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002521 }
2522 if (LocaleCompare(expression,"e") == 0)
cristya19f1d72012-08-07 18:24:38 +00002523 return((double) 2.7182818284590452354);
cristy3ed852e2009-09-05 21:47:34 +00002524 break;
2525 }
2526 case 'F':
2527 case 'f':
2528 {
2529 if (LocaleNCompare(expression,"floor",5) == 0)
2530 {
2531 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2532 exception);
cristya19f1d72012-08-07 18:24:38 +00002533 return((double) floor((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002534 }
2535 break;
2536 }
2537 case 'G':
2538 case 'g':
2539 {
cristy9eeedea2011-11-02 19:04:05 +00002540 if (LocaleNCompare(expression,"gauss",5) == 0)
2541 {
2542 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2543 exception);
2544 gamma=exp((double) (-alpha*alpha/2.0))/sqrt(2.0*MagickPI);
cristya19f1d72012-08-07 18:24:38 +00002545 return((double) gamma);
cristy9eeedea2011-11-02 19:04:05 +00002546 }
cristyb0aad4c2011-11-02 19:30:35 +00002547 if (LocaleNCompare(expression,"gcd",3) == 0)
2548 {
2549 MagickOffsetType
2550 gcd;
2551
2552 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2553 exception);
cristy1707c6c2012-01-18 23:30:54 +00002554 gcd=FxGCD((MagickOffsetType) (alpha+0.5),(MagickOffsetType) (*beta+
2555 0.5));
cristya19f1d72012-08-07 18:24:38 +00002556 return((double) gcd);
cristyb0aad4c2011-11-02 19:30:35 +00002557 }
cristy3ed852e2009-09-05 21:47:34 +00002558 if (LocaleCompare(expression,"g") == 0)
2559 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2560 break;
2561 }
2562 case 'H':
2563 case 'h':
2564 {
2565 if (LocaleCompare(expression,"h") == 0)
2566 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2567 if (LocaleCompare(expression,"hue") == 0)
2568 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2569 if (LocaleNCompare(expression,"hypot",5) == 0)
2570 {
2571 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2572 exception);
cristya19f1d72012-08-07 18:24:38 +00002573 return((double) hypot((double) alpha,(double) *beta));
cristy3ed852e2009-09-05 21:47:34 +00002574 }
2575 break;
2576 }
2577 case 'K':
2578 case 'k':
2579 {
2580 if (LocaleCompare(expression,"k") == 0)
2581 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2582 break;
2583 }
2584 case 'I':
2585 case 'i':
2586 {
2587 if (LocaleCompare(expression,"intensity") == 0)
2588 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2589 if (LocaleNCompare(expression,"int",3) == 0)
2590 {
2591 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2592 exception);
cristya19f1d72012-08-07 18:24:38 +00002593 return((double) floor(alpha));
cristy3ed852e2009-09-05 21:47:34 +00002594 }
cristy82b20722011-11-05 21:52:36 +00002595#if defined(MAGICKCORE_HAVE_ISNAN)
cristy639399c2011-11-02 19:16:15 +00002596 if (LocaleNCompare(expression,"isnan",5) == 0)
2597 {
2598 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2599 exception);
cristya19f1d72012-08-07 18:24:38 +00002600 return((double) !!isnan((double) alpha));
cristy639399c2011-11-02 19:16:15 +00002601 }
cristy82b20722011-11-05 21:52:36 +00002602#endif
cristy3ed852e2009-09-05 21:47:34 +00002603 if (LocaleCompare(expression,"i") == 0)
2604 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2605 break;
2606 }
2607 case 'J':
2608 case 'j':
2609 {
2610 if (LocaleCompare(expression,"j") == 0)
2611 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
cristy161b9262010-03-20 19:34:32 +00002612#if defined(MAGICKCORE_HAVE_J0)
cristyee56cf12010-03-01 22:17:06 +00002613 if (LocaleNCompare(expression,"j0",2) == 0)
2614 {
2615 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+2,beta,
2616 exception);
cristya19f1d72012-08-07 18:24:38 +00002617 return((double) j0((double) alpha));
cristyee56cf12010-03-01 22:17:06 +00002618 }
cristy161b9262010-03-20 19:34:32 +00002619#endif
2620#if defined(MAGICKCORE_HAVE_J1)
cristyee56cf12010-03-01 22:17:06 +00002621 if (LocaleNCompare(expression,"j1",2) == 0)
2622 {
2623 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+2,beta,
2624 exception);
cristya19f1d72012-08-07 18:24:38 +00002625 return((double) j1((double) alpha));
cristyee56cf12010-03-01 22:17:06 +00002626 }
cristy161b9262010-03-20 19:34:32 +00002627#endif
cristyaa018fa2010-04-08 23:03:54 +00002628#if defined(MAGICKCORE_HAVE_J1)
cristya6a09e72010-03-02 14:51:02 +00002629 if (LocaleNCompare(expression,"jinc",4) == 0)
2630 {
2631 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2632 exception);
cristy0946a822010-03-12 17:14:58 +00002633 if (alpha == 0.0)
2634 return(1.0);
cristyc90d70d2012-11-03 23:53:13 +00002635 gamma=(double) (2.0*j1((double) (MagickPI*alpha))/(MagickPI*alpha));
cristyfce2f7b2010-03-12 00:29:49 +00002636 return(gamma);
cristya6a09e72010-03-02 14:51:02 +00002637 }
cristyaa018fa2010-04-08 23:03:54 +00002638#endif
cristy3ed852e2009-09-05 21:47:34 +00002639 break;
2640 }
2641 case 'L':
2642 case 'l':
2643 {
2644 if (LocaleNCompare(expression,"ln",2) == 0)
2645 {
2646 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+2,beta,
2647 exception);
cristya19f1d72012-08-07 18:24:38 +00002648 return((double) log((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002649 }
cristyc8ed5322010-08-31 12:07:59 +00002650 if (LocaleNCompare(expression,"logtwo",6) == 0)
cristy3ed852e2009-09-05 21:47:34 +00002651 {
cristyc8ed5322010-08-31 12:07:59 +00002652 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+6,beta,
cristy3ed852e2009-09-05 21:47:34 +00002653 exception);
cristya19f1d72012-08-07 18:24:38 +00002654 return((double) log10((double) alpha))/log10(2.0);
cristy3ed852e2009-09-05 21:47:34 +00002655 }
2656 if (LocaleNCompare(expression,"log",3) == 0)
2657 {
2658 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2659 exception);
cristya19f1d72012-08-07 18:24:38 +00002660 return((double) log10((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002661 }
2662 if (LocaleCompare(expression,"lightness") == 0)
2663 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2664 break;
2665 }
2666 case 'M':
2667 case 'm':
2668 {
2669 if (LocaleCompare(expression,"MaxRGB") == 0)
cristya19f1d72012-08-07 18:24:38 +00002670 return((double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +00002671 if (LocaleNCompare(expression,"maxima",6) == 0)
2672 break;
2673 if (LocaleNCompare(expression,"max",3) == 0)
cristy984049c2011-11-03 18:34:58 +00002674 {
2675 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2676 exception);
2677 return(alpha > *beta ? alpha : *beta);
2678 }
cristy3ed852e2009-09-05 21:47:34 +00002679 if (LocaleNCompare(expression,"minima",6) == 0)
2680 break;
2681 if (LocaleNCompare(expression,"min",3) == 0)
cristy984049c2011-11-03 18:34:58 +00002682 {
2683 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2684 exception);
2685 return(alpha < *beta ? alpha : *beta);
2686 }
cristy3ed852e2009-09-05 21:47:34 +00002687 if (LocaleNCompare(expression,"mod",3) == 0)
2688 {
2689 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2690 exception);
cristy984049c2011-11-03 18:34:58 +00002691 gamma=alpha-floor((double) (alpha/(*beta)))*(*beta);
2692 return(gamma);
cristy3ed852e2009-09-05 21:47:34 +00002693 }
2694 if (LocaleCompare(expression,"m") == 0)
2695 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2696 break;
2697 }
2698 case 'N':
2699 case 'n':
2700 {
cristyad3502e2011-11-02 19:10:45 +00002701 if (LocaleNCompare(expression,"not",3) == 0)
2702 {
2703 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2704 exception);
cristya19f1d72012-08-07 18:24:38 +00002705 return((double) (alpha < MagickEpsilon));
cristyad3502e2011-11-02 19:10:45 +00002706 }
cristy3ed852e2009-09-05 21:47:34 +00002707 if (LocaleCompare(expression,"n") == 0)
2708 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2709 break;
2710 }
2711 case 'O':
2712 case 'o':
2713 {
2714 if (LocaleCompare(expression,"Opaque") == 0)
2715 return(1.0);
2716 if (LocaleCompare(expression,"o") == 0)
2717 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2718 break;
2719 }
2720 case 'P':
2721 case 'p':
2722 {
cristy670aa3c2011-11-03 00:54:00 +00002723 if (LocaleCompare(expression,"phi") == 0)
cristya19f1d72012-08-07 18:24:38 +00002724 return((double) MagickPHI);
cristy3ed852e2009-09-05 21:47:34 +00002725 if (LocaleCompare(expression,"pi") == 0)
cristya19f1d72012-08-07 18:24:38 +00002726 return((double) MagickPI);
cristy3ed852e2009-09-05 21:47:34 +00002727 if (LocaleNCompare(expression,"pow",3) == 0)
2728 {
2729 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2730 exception);
cristya19f1d72012-08-07 18:24:38 +00002731 return((double) pow((double) alpha,(double) *beta));
cristy3ed852e2009-09-05 21:47:34 +00002732 }
2733 if (LocaleCompare(expression,"p") == 0)
2734 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2735 break;
2736 }
2737 case 'Q':
2738 case 'q':
2739 {
2740 if (LocaleCompare(expression,"QuantumRange") == 0)
cristya19f1d72012-08-07 18:24:38 +00002741 return((double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +00002742 if (LocaleCompare(expression,"QuantumScale") == 0)
cristya19f1d72012-08-07 18:24:38 +00002743 return((double) QuantumScale);
cristy3ed852e2009-09-05 21:47:34 +00002744 break;
2745 }
2746 case 'R':
2747 case 'r':
2748 {
2749 if (LocaleNCompare(expression,"rand",4) == 0)
cristya19f1d72012-08-07 18:24:38 +00002750 return((double) GetPseudoRandomValue(fx_info->random_info));
cristy3ed852e2009-09-05 21:47:34 +00002751 if (LocaleNCompare(expression,"round",5) == 0)
2752 {
2753 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2754 exception);
cristya19f1d72012-08-07 18:24:38 +00002755 return((double) floor((double) alpha+0.5));
cristy3ed852e2009-09-05 21:47:34 +00002756 }
2757 if (LocaleCompare(expression,"r") == 0)
2758 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2759 break;
2760 }
2761 case 'S':
2762 case 's':
2763 {
2764 if (LocaleCompare(expression,"saturation") == 0)
2765 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2766 if (LocaleNCompare(expression,"sign",4) == 0)
2767 {
2768 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2769 exception);
2770 return(alpha < 0.0 ? -1.0 : 1.0);
2771 }
cristya6a09e72010-03-02 14:51:02 +00002772 if (LocaleNCompare(expression,"sinc",4) == 0)
2773 {
2774 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2775 exception);
2776 if (alpha == 0)
2777 return(1.0);
cristya19f1d72012-08-07 18:24:38 +00002778 gamma=(double) (sin((double) (MagickPI*alpha))/
cristya6a09e72010-03-02 14:51:02 +00002779 (MagickPI*alpha));
2780 return(gamma);
2781 }
cristy3ed852e2009-09-05 21:47:34 +00002782 if (LocaleNCompare(expression,"sinh",4) == 0)
2783 {
2784 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2785 exception);
cristya19f1d72012-08-07 18:24:38 +00002786 return((double) sinh((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002787 }
2788 if (LocaleNCompare(expression,"sin",3) == 0)
2789 {
2790 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2791 exception);
cristya19f1d72012-08-07 18:24:38 +00002792 return((double) sin((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002793 }
2794 if (LocaleNCompare(expression,"sqrt",4) == 0)
2795 {
2796 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2797 exception);
cristya19f1d72012-08-07 18:24:38 +00002798 return((double) sqrt((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002799 }
cristy9eeedea2011-11-02 19:04:05 +00002800 if (LocaleNCompare(expression,"squish",6) == 0)
2801 {
2802 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+6,beta,
2803 exception);
cristya19f1d72012-08-07 18:24:38 +00002804 return((double) (1.0/(1.0+exp((double) (-alpha)))));
cristy9eeedea2011-11-02 19:04:05 +00002805 }
cristy3ed852e2009-09-05 21:47:34 +00002806 if (LocaleCompare(expression,"s") == 0)
2807 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2808 break;
2809 }
2810 case 'T':
2811 case 't':
2812 {
2813 if (LocaleNCompare(expression,"tanh",4) == 0)
2814 {
2815 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+4,beta,
2816 exception);
cristya19f1d72012-08-07 18:24:38 +00002817 return((double) tanh((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002818 }
2819 if (LocaleNCompare(expression,"tan",3) == 0)
2820 {
2821 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+3,beta,
2822 exception);
cristya19f1d72012-08-07 18:24:38 +00002823 return((double) tan((double) alpha));
cristy3ed852e2009-09-05 21:47:34 +00002824 }
2825 if (LocaleCompare(expression,"Transparent") == 0)
2826 return(0.0);
cristy16788e42010-08-13 13:44:26 +00002827 if (LocaleNCompare(expression,"trunc",5) == 0)
2828 {
2829 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2830 exception);
2831 if (alpha >= 0.0)
cristya19f1d72012-08-07 18:24:38 +00002832 return((double) floor((double) alpha));
2833 return((double) ceil((double) alpha));
cristy16788e42010-08-13 13:44:26 +00002834 }
cristy3ed852e2009-09-05 21:47:34 +00002835 if (LocaleCompare(expression,"t") == 0)
2836 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2837 break;
2838 }
2839 case 'U':
2840 case 'u':
2841 {
2842 if (LocaleCompare(expression,"u") == 0)
2843 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2844 break;
2845 }
2846 case 'V':
2847 case 'v':
2848 {
2849 if (LocaleCompare(expression,"v") == 0)
2850 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2851 break;
2852 }
2853 case 'W':
2854 case 'w':
2855 {
cristy9eeedea2011-11-02 19:04:05 +00002856 if (LocaleNCompare(expression,"while",5) == 0)
2857 {
2858 do
2859 {
2860 alpha=FxEvaluateSubexpression(fx_info,channel,x,y,expression+5,beta,
2861 exception);
2862 } while (fabs((double) alpha) >= MagickEpsilon);
cristya19f1d72012-08-07 18:24:38 +00002863 return((double) *beta);
cristy9eeedea2011-11-02 19:04:05 +00002864 }
cristy3ed852e2009-09-05 21:47:34 +00002865 if (LocaleCompare(expression,"w") == 0)
2866 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2867 break;
2868 }
2869 case 'Y':
2870 case 'y':
2871 {
2872 if (LocaleCompare(expression,"y") == 0)
2873 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2874 break;
2875 }
2876 case 'Z':
2877 case 'z':
2878 {
2879 if (LocaleCompare(expression,"z") == 0)
2880 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2881 break;
2882 }
2883 default:
2884 break;
2885 }
2886 q=(char *) expression;
cristydbdd0e32011-11-04 23:29:40 +00002887 alpha=InterpretSiPrefixValue(expression,&q);
cristy3ed852e2009-09-05 21:47:34 +00002888 if (q == expression)
2889 return(FxGetSymbol(fx_info,channel,x,y,expression,exception));
2890 return(alpha);
2891}
2892
cristy7832dc22011-09-05 01:21:53 +00002893MagickPrivate MagickBooleanType FxEvaluateExpression(FxInfo *fx_info,
cristya19f1d72012-08-07 18:24:38 +00002894 double *alpha,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002895{
2896 MagickBooleanType
2897 status;
2898
cristy541ae572011-08-05 19:08:59 +00002899 status=FxEvaluateChannelExpression(fx_info,GrayPixelChannel,0,0,alpha,
2900 exception);
cristy3ed852e2009-09-05 21:47:34 +00002901 return(status);
2902}
2903
2904MagickExport MagickBooleanType FxPreprocessExpression(FxInfo *fx_info,
cristya19f1d72012-08-07 18:24:38 +00002905 double *alpha,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002906{
2907 FILE
2908 *file;
2909
2910 MagickBooleanType
2911 status;
2912
2913 file=fx_info->file;
2914 fx_info->file=(FILE *) NULL;
cristy541ae572011-08-05 19:08:59 +00002915 status=FxEvaluateChannelExpression(fx_info,GrayPixelChannel,0,0,alpha,
2916 exception);
cristy3ed852e2009-09-05 21:47:34 +00002917 fx_info->file=file;
2918 return(status);
2919}
2920
cristy7832dc22011-09-05 01:21:53 +00002921MagickPrivate MagickBooleanType FxEvaluateChannelExpression(FxInfo *fx_info,
cristy0568ffc2011-07-25 16:54:14 +00002922 const PixelChannel channel,const ssize_t x,const ssize_t y,
cristya19f1d72012-08-07 18:24:38 +00002923 double *alpha,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002924{
cristya19f1d72012-08-07 18:24:38 +00002925 double
cristy3ed852e2009-09-05 21:47:34 +00002926 beta;
2927
2928 beta=0.0;
2929 *alpha=FxEvaluateSubexpression(fx_info,channel,x,y,fx_info->expression,&beta,
2930 exception);
2931 return(exception->severity == OptionError ? MagickFalse : MagickTrue);
2932}
2933
2934/*
2935%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2936% %
2937% %
2938% %
2939% F x I m a g e %
2940% %
2941% %
2942% %
2943%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2944%
2945% FxImage() applies a mathematical expression to the specified image.
2946%
2947% The format of the FxImage method is:
2948%
2949% Image *FxImage(const Image *image,const char *expression,
2950% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00002951%
2952% A description of each parameter follows:
2953%
2954% o image: the image.
2955%
cristy3ed852e2009-09-05 21:47:34 +00002956% o expression: A mathematical expression.
2957%
2958% o exception: return any errors or warnings in this structure.
2959%
2960*/
2961
2962static FxInfo **DestroyFxThreadSet(FxInfo **fx_info)
2963{
cristybb503372010-05-27 20:51:26 +00002964 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002965 i;
2966
2967 assert(fx_info != (FxInfo **) NULL);
cristyac245f82012-05-05 17:13:57 +00002968 for (i=0; i < (ssize_t) GetMagickResourceLimit(ThreadResource); i++)
cristy3ed852e2009-09-05 21:47:34 +00002969 if (fx_info[i] != (FxInfo *) NULL)
2970 fx_info[i]=DestroyFxInfo(fx_info[i]);
cristyb41ee102010-10-04 16:46:15 +00002971 fx_info=(FxInfo **) RelinquishMagickMemory(fx_info);
cristy3ed852e2009-09-05 21:47:34 +00002972 return(fx_info);
2973}
2974
2975static FxInfo **AcquireFxThreadSet(const Image *image,const char *expression,
2976 ExceptionInfo *exception)
2977{
2978 char
2979 *fx_expression;
2980
2981 FxInfo
2982 **fx_info;
2983
cristya19f1d72012-08-07 18:24:38 +00002984 double
cristy3ed852e2009-09-05 21:47:34 +00002985 alpha;
2986
cristybb503372010-05-27 20:51:26 +00002987 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002988 i;
2989
cristybb503372010-05-27 20:51:26 +00002990 size_t
cristy3ed852e2009-09-05 21:47:34 +00002991 number_threads;
2992
cristy9357bdd2012-07-30 12:28:34 +00002993 number_threads=(size_t) GetMagickResourceLimit(ThreadResource);
cristyb41ee102010-10-04 16:46:15 +00002994 fx_info=(FxInfo **) AcquireQuantumMemory(number_threads,sizeof(*fx_info));
cristy3ed852e2009-09-05 21:47:34 +00002995 if (fx_info == (FxInfo **) NULL)
cristy65d161b2012-10-07 20:39:52 +00002996 {
2997 (void) ThrowMagickException(exception,GetMagickModule(),
2998 ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename);
2999 return((FxInfo **) NULL);
3000 }
cristy3ed852e2009-09-05 21:47:34 +00003001 (void) ResetMagickMemory(fx_info,0,number_threads*sizeof(*fx_info));
3002 if (*expression != '@')
3003 fx_expression=ConstantString(expression);
3004 else
3005 fx_expression=FileToString(expression+1,~0,exception);
cristybb503372010-05-27 20:51:26 +00003006 for (i=0; i < (ssize_t) number_threads; i++)
cristy3ed852e2009-09-05 21:47:34 +00003007 {
cristy65d161b2012-10-07 20:39:52 +00003008 MagickBooleanType
3009 status;
3010
cristydb070952012-04-20 14:33:00 +00003011 fx_info[i]=AcquireFxInfo(image,fx_expression,exception);
cristy3ed852e2009-09-05 21:47:34 +00003012 if (fx_info[i] == (FxInfo *) NULL)
cristy65d161b2012-10-07 20:39:52 +00003013 break;
3014 status=FxPreprocessExpression(fx_info[i],&alpha,exception);
3015 if (status == MagickFalse)
3016 break;
cristy3ed852e2009-09-05 21:47:34 +00003017 }
3018 fx_expression=DestroyString(fx_expression);
cristy65d161b2012-10-07 20:39:52 +00003019 if (i < (ssize_t) number_threads)
3020 fx_info=DestroyFxThreadSet(fx_info);
cristy3ed852e2009-09-05 21:47:34 +00003021 return(fx_info);
3022}
3023
3024MagickExport Image *FxImage(const Image *image,const char *expression,
3025 ExceptionInfo *exception)
3026{
cristy3ed852e2009-09-05 21:47:34 +00003027#define FxImageTag "Fx/Image"
3028
cristyfa112112010-01-04 17:48:07 +00003029 CacheView
cristy79cedc72011-07-25 00:41:15 +00003030 *fx_view,
3031 *image_view;
cristyfa112112010-01-04 17:48:07 +00003032
cristy3ed852e2009-09-05 21:47:34 +00003033 FxInfo
cristyfa112112010-01-04 17:48:07 +00003034 **restrict fx_info;
cristy3ed852e2009-09-05 21:47:34 +00003035
3036 Image
3037 *fx_image;
3038
cristy3ed852e2009-09-05 21:47:34 +00003039 MagickBooleanType
3040 status;
3041
cristybb503372010-05-27 20:51:26 +00003042 MagickOffsetType
3043 progress;
3044
cristybb503372010-05-27 20:51:26 +00003045 ssize_t
3046 y;
3047
cristy3ed852e2009-09-05 21:47:34 +00003048 assert(image != (Image *) NULL);
3049 assert(image->signature == MagickSignature);
3050 if (image->debug != MagickFalse)
3051 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3ed852e2009-09-05 21:47:34 +00003052 fx_info=AcquireFxThreadSet(image,expression,exception);
3053 if (fx_info == (FxInfo **) NULL)
cristy65d161b2012-10-07 20:39:52 +00003054 return((Image *) NULL);
3055 fx_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
3056 if (fx_image == (Image *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003057 {
cristy3ed852e2009-09-05 21:47:34 +00003058 fx_info=DestroyFxThreadSet(fx_info);
3059 return((Image *) NULL);
3060 }
cristy65d161b2012-10-07 20:39:52 +00003061 if (SetImageStorageClass(fx_image,DirectClass,exception) == MagickFalse)
3062 {
3063 fx_info=DestroyFxThreadSet(fx_info);
3064 fx_image=DestroyImage(fx_image);
3065 return((Image *) NULL);
3066 }
cristy3ed852e2009-09-05 21:47:34 +00003067 /*
3068 Fx image.
3069 */
3070 status=MagickTrue;
3071 progress=0;
cristy4bc52022012-12-13 14:15:41 +00003072 image_view=AcquireVirtualCacheView(image);
3073 fx_view=AcquireAuthenticCacheView(fx_image);
cristyb5d5f722009-11-04 03:03:49 +00003074#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00003075 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00003076 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00003077#endif
cristybb503372010-05-27 20:51:26 +00003078 for (y=0; y < (ssize_t) fx_image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00003079 {
cristy5c9e6f22010-09-17 17:31:01 +00003080 const int
3081 id = GetOpenMPThreadId();
cristy6ebe97c2010-07-03 01:17:28 +00003082
cristy79cedc72011-07-25 00:41:15 +00003083 register const Quantum
3084 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00003085
cristy4c08aed2011-07-01 19:47:50 +00003086 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003087 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003088
cristy79cedc72011-07-25 00:41:15 +00003089 register ssize_t
3090 x;
3091
cristy3ed852e2009-09-05 21:47:34 +00003092 if (status == MagickFalse)
3093 continue;
cristy79cedc72011-07-25 00:41:15 +00003094 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristya6d7a9b2012-01-18 20:04:48 +00003095 q=QueueCacheViewAuthenticPixels(fx_view,0,y,fx_image->columns,1,exception);
cristy79cedc72011-07-25 00:41:15 +00003096 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003097 {
3098 status=MagickFalse;
3099 continue;
3100 }
cristybb503372010-05-27 20:51:26 +00003101 for (x=0; x < (ssize_t) fx_image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00003102 {
cristy79cedc72011-07-25 00:41:15 +00003103 register ssize_t
3104 i;
3105
3106 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3107 {
cristya19f1d72012-08-07 18:24:38 +00003108 double
cristy79cedc72011-07-25 00:41:15 +00003109 alpha;
3110
3111 PixelChannel
3112 channel;
3113
3114 PixelTrait
3115 fx_traits,
3116 traits;
3117
cristycf1296e2012-08-26 23:40:49 +00003118 channel=GetPixelChannelChannel(image,i);
3119 traits=GetPixelChannelTraits(image,channel);
3120 fx_traits=GetPixelChannelTraits(fx_image,channel);
cristy010d7d12011-08-31 01:02:48 +00003121 if ((traits == UndefinedPixelTrait) ||
3122 (fx_traits == UndefinedPixelTrait))
cristy79cedc72011-07-25 00:41:15 +00003123 continue;
cristy1eced092012-08-10 23:10:56 +00003124 if (((fx_traits & CopyPixelTrait) != 0) ||
3125 (GetPixelMask(image,p) != 0))
cristy79cedc72011-07-25 00:41:15 +00003126 {
cristy0beccfa2011-09-25 20:47:53 +00003127 SetPixelChannel(fx_image,channel,p[i],q);
cristy79cedc72011-07-25 00:41:15 +00003128 continue;
3129 }
3130 alpha=0.0;
cristya382aca2011-12-06 18:22:48 +00003131 (void) FxEvaluateChannelExpression(fx_info[id],channel,x,y,&alpha,
3132 exception);
cristy8cd03c32012-07-07 18:57:59 +00003133 q[i]=ClampToQuantum(QuantumRange*alpha);
cristy79cedc72011-07-25 00:41:15 +00003134 }
3135 p+=GetPixelChannels(image);
cristyed231572011-07-14 02:18:59 +00003136 q+=GetPixelChannels(fx_image);
cristy3ed852e2009-09-05 21:47:34 +00003137 }
3138 if (SyncCacheViewAuthenticPixels(fx_view,exception) == MagickFalse)
3139 status=MagickFalse;
3140 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3141 {
3142 MagickBooleanType
3143 proceed;
3144
cristyb5d5f722009-11-04 03:03:49 +00003145#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00003146 #pragma omp critical (MagickCore_FxImage)
cristy3ed852e2009-09-05 21:47:34 +00003147#endif
3148 proceed=SetImageProgress(image,FxImageTag,progress++,image->rows);
3149 if (proceed == MagickFalse)
3150 status=MagickFalse;
3151 }
3152 }
cristy3ed852e2009-09-05 21:47:34 +00003153 fx_view=DestroyCacheView(fx_view);
cristy79cedc72011-07-25 00:41:15 +00003154 image_view=DestroyCacheView(image_view);
cristy3ed852e2009-09-05 21:47:34 +00003155 fx_info=DestroyFxThreadSet(fx_info);
3156 if (status == MagickFalse)
3157 fx_image=DestroyImage(fx_image);
3158 return(fx_image);
3159}
3160
3161/*
3162%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3163% %
3164% %
3165% %
3166% I m p l o d e I m a g e %
3167% %
3168% %
3169% %
3170%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3171%
3172% ImplodeImage() creates a new image that is a copy of an existing
3173% one with the image pixels "implode" by the specified percentage. It
3174% allocates the memory necessary for the new Image structure and returns a
3175% pointer to the new image.
3176%
3177% The format of the ImplodeImage method is:
3178%
3179% Image *ImplodeImage(const Image *image,const double amount,
cristy76f512e2011-09-12 01:26:56 +00003180% const PixelInterpolateMethod method,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003181%
3182% A description of each parameter follows:
3183%
3184% o implode_image: Method ImplodeImage returns a pointer to the image
3185% after it is implode. A null image is returned if there is a memory
3186% shortage.
3187%
3188% o image: the image.
3189%
3190% o amount: Define the extent of the implosion.
3191%
cristy76f512e2011-09-12 01:26:56 +00003192% o method: the pixel interpolation method.
3193%
cristy3ed852e2009-09-05 21:47:34 +00003194% o exception: return any errors or warnings in this structure.
3195%
3196*/
3197MagickExport Image *ImplodeImage(const Image *image,const double amount,
cristy76f512e2011-09-12 01:26:56 +00003198 const PixelInterpolateMethod method,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003199{
3200#define ImplodeImageTag "Implode/Image"
3201
cristyfa112112010-01-04 17:48:07 +00003202 CacheView
3203 *image_view,
3204 *implode_view;
3205
cristy3ed852e2009-09-05 21:47:34 +00003206 Image
3207 *implode_image;
3208
cristy3ed852e2009-09-05 21:47:34 +00003209 MagickBooleanType
3210 status;
3211
cristybb503372010-05-27 20:51:26 +00003212 MagickOffsetType
3213 progress;
3214
cristya19f1d72012-08-07 18:24:38 +00003215 double
cristy3ed852e2009-09-05 21:47:34 +00003216 radius;
3217
3218 PointInfo
3219 center,
3220 scale;
3221
cristybb503372010-05-27 20:51:26 +00003222 ssize_t
3223 y;
3224
cristy3ed852e2009-09-05 21:47:34 +00003225 /*
3226 Initialize implode image attributes.
3227 */
3228 assert(image != (Image *) NULL);
3229 assert(image->signature == MagickSignature);
3230 if (image->debug != MagickFalse)
3231 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3232 assert(exception != (ExceptionInfo *) NULL);
3233 assert(exception->signature == MagickSignature);
cristy76f512e2011-09-12 01:26:56 +00003234 implode_image=CloneImage(image,image->columns,image->rows,MagickTrue,
3235 exception);
cristy3ed852e2009-09-05 21:47:34 +00003236 if (implode_image == (Image *) NULL)
3237 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00003238 if (SetImageStorageClass(implode_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00003239 {
cristy3ed852e2009-09-05 21:47:34 +00003240 implode_image=DestroyImage(implode_image);
3241 return((Image *) NULL);
3242 }
cristy4c08aed2011-07-01 19:47:50 +00003243 if (implode_image->background_color.alpha != OpaqueAlpha)
cristy8a46d822012-08-28 23:32:39 +00003244 implode_image->alpha_trait=BlendPixelTrait;
cristy3ed852e2009-09-05 21:47:34 +00003245 /*
3246 Compute scaling factor.
3247 */
3248 scale.x=1.0;
3249 scale.y=1.0;
3250 center.x=0.5*image->columns;
3251 center.y=0.5*image->rows;
3252 radius=center.x;
3253 if (image->columns > image->rows)
3254 scale.y=(double) image->columns/(double) image->rows;
3255 else
3256 if (image->columns < image->rows)
3257 {
3258 scale.x=(double) image->rows/(double) image->columns;
3259 radius=center.y;
3260 }
3261 /*
3262 Implode image.
3263 */
3264 status=MagickTrue;
3265 progress=0;
cristy4bc52022012-12-13 14:15:41 +00003266 image_view=AcquireVirtualCacheView(image);
3267 implode_view=AcquireAuthenticCacheView(implode_image);
cristyb5d5f722009-11-04 03:03:49 +00003268#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00003269 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00003270 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00003271#endif
cristybb503372010-05-27 20:51:26 +00003272 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00003273 {
cristya19f1d72012-08-07 18:24:38 +00003274 double
cristy3ed852e2009-09-05 21:47:34 +00003275 distance;
3276
3277 PointInfo
3278 delta;
3279
cristy6d188022011-09-12 13:23:33 +00003280 register const Quantum
3281 *restrict p;
3282
cristybb503372010-05-27 20:51:26 +00003283 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003284 x;
3285
cristy4c08aed2011-07-01 19:47:50 +00003286 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003287 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003288
3289 if (status == MagickFalse)
3290 continue;
cristy6d188022011-09-12 13:23:33 +00003291 p=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristya6d7a9b2012-01-18 20:04:48 +00003292 q=QueueCacheViewAuthenticPixels(implode_view,0,y,implode_image->columns,1,
cristy3ed852e2009-09-05 21:47:34 +00003293 exception);
cristy6d188022011-09-12 13:23:33 +00003294 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003295 {
3296 status=MagickFalse;
3297 continue;
3298 }
cristy3ed852e2009-09-05 21:47:34 +00003299 delta.y=scale.y*(double) (y-center.y);
cristybb503372010-05-27 20:51:26 +00003300 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00003301 {
cristy6d188022011-09-12 13:23:33 +00003302 register ssize_t
3303 i;
3304
cristy3ed852e2009-09-05 21:47:34 +00003305 /*
3306 Determine if the pixel is within an ellipse.
3307 */
cristy10a6c612012-01-29 21:41:05 +00003308 if (GetPixelMask(image,p) != 0)
3309 {
3310 p+=GetPixelChannels(image);
3311 q+=GetPixelChannels(implode_image);
3312 continue;
3313 }
cristy3ed852e2009-09-05 21:47:34 +00003314 delta.x=scale.x*(double) (x-center.x);
3315 distance=delta.x*delta.x+delta.y*delta.y;
cristy6d188022011-09-12 13:23:33 +00003316 if (distance >= (radius*radius))
cristya6d7a9b2012-01-18 20:04:48 +00003317 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
cristy6d188022011-09-12 13:23:33 +00003318 {
cristya6d7a9b2012-01-18 20:04:48 +00003319 PixelChannel
3320 channel;
3321
cristy1707c6c2012-01-18 23:30:54 +00003322 PixelTrait
3323 implode_traits,
3324 traits;
3325
cristycf1296e2012-08-26 23:40:49 +00003326 channel=GetPixelChannelChannel(image,i);
3327 traits=GetPixelChannelTraits(image,channel);
3328 implode_traits=GetPixelChannelTraits(implode_image,channel);
cristy1707c6c2012-01-18 23:30:54 +00003329 if ((traits == UndefinedPixelTrait) ||
3330 (implode_traits == UndefinedPixelTrait))
3331 continue;
cristya6d7a9b2012-01-18 20:04:48 +00003332 SetPixelChannel(implode_image,channel,p[i],q);
cristy6d188022011-09-12 13:23:33 +00003333 }
3334 else
cristy3ed852e2009-09-05 21:47:34 +00003335 {
3336 double
3337 factor;
3338
3339 /*
3340 Implode the pixel.
3341 */
3342 factor=1.0;
3343 if (distance > 0.0)
cristy1707c6c2012-01-18 23:30:54 +00003344 factor=pow(sin((double) (MagickPI*sqrt((double) distance)/radius/
3345 2)),-amount);
cristy76f512e2011-09-12 01:26:56 +00003346 status=InterpolatePixelChannels(image,image_view,implode_image,method,
3347 (double) (factor*delta.x/scale.x+center.x),(double) (factor*delta.y/
3348 scale.y+center.y),q,exception);
cristy3ed852e2009-09-05 21:47:34 +00003349 }
cristy6d188022011-09-12 13:23:33 +00003350 p+=GetPixelChannels(image);
cristyed231572011-07-14 02:18:59 +00003351 q+=GetPixelChannels(implode_image);
cristy3ed852e2009-09-05 21:47:34 +00003352 }
3353 if (SyncCacheViewAuthenticPixels(implode_view,exception) == MagickFalse)
3354 status=MagickFalse;
3355 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3356 {
3357 MagickBooleanType
3358 proceed;
3359
cristyb5d5f722009-11-04 03:03:49 +00003360#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00003361 #pragma omp critical (MagickCore_ImplodeImage)
cristy3ed852e2009-09-05 21:47:34 +00003362#endif
3363 proceed=SetImageProgress(image,ImplodeImageTag,progress++,image->rows);
3364 if (proceed == MagickFalse)
3365 status=MagickFalse;
3366 }
3367 }
3368 implode_view=DestroyCacheView(implode_view);
3369 image_view=DestroyCacheView(image_view);
cristy3ed852e2009-09-05 21:47:34 +00003370 if (status == MagickFalse)
3371 implode_image=DestroyImage(implode_image);
3372 return(implode_image);
3373}
3374
3375/*
3376%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3377% %
3378% %
3379% %
3380% M o r p h I m a g e s %
3381% %
3382% %
3383% %
3384%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3385%
3386% The MorphImages() method requires a minimum of two images. The first
3387% image is transformed into the second by a number of intervening images
3388% as specified by frames.
3389%
3390% The format of the MorphImage method is:
3391%
cristybb503372010-05-27 20:51:26 +00003392% Image *MorphImages(const Image *image,const size_t number_frames,
cristy3ed852e2009-09-05 21:47:34 +00003393% ExceptionInfo *exception)
3394%
3395% A description of each parameter follows:
3396%
3397% o image: the image.
3398%
3399% o number_frames: Define the number of in-between image to generate.
3400% The more in-between frames, the smoother the morph.
3401%
3402% o exception: return any errors or warnings in this structure.
3403%
3404*/
cristy7de7f742012-12-14 00:28:27 +00003405MagickExport Image *MorphImages(const Image *image,const size_t number_frames,
3406 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003407{
3408#define MorphImageTag "Morph/Image"
3409
3410 Image
3411 *morph_image,
3412 *morph_images;
3413
cristy9d314ff2011-03-09 01:30:28 +00003414 MagickBooleanType
3415 status;
cristy3ed852e2009-09-05 21:47:34 +00003416
3417 MagickOffsetType
3418 scene;
3419
cristya19f1d72012-08-07 18:24:38 +00003420 double
cristy3ed852e2009-09-05 21:47:34 +00003421 alpha,
3422 beta;
3423
3424 register const Image
3425 *next;
3426
cristybb503372010-05-27 20:51:26 +00003427 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003428 i;
3429
cristy9d314ff2011-03-09 01:30:28 +00003430 ssize_t
3431 y;
cristy3ed852e2009-09-05 21:47:34 +00003432
3433 /*
3434 Clone first frame in sequence.
3435 */
3436 assert(image != (Image *) NULL);
3437 assert(image->signature == MagickSignature);
3438 if (image->debug != MagickFalse)
3439 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3440 assert(exception != (ExceptionInfo *) NULL);
3441 assert(exception->signature == MagickSignature);
3442 morph_images=CloneImage(image,0,0,MagickTrue,exception);
3443 if (morph_images == (Image *) NULL)
3444 return((Image *) NULL);
3445 if (GetNextImageInList(image) == (Image *) NULL)
3446 {
3447 /*
3448 Morph single image.
3449 */
cristybb503372010-05-27 20:51:26 +00003450 for (i=1; i < (ssize_t) number_frames; i++)
cristy3ed852e2009-09-05 21:47:34 +00003451 {
3452 morph_image=CloneImage(image,0,0,MagickTrue,exception);
3453 if (morph_image == (Image *) NULL)
3454 {
3455 morph_images=DestroyImageList(morph_images);
3456 return((Image *) NULL);
3457 }
3458 AppendImageToList(&morph_images,morph_image);
cristy8b27a6d2010-02-14 03:31:15 +00003459 if (image->progress_monitor != (MagickProgressMonitor) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003460 {
cristy8b27a6d2010-02-14 03:31:15 +00003461 MagickBooleanType
3462 proceed;
3463
cristybb503372010-05-27 20:51:26 +00003464 proceed=SetImageProgress(image,MorphImageTag,(MagickOffsetType) i,
3465 number_frames);
cristy8b27a6d2010-02-14 03:31:15 +00003466 if (proceed == MagickFalse)
3467 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00003468 }
3469 }
3470 return(GetFirstImageInList(morph_images));
3471 }
3472 /*
3473 Morph image sequence.
3474 */
3475 status=MagickTrue;
3476 scene=0;
3477 next=image;
3478 for ( ; GetNextImageInList(next) != (Image *) NULL; next=GetNextImageInList(next))
3479 {
cristybb503372010-05-27 20:51:26 +00003480 for (i=0; i < (ssize_t) number_frames; i++)
cristy3ed852e2009-09-05 21:47:34 +00003481 {
3482 CacheView
3483 *image_view,
3484 *morph_view;
3485
cristya19f1d72012-08-07 18:24:38 +00003486 beta=(double) (i+1.0)/(double) (number_frames+1.0);
cristy3ed852e2009-09-05 21:47:34 +00003487 alpha=1.0-beta;
cristy15b98cd2010-09-12 19:42:50 +00003488 morph_image=ResizeImage(next,(size_t) (alpha*next->columns+beta*
cristyaa2c16c2012-03-25 22:21:35 +00003489 GetNextImageInList(next)->columns+0.5),(size_t) (alpha*next->rows+beta*
3490 GetNextImageInList(next)->rows+0.5),next->filter,exception);
cristy3ed852e2009-09-05 21:47:34 +00003491 if (morph_image == (Image *) NULL)
3492 {
3493 morph_images=DestroyImageList(morph_images);
3494 return((Image *) NULL);
3495 }
cristy1707c6c2012-01-18 23:30:54 +00003496 status=SetImageStorageClass(morph_image,DirectClass,exception);
3497 if (status == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00003498 {
cristy3ed852e2009-09-05 21:47:34 +00003499 morph_image=DestroyImage(morph_image);
3500 return((Image *) NULL);
3501 }
3502 AppendImageToList(&morph_images,morph_image);
3503 morph_images=GetLastImageInList(morph_images);
cristy15b98cd2010-09-12 19:42:50 +00003504 morph_image=ResizeImage(GetNextImageInList(next),morph_images->columns,
cristyaa2c16c2012-03-25 22:21:35 +00003505 morph_images->rows,GetNextImageInList(next)->filter,exception);
cristy3ed852e2009-09-05 21:47:34 +00003506 if (morph_image == (Image *) NULL)
3507 {
3508 morph_images=DestroyImageList(morph_images);
3509 return((Image *) NULL);
3510 }
cristy4bc52022012-12-13 14:15:41 +00003511 image_view=AcquireVirtualCacheView(morph_image);
3512 morph_view=AcquireAuthenticCacheView(morph_images);
cristyb5d5f722009-11-04 03:03:49 +00003513#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00003514 #pragma omp parallel for schedule(static,4) shared(status) \
cristy4ee2b0c2012-05-15 00:30:35 +00003515 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00003516#endif
cristybb503372010-05-27 20:51:26 +00003517 for (y=0; y < (ssize_t) morph_images->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00003518 {
3519 MagickBooleanType
3520 sync;
3521
cristy4c08aed2011-07-01 19:47:50 +00003522 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00003523 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00003524
cristybb503372010-05-27 20:51:26 +00003525 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003526 x;
3527
cristy4c08aed2011-07-01 19:47:50 +00003528 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003529 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003530
3531 if (status == MagickFalse)
3532 continue;
3533 p=GetCacheViewVirtualPixels(image_view,0,y,morph_image->columns,1,
3534 exception);
3535 q=GetCacheViewAuthenticPixels(morph_view,0,y,morph_images->columns,1,
3536 exception);
cristy4c08aed2011-07-01 19:47:50 +00003537 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003538 {
3539 status=MagickFalse;
3540 continue;
3541 }
cristybb503372010-05-27 20:51:26 +00003542 for (x=0; x < (ssize_t) morph_images->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00003543 {
cristy1707c6c2012-01-18 23:30:54 +00003544 register ssize_t
3545 i;
3546
cristy10a6c612012-01-29 21:41:05 +00003547 for (i=0; i < (ssize_t) GetPixelChannels(morph_image); i++)
cristy1707c6c2012-01-18 23:30:54 +00003548 {
3549 PixelChannel
3550 channel;
3551
3552 PixelTrait
3553 morph_traits,
3554 traits;
3555
cristycf1296e2012-08-26 23:40:49 +00003556 channel=GetPixelChannelChannel(image,i);
3557 traits=GetPixelChannelTraits(image,channel);
3558 morph_traits=GetPixelChannelTraits(morph_image,channel);
cristy1707c6c2012-01-18 23:30:54 +00003559 if ((traits == UndefinedPixelTrait) ||
3560 (morph_traits == UndefinedPixelTrait))
3561 continue;
cristy1eced092012-08-10 23:10:56 +00003562 if (((morph_traits & CopyPixelTrait) != 0) ||
3563 (GetPixelMask(image,p) != 0))
cristy1707c6c2012-01-18 23:30:54 +00003564 {
3565 SetPixelChannel(morph_image,channel,p[i],q);
3566 continue;
3567 }
3568 SetPixelChannel(morph_image,channel,ClampToQuantum(alpha*
3569 GetPixelChannel(morph_images,channel,q)+beta*p[i]),q);
3570 }
cristyed231572011-07-14 02:18:59 +00003571 p+=GetPixelChannels(morph_image);
3572 q+=GetPixelChannels(morph_images);
cristy3ed852e2009-09-05 21:47:34 +00003573 }
3574 sync=SyncCacheViewAuthenticPixels(morph_view,exception);
3575 if (sync == MagickFalse)
3576 status=MagickFalse;
3577 }
3578 morph_view=DestroyCacheView(morph_view);
3579 image_view=DestroyCacheView(image_view);
3580 morph_image=DestroyImage(morph_image);
3581 }
cristybb503372010-05-27 20:51:26 +00003582 if (i < (ssize_t) number_frames)
cristy3ed852e2009-09-05 21:47:34 +00003583 break;
3584 /*
3585 Clone last frame in sequence.
3586 */
3587 morph_image=CloneImage(GetNextImageInList(next),0,0,MagickTrue,exception);
3588 if (morph_image == (Image *) NULL)
3589 {
3590 morph_images=DestroyImageList(morph_images);
3591 return((Image *) NULL);
3592 }
3593 AppendImageToList(&morph_images,morph_image);
3594 morph_images=GetLastImageInList(morph_images);
3595 if (image->progress_monitor != (MagickProgressMonitor) NULL)
3596 {
3597 MagickBooleanType
3598 proceed;
3599
cristyb5d5f722009-11-04 03:03:49 +00003600#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00003601 #pragma omp critical (MagickCore_MorphImages)
cristy3ed852e2009-09-05 21:47:34 +00003602#endif
3603 proceed=SetImageProgress(image,MorphImageTag,scene,
3604 GetImageListLength(image));
3605 if (proceed == MagickFalse)
3606 status=MagickFalse;
3607 }
3608 scene++;
3609 }
3610 if (GetNextImageInList(next) != (Image *) NULL)
3611 {
3612 morph_images=DestroyImageList(morph_images);
3613 return((Image *) NULL);
3614 }
3615 return(GetFirstImageInList(morph_images));
3616}
3617
3618/*
3619%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3620% %
3621% %
3622% %
3623% P l a s m a I m a g e %
3624% %
3625% %
3626% %
3627%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3628%
3629% PlasmaImage() initializes an image with plasma fractal values. The image
3630% must be initialized with a base color and the random number generator
3631% seeded before this method is called.
3632%
3633% The format of the PlasmaImage method is:
3634%
3635% MagickBooleanType PlasmaImage(Image *image,const SegmentInfo *segment,
cristy5cbc0162011-08-29 00:36:28 +00003636% size_t attenuate,size_t depth,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003637%
3638% A description of each parameter follows:
3639%
3640% o image: the image.
3641%
3642% o segment: Define the region to apply plasma fractals values.
3643%
glennrp7dae1ca2010-09-16 12:17:35 +00003644% o attenuate: Define the plasma attenuation factor.
cristy3ed852e2009-09-05 21:47:34 +00003645%
3646% o depth: Limit the plasma recursion depth.
3647%
cristy5cbc0162011-08-29 00:36:28 +00003648% o exception: return any errors or warnings in this structure.
3649%
cristy3ed852e2009-09-05 21:47:34 +00003650*/
3651
3652static inline Quantum PlasmaPixel(RandomInfo *random_info,
cristya19f1d72012-08-07 18:24:38 +00003653 const double pixel,const double noise)
cristy3ed852e2009-09-05 21:47:34 +00003654{
3655 Quantum
3656 plasma;
3657
cristyce70c172010-01-07 17:15:30 +00003658 plasma=ClampToQuantum(pixel+noise*GetPseudoRandomValue(random_info)-
cristy3ed852e2009-09-05 21:47:34 +00003659 noise/2.0);
3660 return(plasma);
3661}
3662
cristyda1f9c12011-10-02 21:39:49 +00003663static MagickBooleanType PlasmaImageProxy(Image *image,CacheView *image_view,
3664 CacheView *u_view,CacheView *v_view,RandomInfo *random_info,
3665 const SegmentInfo *segment,size_t attenuate,size_t depth,
3666 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003667{
cristya19f1d72012-08-07 18:24:38 +00003668 double
cristy3ed852e2009-09-05 21:47:34 +00003669 plasma;
3670
cristyda1f9c12011-10-02 21:39:49 +00003671 PixelChannel
3672 channel;
3673
3674 PixelTrait
3675 traits;
3676
3677 register const Quantum
3678 *restrict u,
3679 *restrict v;
3680
3681 register Quantum
3682 *restrict q;
3683
3684 register ssize_t
3685 i;
cristy3ed852e2009-09-05 21:47:34 +00003686
cristy9d314ff2011-03-09 01:30:28 +00003687 ssize_t
3688 x,
3689 x_mid,
3690 y,
3691 y_mid;
3692
cristy3ed852e2009-09-05 21:47:34 +00003693 if (((segment->x2-segment->x1) == 0.0) && ((segment->y2-segment->y1) == 0.0))
3694 return(MagickTrue);
3695 if (depth != 0)
3696 {
3697 SegmentInfo
3698 local_info;
3699
3700 /*
3701 Divide the area into quadrants and recurse.
3702 */
3703 depth--;
3704 attenuate++;
cristybb503372010-05-27 20:51:26 +00003705 x_mid=(ssize_t) ceil((segment->x1+segment->x2)/2-0.5);
3706 y_mid=(ssize_t) ceil((segment->y1+segment->y2)/2-0.5);
cristy3ed852e2009-09-05 21:47:34 +00003707 local_info=(*segment);
3708 local_info.x2=(double) x_mid;
3709 local_info.y2=(double) y_mid;
cristyda1f9c12011-10-02 21:39:49 +00003710 (void) PlasmaImageProxy(image,image_view,u_view,v_view,random_info,
3711 &local_info,attenuate,depth,exception);
cristy3ed852e2009-09-05 21:47:34 +00003712 local_info=(*segment);
3713 local_info.y1=(double) y_mid;
3714 local_info.x2=(double) x_mid;
cristyda1f9c12011-10-02 21:39:49 +00003715 (void) PlasmaImageProxy(image,image_view,u_view,v_view,random_info,
3716 &local_info,attenuate,depth,exception);
cristy3ed852e2009-09-05 21:47:34 +00003717 local_info=(*segment);
3718 local_info.x1=(double) x_mid;
3719 local_info.y2=(double) y_mid;
cristyda1f9c12011-10-02 21:39:49 +00003720 (void) PlasmaImageProxy(image,image_view,u_view,v_view,random_info,
3721 &local_info,attenuate,depth,exception);
cristy3ed852e2009-09-05 21:47:34 +00003722 local_info=(*segment);
3723 local_info.x1=(double) x_mid;
3724 local_info.y1=(double) y_mid;
cristyda1f9c12011-10-02 21:39:49 +00003725 return(PlasmaImageProxy(image,image_view,u_view,v_view,random_info,
3726 &local_info,attenuate,depth,exception));
cristy3ed852e2009-09-05 21:47:34 +00003727 }
cristybb503372010-05-27 20:51:26 +00003728 x_mid=(ssize_t) ceil((segment->x1+segment->x2)/2-0.5);
3729 y_mid=(ssize_t) ceil((segment->y1+segment->y2)/2-0.5);
cristy3ed852e2009-09-05 21:47:34 +00003730 if ((segment->x1 == (double) x_mid) && (segment->x2 == (double) x_mid) &&
3731 (segment->y1 == (double) y_mid) && (segment->y2 == (double) y_mid))
3732 return(MagickFalse);
3733 /*
3734 Average pixels and apply plasma.
3735 */
cristya19f1d72012-08-07 18:24:38 +00003736 plasma=(double) QuantumRange/(2.0*attenuate);
cristy3ed852e2009-09-05 21:47:34 +00003737 if ((segment->x1 != (double) x_mid) || (segment->x2 != (double) x_mid))
3738 {
cristy3ed852e2009-09-05 21:47:34 +00003739 /*
3740 Left pixel.
3741 */
cristybb503372010-05-27 20:51:26 +00003742 x=(ssize_t) ceil(segment->x1-0.5);
cristy1707c6c2012-01-18 23:30:54 +00003743 u=GetCacheViewVirtualPixels(u_view,x,(ssize_t) ceil(segment->y1-0.5),1,1,
3744 exception);
3745 v=GetCacheViewVirtualPixels(v_view,x,(ssize_t) ceil(segment->y2-0.5),1,1,
3746 exception);
cristyc5c6f662010-09-22 14:23:02 +00003747 q=QueueCacheViewAuthenticPixels(image_view,x,y_mid,1,1,exception);
cristyda1f9c12011-10-02 21:39:49 +00003748 if ((u == (const Quantum *) NULL) || (v == (const Quantum *) NULL) ||
3749 (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003750 return(MagickTrue);
cristyda1f9c12011-10-02 21:39:49 +00003751 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3752 {
cristycf1296e2012-08-26 23:40:49 +00003753 channel=GetPixelChannelChannel(image,i);
3754 traits=GetPixelChannelTraits(image,channel);
cristyda1f9c12011-10-02 21:39:49 +00003755 if (traits == UndefinedPixelTrait)
3756 continue;
3757 q[i]=PlasmaPixel(random_info,(u[channel]+v[channel])/2.0,plasma);
3758 }
cristyc5c6f662010-09-22 14:23:02 +00003759 (void) SyncCacheViewAuthenticPixels(image_view,exception);
cristy3ed852e2009-09-05 21:47:34 +00003760 if (segment->x1 != segment->x2)
3761 {
3762 /*
3763 Right pixel.
3764 */
cristybb503372010-05-27 20:51:26 +00003765 x=(ssize_t) ceil(segment->x2-0.5);
cristyda1f9c12011-10-02 21:39:49 +00003766 u=GetCacheViewVirtualPixels(u_view,x,(ssize_t) ceil(segment->y1-0.5),
3767 1,1,exception);
3768 v=GetCacheViewVirtualPixels(v_view,x,(ssize_t) ceil(segment->y2-0.5),
3769 1,1,exception);
cristyc5c6f662010-09-22 14:23:02 +00003770 q=QueueCacheViewAuthenticPixels(image_view,x,y_mid,1,1,exception);
cristyda1f9c12011-10-02 21:39:49 +00003771 if ((u == (const Quantum *) NULL) || (v == (const Quantum *) NULL) ||
3772 (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003773 return(MagickTrue);
cristyda1f9c12011-10-02 21:39:49 +00003774 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3775 {
cristycf1296e2012-08-26 23:40:49 +00003776 channel=GetPixelChannelChannel(image,i);
3777 traits=GetPixelChannelTraits(image,channel);
cristyda1f9c12011-10-02 21:39:49 +00003778 if (traits == UndefinedPixelTrait)
3779 continue;
3780 q[i]=PlasmaPixel(random_info,(u[channel]+v[channel])/2.0,plasma);
3781 }
cristyc5c6f662010-09-22 14:23:02 +00003782 (void) SyncCacheViewAuthenticPixels(image_view,exception);
cristy3ed852e2009-09-05 21:47:34 +00003783 }
3784 }
3785 if ((segment->y1 != (double) y_mid) || (segment->y2 != (double) y_mid))
3786 {
3787 if ((segment->x1 != (double) x_mid) || (segment->y2 != (double) y_mid))
3788 {
cristy3ed852e2009-09-05 21:47:34 +00003789 /*
3790 Bottom pixel.
3791 */
cristybb503372010-05-27 20:51:26 +00003792 y=(ssize_t) ceil(segment->y2-0.5);
cristyda1f9c12011-10-02 21:39:49 +00003793 u=GetCacheViewVirtualPixels(u_view,(ssize_t) ceil(segment->x1-0.5),y,
3794 1,1,exception);
3795 v=GetCacheViewVirtualPixels(v_view,(ssize_t) ceil(segment->x2-0.5),y,
3796 1,1,exception);
cristyc5c6f662010-09-22 14:23:02 +00003797 q=QueueCacheViewAuthenticPixels(image_view,x_mid,y,1,1,exception);
cristyda1f9c12011-10-02 21:39:49 +00003798 if ((u == (const Quantum *) NULL) || (v == (const Quantum *) NULL) ||
3799 (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003800 return(MagickTrue);
cristyda1f9c12011-10-02 21:39:49 +00003801 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3802 {
cristycf1296e2012-08-26 23:40:49 +00003803 channel=GetPixelChannelChannel(image,i);
3804 traits=GetPixelChannelTraits(image,channel);
cristyda1f9c12011-10-02 21:39:49 +00003805 if (traits == UndefinedPixelTrait)
3806 continue;
3807 q[i]=PlasmaPixel(random_info,(u[channel]+v[channel])/2.0,plasma);
3808 }
cristyc5c6f662010-09-22 14:23:02 +00003809 (void) SyncCacheViewAuthenticPixels(image_view,exception);
cristy3ed852e2009-09-05 21:47:34 +00003810 }
3811 if (segment->y1 != segment->y2)
3812 {
cristy3ed852e2009-09-05 21:47:34 +00003813 /*
3814 Top pixel.
3815 */
cristybb503372010-05-27 20:51:26 +00003816 y=(ssize_t) ceil(segment->y1-0.5);
cristyda1f9c12011-10-02 21:39:49 +00003817 u=GetCacheViewVirtualPixels(u_view,(ssize_t) ceil(segment->x1-0.5),y,
3818 1,1,exception);
3819 v=GetCacheViewVirtualPixels(v_view,(ssize_t) ceil(segment->x2-0.5),y,
3820 1,1,exception);
cristyc5c6f662010-09-22 14:23:02 +00003821 q=QueueCacheViewAuthenticPixels(image_view,x_mid,y,1,1,exception);
cristyda1f9c12011-10-02 21:39:49 +00003822 if ((u == (const Quantum *) NULL) || (v == (const Quantum *) NULL) ||
3823 (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003824 return(MagickTrue);
cristyda1f9c12011-10-02 21:39:49 +00003825 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3826 {
cristycf1296e2012-08-26 23:40:49 +00003827 channel=GetPixelChannelChannel(image,i);
3828 traits=GetPixelChannelTraits(image,channel);
cristyda1f9c12011-10-02 21:39:49 +00003829 if (traits == UndefinedPixelTrait)
3830 continue;
3831 q[i]=PlasmaPixel(random_info,(u[channel]+v[channel])/2.0,plasma);
3832 }
cristyc5c6f662010-09-22 14:23:02 +00003833 (void) SyncCacheViewAuthenticPixels(image_view,exception);
cristy3ed852e2009-09-05 21:47:34 +00003834 }
3835 }
3836 if ((segment->x1 != segment->x2) || (segment->y1 != segment->y2))
3837 {
cristy3ed852e2009-09-05 21:47:34 +00003838 /*
3839 Middle pixel.
3840 */
cristybb503372010-05-27 20:51:26 +00003841 x=(ssize_t) ceil(segment->x1-0.5);
3842 y=(ssize_t) ceil(segment->y1-0.5);
cristyda1f9c12011-10-02 21:39:49 +00003843 u=GetCacheViewVirtualPixels(u_view,x,y,1,1,exception);
cristybb503372010-05-27 20:51:26 +00003844 x=(ssize_t) ceil(segment->x2-0.5);
3845 y=(ssize_t) ceil(segment->y2-0.5);
cristyda1f9c12011-10-02 21:39:49 +00003846 v=GetCacheViewVirtualPixels(v_view,x,y,1,1,exception);
cristyc5c6f662010-09-22 14:23:02 +00003847 q=QueueCacheViewAuthenticPixels(image_view,x_mid,y_mid,1,1,exception);
cristyda1f9c12011-10-02 21:39:49 +00003848 if ((u == (const Quantum *) NULL) || (v == (const Quantum *) NULL) ||
3849 (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00003850 return(MagickTrue);
cristyda1f9c12011-10-02 21:39:49 +00003851 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
3852 {
cristycf1296e2012-08-26 23:40:49 +00003853 channel=GetPixelChannelChannel(image,i);
3854 traits=GetPixelChannelTraits(image,channel);
cristyda1f9c12011-10-02 21:39:49 +00003855 if (traits == UndefinedPixelTrait)
3856 continue;
3857 q[i]=PlasmaPixel(random_info,(u[channel]+v[channel])/2.0,plasma);
3858 }
cristyc5c6f662010-09-22 14:23:02 +00003859 (void) SyncCacheViewAuthenticPixels(image_view,exception);
cristy3ed852e2009-09-05 21:47:34 +00003860 }
3861 if (((segment->x2-segment->x1) < 3.0) && ((segment->y2-segment->y1) < 3.0))
3862 return(MagickTrue);
3863 return(MagickFalse);
3864}
cristyda1f9c12011-10-02 21:39:49 +00003865
cristy3ed852e2009-09-05 21:47:34 +00003866MagickExport MagickBooleanType PlasmaImage(Image *image,
cristy5cbc0162011-08-29 00:36:28 +00003867 const SegmentInfo *segment,size_t attenuate,size_t depth,
3868 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003869{
cristyc5c6f662010-09-22 14:23:02 +00003870 CacheView
cristyda1f9c12011-10-02 21:39:49 +00003871 *image_view,
3872 *u_view,
3873 *v_view;
cristyc5c6f662010-09-22 14:23:02 +00003874
cristy3ed852e2009-09-05 21:47:34 +00003875 MagickBooleanType
3876 status;
3877
3878 RandomInfo
3879 *random_info;
3880
3881 if (image->debug != MagickFalse)
3882 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
3883 assert(image != (Image *) NULL);
3884 assert(image->signature == MagickSignature);
3885 if (image->debug != MagickFalse)
3886 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
cristy5cbc0162011-08-29 00:36:28 +00003887 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
cristyc5c6f662010-09-22 14:23:02 +00003888 return(MagickFalse);
cristy4bc52022012-12-13 14:15:41 +00003889 image_view=AcquireAuthenticCacheView(image);
3890 u_view=AcquireVirtualCacheView(image);
3891 v_view=AcquireVirtualCacheView(image);
cristy3ed852e2009-09-05 21:47:34 +00003892 random_info=AcquireRandomInfo();
cristyda1f9c12011-10-02 21:39:49 +00003893 status=PlasmaImageProxy(image,image_view,u_view,v_view,random_info,segment,
3894 attenuate,depth,exception);
cristy3ed852e2009-09-05 21:47:34 +00003895 random_info=DestroyRandomInfo(random_info);
cristyda1f9c12011-10-02 21:39:49 +00003896 v_view=DestroyCacheView(v_view);
3897 u_view=DestroyCacheView(u_view);
cristyc5c6f662010-09-22 14:23:02 +00003898 image_view=DestroyCacheView(image_view);
cristy3ed852e2009-09-05 21:47:34 +00003899 return(status);
3900}
3901
3902/*
3903%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3904% %
3905% %
3906% %
3907% P o l a r o i d I m a g e %
3908% %
3909% %
3910% %
3911%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3912%
3913% PolaroidImage() simulates a Polaroid picture.
3914%
3915% The format of the AnnotateImage method is:
3916%
3917% Image *PolaroidImage(const Image *image,const DrawInfo *draw_info,
cristye9e3d382011-12-14 01:50:13 +00003918% const char *caption,const double angle,
3919% const PixelInterpolateMethod method,ExceptionInfo exception)
cristy3ed852e2009-09-05 21:47:34 +00003920%
3921% A description of each parameter follows:
3922%
3923% o image: the image.
3924%
3925% o draw_info: the draw info.
3926%
cristye9e3d382011-12-14 01:50:13 +00003927% o caption: the Polaroid caption.
3928%
cristycee97112010-05-28 00:44:52 +00003929% o angle: Apply the effect along this angle.
cristy3ed852e2009-09-05 21:47:34 +00003930%
cristy5c4e2582011-09-11 19:21:03 +00003931% o method: the pixel interpolation method.
3932%
cristy3ed852e2009-09-05 21:47:34 +00003933% o exception: return any errors or warnings in this structure.
3934%
3935*/
3936MagickExport Image *PolaroidImage(const Image *image,const DrawInfo *draw_info,
cristye9e3d382011-12-14 01:50:13 +00003937 const char *caption,const double angle,const PixelInterpolateMethod method,
cristy5c4e2582011-09-11 19:21:03 +00003938 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003939{
cristy3ed852e2009-09-05 21:47:34 +00003940 Image
3941 *bend_image,
3942 *caption_image,
3943 *flop_image,
3944 *picture_image,
3945 *polaroid_image,
3946 *rotate_image,
3947 *trim_image;
3948
cristybb503372010-05-27 20:51:26 +00003949 size_t
cristy3ed852e2009-09-05 21:47:34 +00003950 height;
3951
cristy9d314ff2011-03-09 01:30:28 +00003952 ssize_t
3953 quantum;
3954
cristy3ed852e2009-09-05 21:47:34 +00003955 /*
3956 Simulate a Polaroid picture.
3957 */
3958 assert(image != (Image *) NULL);
3959 assert(image->signature == MagickSignature);
3960 if (image->debug != MagickFalse)
3961 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3962 assert(exception != (ExceptionInfo *) NULL);
3963 assert(exception->signature == MagickSignature);
cristybb503372010-05-27 20:51:26 +00003964 quantum=(ssize_t) MagickMax(MagickMax((double) image->columns,(double)
cristy3ed852e2009-09-05 21:47:34 +00003965 image->rows)/25.0,10.0);
3966 height=image->rows+2*quantum;
3967 caption_image=(Image *) NULL;
cristye9e3d382011-12-14 01:50:13 +00003968 if (caption != (const char *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003969 {
3970 char
cristye9e3d382011-12-14 01:50:13 +00003971 geometry[MaxTextExtent],
3972 *text;
cristy3ed852e2009-09-05 21:47:34 +00003973
3974 DrawInfo
3975 *annotate_info;
3976
cristy3ed852e2009-09-05 21:47:34 +00003977 MagickBooleanType
3978 status;
3979
cristy9d314ff2011-03-09 01:30:28 +00003980 ssize_t
3981 count;
3982
cristy3ed852e2009-09-05 21:47:34 +00003983 TypeMetric
3984 metrics;
3985
3986 /*
3987 Generate caption image.
3988 */
3989 caption_image=CloneImage(image,image->columns,1,MagickTrue,exception);
3990 if (caption_image == (Image *) NULL)
3991 return((Image *) NULL);
3992 annotate_info=CloneDrawInfo((const ImageInfo *) NULL,draw_info);
cristye9e3d382011-12-14 01:50:13 +00003993 text=InterpretImageProperties((ImageInfo *) NULL,(Image *) image,caption,
3994 exception);
3995 (void) CloneString(&annotate_info->text,text);
cristy6b1d05e2010-09-22 19:17:27 +00003996 count=FormatMagickCaption(caption_image,annotate_info,MagickTrue,&metrics,
cristye9e3d382011-12-14 01:50:13 +00003997 &text,exception);
3998 status=SetImageExtent(caption_image,image->columns,(size_t) ((count+1)*
3999 (metrics.ascent-metrics.descent)+0.5),exception);
cristy3ed852e2009-09-05 21:47:34 +00004000 if (status == MagickFalse)
4001 caption_image=DestroyImage(caption_image);
4002 else
4003 {
4004 caption_image->background_color=image->border_color;
cristyea1a8aa2011-10-20 13:24:06 +00004005 (void) SetImageBackgroundColor(caption_image,exception);
cristye9e3d382011-12-14 01:50:13 +00004006 (void) CloneString(&annotate_info->text,text);
cristyb51dff52011-05-19 16:55:47 +00004007 (void) FormatLocaleString(geometry,MaxTextExtent,"+0+%g",
cristy3ed852e2009-09-05 21:47:34 +00004008 metrics.ascent);
4009 if (annotate_info->gravity == UndefinedGravity)
4010 (void) CloneString(&annotate_info->geometry,AcquireString(
4011 geometry));
cristy5cbc0162011-08-29 00:36:28 +00004012 (void) AnnotateImage(caption_image,annotate_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004013 height+=caption_image->rows;
4014 }
4015 annotate_info=DestroyDrawInfo(annotate_info);
cristye9e3d382011-12-14 01:50:13 +00004016 text=DestroyString(text);
cristy3ed852e2009-09-05 21:47:34 +00004017 }
4018 picture_image=CloneImage(image,image->columns+2*quantum,height,MagickTrue,
4019 exception);
4020 if (picture_image == (Image *) NULL)
4021 {
4022 if (caption_image != (Image *) NULL)
4023 caption_image=DestroyImage(caption_image);
4024 return((Image *) NULL);
4025 }
4026 picture_image->background_color=image->border_color;
cristyea1a8aa2011-10-20 13:24:06 +00004027 (void) SetImageBackgroundColor(picture_image,exception);
cristy39172402012-03-30 13:04:39 +00004028 (void) CompositeImage(picture_image,image,OverCompositeOp,MagickTrue,quantum,
cristyfeb3e962012-03-29 17:25:55 +00004029 quantum,exception);
cristy3ed852e2009-09-05 21:47:34 +00004030 if (caption_image != (Image *) NULL)
4031 {
cristyfeb3e962012-03-29 17:25:55 +00004032 (void) CompositeImage(picture_image,caption_image,OverCompositeOp,
cristy39172402012-03-30 13:04:39 +00004033 MagickTrue,quantum,(ssize_t) (image->rows+3*quantum/2),exception);
cristy3ed852e2009-09-05 21:47:34 +00004034 caption_image=DestroyImage(caption_image);
4035 }
cristy9950d572011-10-01 18:22:35 +00004036 (void) QueryColorCompliance("none",AllCompliance,
4037 &picture_image->background_color,exception);
cristy63240882011-08-05 19:05:27 +00004038 (void) SetImageAlphaChannel(picture_image,OpaqueAlphaChannel,exception);
cristy3ed852e2009-09-05 21:47:34 +00004039 rotate_image=RotateImage(picture_image,90.0,exception);
4040 picture_image=DestroyImage(picture_image);
4041 if (rotate_image == (Image *) NULL)
4042 return((Image *) NULL);
4043 picture_image=rotate_image;
4044 bend_image=WaveImage(picture_image,0.01*picture_image->rows,2.0*
cristy5c4e2582011-09-11 19:21:03 +00004045 picture_image->columns,method,exception);
cristy3ed852e2009-09-05 21:47:34 +00004046 picture_image=DestroyImage(picture_image);
4047 if (bend_image == (Image *) NULL)
4048 return((Image *) NULL);
cristy3ed852e2009-09-05 21:47:34 +00004049 picture_image=bend_image;
4050 rotate_image=RotateImage(picture_image,-90.0,exception);
4051 picture_image=DestroyImage(picture_image);
4052 if (rotate_image == (Image *) NULL)
4053 return((Image *) NULL);
4054 picture_image=rotate_image;
4055 picture_image->background_color=image->background_color;
anthonyf46d4262012-03-26 03:30:34 +00004056 polaroid_image=ShadowImage(picture_image,80.0,2.0,quantum/3,quantum/3,
cristy3ed852e2009-09-05 21:47:34 +00004057 exception);
4058 if (polaroid_image == (Image *) NULL)
4059 {
4060 picture_image=DestroyImage(picture_image);
4061 return(picture_image);
4062 }
4063 flop_image=FlopImage(polaroid_image,exception);
4064 polaroid_image=DestroyImage(polaroid_image);
4065 if (flop_image == (Image *) NULL)
4066 {
4067 picture_image=DestroyImage(picture_image);
4068 return(picture_image);
4069 }
4070 polaroid_image=flop_image;
cristyfeb3e962012-03-29 17:25:55 +00004071 (void) CompositeImage(polaroid_image,picture_image,OverCompositeOp,
cristy39172402012-03-30 13:04:39 +00004072 MagickTrue,(ssize_t) (-0.01*picture_image->columns/2.0),0L,exception);
cristy3ed852e2009-09-05 21:47:34 +00004073 picture_image=DestroyImage(picture_image);
cristy9950d572011-10-01 18:22:35 +00004074 (void) QueryColorCompliance("none",AllCompliance,
4075 &polaroid_image->background_color,exception);
cristy3ed852e2009-09-05 21:47:34 +00004076 rotate_image=RotateImage(polaroid_image,angle,exception);
4077 polaroid_image=DestroyImage(polaroid_image);
4078 if (rotate_image == (Image *) NULL)
4079 return((Image *) NULL);
4080 polaroid_image=rotate_image;
4081 trim_image=TrimImage(polaroid_image,exception);
4082 polaroid_image=DestroyImage(polaroid_image);
4083 if (trim_image == (Image *) NULL)
4084 return((Image *) NULL);
4085 polaroid_image=trim_image;
4086 return(polaroid_image);
4087}
4088
4089/*
4090%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4091% %
4092% %
4093% %
cristy3ed852e2009-09-05 21:47:34 +00004094% S e p i a T o n e I m a g e %
4095% %
4096% %
4097% %
4098%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4099%
4100% MagickSepiaToneImage() applies a special effect to the image, similar to the
4101% effect achieved in a photo darkroom by sepia toning. Threshold ranges from
4102% 0 to QuantumRange and is a measure of the extent of the sepia toning. A
4103% threshold of 80% is a good starting point for a reasonable tone.
4104%
4105% The format of the SepiaToneImage method is:
4106%
4107% Image *SepiaToneImage(const Image *image,const double threshold,
4108% ExceptionInfo *exception)
4109%
4110% A description of each parameter follows:
4111%
4112% o image: the image.
4113%
4114% o threshold: the tone threshold.
4115%
4116% o exception: return any errors or warnings in this structure.
4117%
4118*/
4119MagickExport Image *SepiaToneImage(const Image *image,const double threshold,
4120 ExceptionInfo *exception)
4121{
4122#define SepiaToneImageTag "SepiaTone/Image"
4123
cristyc4c8d132010-01-07 01:58:38 +00004124 CacheView
4125 *image_view,
4126 *sepia_view;
4127
cristy3ed852e2009-09-05 21:47:34 +00004128 Image
4129 *sepia_image;
4130
cristy3ed852e2009-09-05 21:47:34 +00004131 MagickBooleanType
4132 status;
4133
cristybb503372010-05-27 20:51:26 +00004134 MagickOffsetType
4135 progress;
4136
4137 ssize_t
4138 y;
4139
cristy3ed852e2009-09-05 21:47:34 +00004140 /*
4141 Initialize sepia-toned image attributes.
4142 */
4143 assert(image != (const Image *) NULL);
4144 assert(image->signature == MagickSignature);
4145 if (image->debug != MagickFalse)
4146 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
4147 assert(exception != (ExceptionInfo *) NULL);
4148 assert(exception->signature == MagickSignature);
cristy1707c6c2012-01-18 23:30:54 +00004149 sepia_image=CloneImage(image,0,0,MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +00004150 if (sepia_image == (Image *) NULL)
4151 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00004152 if (SetImageStorageClass(sepia_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00004153 {
cristy3ed852e2009-09-05 21:47:34 +00004154 sepia_image=DestroyImage(sepia_image);
4155 return((Image *) NULL);
4156 }
4157 /*
4158 Tone each row of the image.
4159 */
4160 status=MagickTrue;
4161 progress=0;
cristy4bc52022012-12-13 14:15:41 +00004162 image_view=AcquireVirtualCacheView(image);
4163 sepia_view=AcquireAuthenticCacheView(sepia_image);
cristyb5d5f722009-11-04 03:03:49 +00004164#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00004165 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00004166 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00004167#endif
cristybb503372010-05-27 20:51:26 +00004168 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004169 {
cristy4c08aed2011-07-01 19:47:50 +00004170 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00004171 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00004172
cristybb503372010-05-27 20:51:26 +00004173 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004174 x;
4175
cristy4c08aed2011-07-01 19:47:50 +00004176 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00004177 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004178
4179 if (status == MagickFalse)
4180 continue;
4181 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy1707c6c2012-01-18 23:30:54 +00004182 q=GetCacheViewAuthenticPixels(sepia_view,0,y,sepia_image->columns,1,
cristy3ed852e2009-09-05 21:47:34 +00004183 exception);
cristy4c08aed2011-07-01 19:47:50 +00004184 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00004185 {
4186 status=MagickFalse;
4187 continue;
4188 }
cristybb503372010-05-27 20:51:26 +00004189 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004190 {
cristya19f1d72012-08-07 18:24:38 +00004191 double
cristy3ed852e2009-09-05 21:47:34 +00004192 intensity,
4193 tone;
4194
cristyf13c5942012-08-08 23:50:11 +00004195 intensity=GetPixelIntensity(image,p);
cristya19f1d72012-08-07 18:24:38 +00004196 tone=intensity > threshold ? (double) QuantumRange : intensity+
4197 (double) QuantumRange-threshold;
cristy4c08aed2011-07-01 19:47:50 +00004198 SetPixelRed(sepia_image,ClampToQuantum(tone),q);
cristya19f1d72012-08-07 18:24:38 +00004199 tone=intensity > (7.0*threshold/6.0) ? (double) QuantumRange :
4200 intensity+(double) QuantumRange-7.0*threshold/6.0;
cristy4c08aed2011-07-01 19:47:50 +00004201 SetPixelGreen(sepia_image,ClampToQuantum(tone),q);
cristy3ed852e2009-09-05 21:47:34 +00004202 tone=intensity < (threshold/6.0) ? 0 : intensity-threshold/6.0;
cristy4c08aed2011-07-01 19:47:50 +00004203 SetPixelBlue(sepia_image,ClampToQuantum(tone),q);
cristy3ed852e2009-09-05 21:47:34 +00004204 tone=threshold/7.0;
cristya19f1d72012-08-07 18:24:38 +00004205 if ((double) GetPixelGreen(image,q) < tone)
cristy4c08aed2011-07-01 19:47:50 +00004206 SetPixelGreen(sepia_image,ClampToQuantum(tone),q);
cristya19f1d72012-08-07 18:24:38 +00004207 if ((double) GetPixelBlue(image,q) < tone)
cristy4c08aed2011-07-01 19:47:50 +00004208 SetPixelBlue(sepia_image,ClampToQuantum(tone),q);
cristyed231572011-07-14 02:18:59 +00004209 p+=GetPixelChannels(image);
4210 q+=GetPixelChannels(sepia_image);
cristy3ed852e2009-09-05 21:47:34 +00004211 }
4212 if (SyncCacheViewAuthenticPixels(sepia_view,exception) == MagickFalse)
4213 status=MagickFalse;
4214 if (image->progress_monitor != (MagickProgressMonitor) NULL)
4215 {
4216 MagickBooleanType
4217 proceed;
4218
cristyb5d5f722009-11-04 03:03:49 +00004219#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00004220 #pragma omp critical (MagickCore_SepiaToneImage)
cristy3ed852e2009-09-05 21:47:34 +00004221#endif
4222 proceed=SetImageProgress(image,SepiaToneImageTag,progress++,
4223 image->rows);
4224 if (proceed == MagickFalse)
4225 status=MagickFalse;
4226 }
4227 }
4228 sepia_view=DestroyCacheView(sepia_view);
4229 image_view=DestroyCacheView(image_view);
cristye23ec9d2011-08-16 18:15:40 +00004230 (void) NormalizeImage(sepia_image,exception);
4231 (void) ContrastImage(sepia_image,MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +00004232 if (status == MagickFalse)
4233 sepia_image=DestroyImage(sepia_image);
4234 return(sepia_image);
4235}
4236
4237/*
4238%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4239% %
4240% %
4241% %
4242% S h a d o w I m a g e %
4243% %
4244% %
4245% %
4246%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4247%
4248% ShadowImage() simulates a shadow from the specified image and returns it.
4249%
4250% The format of the ShadowImage method is:
4251%
cristy70cddf72011-12-10 22:42:42 +00004252% Image *ShadowImage(const Image *image,const double alpha,
cristyaa2c16c2012-03-25 22:21:35 +00004253% const double sigma,const ssize_t x_offset,const ssize_t y_offset,
4254% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004255%
4256% A description of each parameter follows:
4257%
4258% o image: the image.
4259%
cristy70cddf72011-12-10 22:42:42 +00004260% o alpha: percentage transparency.
cristy3ed852e2009-09-05 21:47:34 +00004261%
4262% o sigma: the standard deviation of the Gaussian, in pixels.
4263%
4264% o x_offset: the shadow x-offset.
4265%
4266% o y_offset: the shadow y-offset.
4267%
4268% o exception: return any errors or warnings in this structure.
4269%
4270*/
cristy70cddf72011-12-10 22:42:42 +00004271MagickExport Image *ShadowImage(const Image *image,const double alpha,
cristyaa2c16c2012-03-25 22:21:35 +00004272 const double sigma,const ssize_t x_offset,const ssize_t y_offset,
4273 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004274{
4275#define ShadowImageTag "Shadow/Image"
4276
cristy70cddf72011-12-10 22:42:42 +00004277 CacheView
4278 *image_view;
4279
cristybd5a96c2011-08-21 00:04:26 +00004280 ChannelType
4281 channel_mask;
4282
cristy3ed852e2009-09-05 21:47:34 +00004283 Image
4284 *border_image,
4285 *clone_image,
4286 *shadow_image;
4287
cristy70cddf72011-12-10 22:42:42 +00004288 MagickBooleanType
4289 status;
4290
cristy3ed852e2009-09-05 21:47:34 +00004291 RectangleInfo
4292 border_info;
4293
cristy70cddf72011-12-10 22:42:42 +00004294 ssize_t
4295 y;
4296
cristy3ed852e2009-09-05 21:47:34 +00004297 assert(image != (Image *) NULL);
4298 assert(image->signature == MagickSignature);
4299 if (image->debug != MagickFalse)
4300 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
4301 assert(exception != (ExceptionInfo *) NULL);
4302 assert(exception->signature == MagickSignature);
4303 clone_image=CloneImage(image,0,0,MagickTrue,exception);
4304 if (clone_image == (Image *) NULL)
4305 return((Image *) NULL);
cristy0898eba2012-04-09 16:38:29 +00004306 if (IsGrayColorspace(image->colorspace) != MagickFalse)
cristyb09db112012-07-11 12:04:31 +00004307 (void) TransformImageColorspace(clone_image,RGBColorspace,exception);
cristy0ce08762012-06-30 01:33:18 +00004308 (void) SetImageVirtualPixelMethod(clone_image,TransparentVirtualPixelMethod,
cristy387430f2012-02-07 13:09:46 +00004309 exception);
cristybb503372010-05-27 20:51:26 +00004310 border_info.width=(size_t) floor(2.0*sigma+0.5);
4311 border_info.height=(size_t) floor(2.0*sigma+0.5);
cristy3ed852e2009-09-05 21:47:34 +00004312 border_info.x=0;
4313 border_info.y=0;
cristy9950d572011-10-01 18:22:35 +00004314 (void) QueryColorCompliance("none",AllCompliance,&clone_image->border_color,
4315 exception);
cristy8a46d822012-08-28 23:32:39 +00004316 clone_image->alpha_trait=BlendPixelTrait;
cristy70cddf72011-12-10 22:42:42 +00004317 border_image=BorderImage(clone_image,&border_info,OverCompositeOp,exception);
cristy3ed852e2009-09-05 21:47:34 +00004318 clone_image=DestroyImage(clone_image);
4319 if (border_image == (Image *) NULL)
4320 return((Image *) NULL);
cristy8a46d822012-08-28 23:32:39 +00004321 if (border_image->alpha_trait != BlendPixelTrait)
cristy63240882011-08-05 19:05:27 +00004322 (void) SetImageAlphaChannel(border_image,OpaqueAlphaChannel,exception);
cristy3ed852e2009-09-05 21:47:34 +00004323 /*
4324 Shadow image.
4325 */
cristy70cddf72011-12-10 22:42:42 +00004326 status=MagickTrue;
cristy4bc52022012-12-13 14:15:41 +00004327 image_view=AcquireAuthenticCacheView(border_image);
cristy70cddf72011-12-10 22:42:42 +00004328 for (y=0; y < (ssize_t) border_image->rows; y++)
4329 {
4330 PixelInfo
4331 background_color;
4332
4333 register Quantum
4334 *restrict q;
4335
4336 register ssize_t
4337 x;
4338
4339 if (status == MagickFalse)
4340 continue;
4341 q=QueueCacheViewAuthenticPixels(image_view,0,y,border_image->columns,1,
4342 exception);
4343 if (q == (Quantum *) NULL)
4344 {
4345 status=MagickFalse;
4346 continue;
4347 }
4348 background_color=border_image->background_color;
cristy8a46d822012-08-28 23:32:39 +00004349 background_color.alpha_trait=BlendPixelTrait;
cristy70cddf72011-12-10 22:42:42 +00004350 for (x=0; x < (ssize_t) border_image->columns; x++)
4351 {
cristy8a46d822012-08-28 23:32:39 +00004352 if (border_image->alpha_trait == BlendPixelTrait)
cristy70cddf72011-12-10 22:42:42 +00004353 background_color.alpha=GetPixelAlpha(border_image,q)*alpha/100.0;
4354 SetPixelInfoPixel(border_image,&background_color,q);
4355 q+=GetPixelChannels(border_image);
4356 }
4357 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
4358 status=MagickFalse;
4359 }
4360 image_view=DestroyCacheView(image_view);
4361 if (status == MagickFalse)
4362 {
4363 border_image=DestroyImage(border_image);
4364 return((Image *) NULL);
4365 }
cristycf1296e2012-08-26 23:40:49 +00004366 channel_mask=SetImageChannelMask(border_image,AlphaChannel);
cristyaa2c16c2012-03-25 22:21:35 +00004367 shadow_image=BlurImage(border_image,0.0,sigma,exception);
cristy3ed852e2009-09-05 21:47:34 +00004368 border_image=DestroyImage(border_image);
4369 if (shadow_image == (Image *) NULL)
4370 return((Image *) NULL);
cristycf1296e2012-08-26 23:40:49 +00004371 (void) SetPixelChannelMask(shadow_image,channel_mask);
cristy3ed852e2009-09-05 21:47:34 +00004372 if (shadow_image->page.width == 0)
4373 shadow_image->page.width=shadow_image->columns;
4374 if (shadow_image->page.height == 0)
4375 shadow_image->page.height=shadow_image->rows;
cristybb503372010-05-27 20:51:26 +00004376 shadow_image->page.width+=x_offset-(ssize_t) border_info.width;
4377 shadow_image->page.height+=y_offset-(ssize_t) border_info.height;
4378 shadow_image->page.x+=x_offset-(ssize_t) border_info.width;
4379 shadow_image->page.y+=y_offset-(ssize_t) border_info.height;
cristy3ed852e2009-09-05 21:47:34 +00004380 return(shadow_image);
4381}
4382
4383/*
4384%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4385% %
4386% %
4387% %
4388% S k e t c h I m a g e %
4389% %
4390% %
4391% %
4392%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4393%
4394% SketchImage() simulates a pencil sketch. We convolve the image with a
4395% Gaussian operator of the given radius and standard deviation (sigma). For
4396% reasonable results, radius should be larger than sigma. Use a radius of 0
4397% and SketchImage() selects a suitable radius for you. Angle gives the angle
4398% of the sketch.
4399%
4400% The format of the SketchImage method is:
4401%
4402% Image *SketchImage(const Image *image,const double radius,
cristyaa2c16c2012-03-25 22:21:35 +00004403% const double sigma,const double angle,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004404%
4405% A description of each parameter follows:
4406%
4407% o image: the image.
4408%
cristy574cc262011-08-05 01:23:58 +00004409% o radius: the radius of the Gaussian, in pixels, not counting the
4410% center pixel.
cristy3ed852e2009-09-05 21:47:34 +00004411%
4412% o sigma: the standard deviation of the Gaussian, in pixels.
4413%
cristyf7ef0252011-09-09 14:50:06 +00004414% o angle: apply the effect along this angle.
4415%
cristy3ed852e2009-09-05 21:47:34 +00004416% o exception: return any errors or warnings in this structure.
4417%
4418*/
4419MagickExport Image *SketchImage(const Image *image,const double radius,
cristyaa2c16c2012-03-25 22:21:35 +00004420 const double sigma,const double angle,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004421{
cristyfa112112010-01-04 17:48:07 +00004422 CacheView
4423 *random_view;
4424
cristy3ed852e2009-09-05 21:47:34 +00004425 Image
4426 *blend_image,
4427 *blur_image,
4428 *dodge_image,
4429 *random_image,
4430 *sketch_image;
4431
cristy3ed852e2009-09-05 21:47:34 +00004432 MagickBooleanType
4433 status;
4434
cristy3ed852e2009-09-05 21:47:34 +00004435 RandomInfo
cristyfa112112010-01-04 17:48:07 +00004436 **restrict random_info;
cristy3ed852e2009-09-05 21:47:34 +00004437
cristy9d314ff2011-03-09 01:30:28 +00004438 ssize_t
4439 y;
4440
glennrpf7659d72012-09-24 18:14:56 +00004441#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy57340e02012-05-05 00:53:23 +00004442 unsigned long
4443 key;
glennrpf7659d72012-09-24 18:14:56 +00004444#endif
cristy57340e02012-05-05 00:53:23 +00004445
cristy3ed852e2009-09-05 21:47:34 +00004446 /*
4447 Sketch image.
4448 */
4449 random_image=CloneImage(image,image->columns << 1,image->rows << 1,
4450 MagickTrue,exception);
4451 if (random_image == (Image *) NULL)
4452 return((Image *) NULL);
4453 status=MagickTrue;
cristy1b784432009-12-19 02:20:40 +00004454 random_info=AcquireRandomInfoThreadSet();
glennrpf7659d72012-09-24 18:14:56 +00004455#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy57340e02012-05-05 00:53:23 +00004456 key=GetRandomSecretKey(random_info[0]);
glennrpf7659d72012-09-24 18:14:56 +00004457#endif
cristy4bc52022012-12-13 14:15:41 +00004458 random_view=AcquireAuthenticCacheView(random_image);
cristy1b784432009-12-19 02:20:40 +00004459#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy57340e02012-05-05 00:53:23 +00004460 #pragma omp parallel for schedule(static,4) shared(status) \
cristy4ee2b0c2012-05-15 00:30:35 +00004461 dynamic_number_threads(image,image->columns,image->rows,key == ~0UL)
cristy1b784432009-12-19 02:20:40 +00004462#endif
cristybb503372010-05-27 20:51:26 +00004463 for (y=0; y < (ssize_t) random_image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004464 {
cristy5c9e6f22010-09-17 17:31:01 +00004465 const int
4466 id = GetOpenMPThreadId();
cristy6ebe97c2010-07-03 01:17:28 +00004467
cristybb503372010-05-27 20:51:26 +00004468 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004469 x;
4470
cristy4c08aed2011-07-01 19:47:50 +00004471 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00004472 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004473
cristy1b784432009-12-19 02:20:40 +00004474 if (status == MagickFalse)
4475 continue;
cristy3ed852e2009-09-05 21:47:34 +00004476 q=QueueCacheViewAuthenticPixels(random_view,0,y,random_image->columns,1,
4477 exception);
cristyacd2ed22011-08-30 01:44:23 +00004478 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004479 {
4480 status=MagickFalse;
4481 continue;
4482 }
cristybb503372010-05-27 20:51:26 +00004483 for (x=0; x < (ssize_t) random_image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004484 {
cristya19f1d72012-08-07 18:24:38 +00004485 double
cristy76f512e2011-09-12 01:26:56 +00004486 value;
4487
4488 register ssize_t
4489 i;
4490
cristy10a6c612012-01-29 21:41:05 +00004491 if (GetPixelMask(random_image,q) != 0)
4492 {
4493 q+=GetPixelChannels(random_image);
4494 continue;
4495 }
cristy76f512e2011-09-12 01:26:56 +00004496 value=GetPseudoRandomValue(random_info[id]);
4497 for (i=0; i < (ssize_t) GetPixelChannels(random_image); i++)
4498 {
cristyabace412011-12-11 15:56:53 +00004499 PixelChannel
4500 channel;
4501
cristy76f512e2011-09-12 01:26:56 +00004502 PixelTrait
4503 traits;
4504
cristycf1296e2012-08-26 23:40:49 +00004505 channel=GetPixelChannelChannel(image,i);
4506 traits=GetPixelChannelTraits(image,channel);
cristy76f512e2011-09-12 01:26:56 +00004507 if (traits == UndefinedPixelTrait)
4508 continue;
4509 q[i]=ClampToQuantum(QuantumRange*value);
4510 }
cristyed231572011-07-14 02:18:59 +00004511 q+=GetPixelChannels(random_image);
cristy3ed852e2009-09-05 21:47:34 +00004512 }
4513 if (SyncCacheViewAuthenticPixels(random_view,exception) == MagickFalse)
4514 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00004515 }
4516 random_view=DestroyCacheView(random_view);
cristy1b784432009-12-19 02:20:40 +00004517 random_info=DestroyRandomInfoThreadSet(random_info);
cristy3ed852e2009-09-05 21:47:34 +00004518 if (status == MagickFalse)
4519 {
4520 random_image=DestroyImage(random_image);
4521 return(random_image);
4522 }
cristyaa2c16c2012-03-25 22:21:35 +00004523 blur_image=MotionBlurImage(random_image,radius,sigma,angle,exception);
cristy3ed852e2009-09-05 21:47:34 +00004524 random_image=DestroyImage(random_image);
4525 if (blur_image == (Image *) NULL)
4526 return((Image *) NULL);
cristy6bfd6902011-12-09 01:33:45 +00004527 dodge_image=EdgeImage(blur_image,radius,1.0,exception);
cristy3ed852e2009-09-05 21:47:34 +00004528 blur_image=DestroyImage(blur_image);
4529 if (dodge_image == (Image *) NULL)
4530 return((Image *) NULL);
cristye23ec9d2011-08-16 18:15:40 +00004531 (void) NormalizeImage(dodge_image,exception);
cristyb3e7c6c2011-07-24 01:43:55 +00004532 (void) NegateImage(dodge_image,MagickFalse,exception);
cristye941a752011-10-15 01:52:48 +00004533 (void) TransformImage(&dodge_image,(char *) NULL,"50%",exception);
cristy3ed852e2009-09-05 21:47:34 +00004534 sketch_image=CloneImage(image,0,0,MagickTrue,exception);
4535 if (sketch_image == (Image *) NULL)
4536 {
4537 dodge_image=DestroyImage(dodge_image);
4538 return((Image *) NULL);
4539 }
cristyfeb3e962012-03-29 17:25:55 +00004540 (void) CompositeImage(sketch_image,dodge_image,ColorDodgeCompositeOp,
cristy39172402012-03-30 13:04:39 +00004541 MagickTrue,0,0,exception);
cristy3ed852e2009-09-05 21:47:34 +00004542 dodge_image=DestroyImage(dodge_image);
4543 blend_image=CloneImage(image,0,0,MagickTrue,exception);
4544 if (blend_image == (Image *) NULL)
4545 {
4546 sketch_image=DestroyImage(sketch_image);
4547 return((Image *) NULL);
4548 }
4549 (void) SetImageArtifact(blend_image,"compose:args","20x80");
cristy39172402012-03-30 13:04:39 +00004550 (void) CompositeImage(sketch_image,blend_image,BlendCompositeOp,MagickTrue,
cristyfeb3e962012-03-29 17:25:55 +00004551 0,0,exception);
cristy3ed852e2009-09-05 21:47:34 +00004552 blend_image=DestroyImage(blend_image);
4553 return(sketch_image);
4554}
4555
4556/*
4557%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4558% %
4559% %
4560% %
4561% S o l a r i z e I m a g e %
4562% %
4563% %
4564% %
4565%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4566%
4567% SolarizeImage() applies a special effect to the image, similar to the effect
4568% achieved in a photo darkroom by selectively exposing areas of photo
4569% sensitive paper to light. Threshold ranges from 0 to QuantumRange and is a
4570% measure of the extent of the solarization.
4571%
4572% The format of the SolarizeImage method is:
4573%
cristy5cbc0162011-08-29 00:36:28 +00004574% MagickBooleanType SolarizeImage(Image *image,const double threshold,
4575% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004576%
4577% A description of each parameter follows:
4578%
4579% o image: the image.
4580%
4581% o threshold: Define the extent of the solarization.
4582%
cristy5cbc0162011-08-29 00:36:28 +00004583% o exception: return any errors or warnings in this structure.
4584%
cristy3ed852e2009-09-05 21:47:34 +00004585*/
4586MagickExport MagickBooleanType SolarizeImage(Image *image,
cristy5cbc0162011-08-29 00:36:28 +00004587 const double threshold,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004588{
4589#define SolarizeImageTag "Solarize/Image"
4590
cristyc4c8d132010-01-07 01:58:38 +00004591 CacheView
4592 *image_view;
4593
cristy3ed852e2009-09-05 21:47:34 +00004594 MagickBooleanType
4595 status;
4596
cristybb503372010-05-27 20:51:26 +00004597 MagickOffsetType
4598 progress;
4599
4600 ssize_t
4601 y;
4602
cristy3ed852e2009-09-05 21:47:34 +00004603 assert(image != (Image *) NULL);
4604 assert(image->signature == MagickSignature);
4605 if (image->debug != MagickFalse)
4606 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
4607 if (image->storage_class == PseudoClass)
4608 {
cristybb503372010-05-27 20:51:26 +00004609 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004610 i;
4611
4612 /*
4613 Solarize colormap.
4614 */
cristybb503372010-05-27 20:51:26 +00004615 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00004616 {
cristya19f1d72012-08-07 18:24:38 +00004617 if ((double) image->colormap[i].red > threshold)
cristy6e963d82012-06-19 15:23:24 +00004618 image->colormap[i].red=QuantumRange-image->colormap[i].red;
cristya19f1d72012-08-07 18:24:38 +00004619 if ((double) image->colormap[i].green > threshold)
cristy6e963d82012-06-19 15:23:24 +00004620 image->colormap[i].green=QuantumRange-
cristy3ed852e2009-09-05 21:47:34 +00004621 image->colormap[i].green;
cristya19f1d72012-08-07 18:24:38 +00004622 if ((double) image->colormap[i].blue > threshold)
cristy6e963d82012-06-19 15:23:24 +00004623 image->colormap[i].blue=QuantumRange-
cristy3ed852e2009-09-05 21:47:34 +00004624 image->colormap[i].blue;
4625 }
4626 }
4627 /*
4628 Solarize image.
4629 */
4630 status=MagickTrue;
4631 progress=0;
cristy4bc52022012-12-13 14:15:41 +00004632 image_view=AcquireAuthenticCacheView(image);
cristyb5d5f722009-11-04 03:03:49 +00004633#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00004634 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00004635 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00004636#endif
cristybb503372010-05-27 20:51:26 +00004637 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004638 {
cristybb503372010-05-27 20:51:26 +00004639 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004640 x;
4641
cristy4c08aed2011-07-01 19:47:50 +00004642 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00004643 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004644
4645 if (status == MagickFalse)
4646 continue;
cristy5cbc0162011-08-29 00:36:28 +00004647 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00004648 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004649 {
4650 status=MagickFalse;
4651 continue;
4652 }
cristybb503372010-05-27 20:51:26 +00004653 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004654 {
cristy76f512e2011-09-12 01:26:56 +00004655 register ssize_t
4656 i;
4657
cristy10a6c612012-01-29 21:41:05 +00004658 if (GetPixelMask(image,q) != 0)
4659 {
4660 q+=GetPixelChannels(image);
4661 continue;
4662 }
cristy76f512e2011-09-12 01:26:56 +00004663 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
4664 {
cristyabace412011-12-11 15:56:53 +00004665 PixelChannel
4666 channel;
4667
cristy76f512e2011-09-12 01:26:56 +00004668 PixelTrait
4669 traits;
4670
cristycf1296e2012-08-26 23:40:49 +00004671 channel=GetPixelChannelChannel(image,i);
4672 traits=GetPixelChannelTraits(image,channel);
cristy76f512e2011-09-12 01:26:56 +00004673 if ((traits == UndefinedPixelTrait) ||
4674 ((traits & CopyPixelTrait) != 0))
4675 continue;
cristya19f1d72012-08-07 18:24:38 +00004676 if ((double) q[i] > threshold)
cristy76f512e2011-09-12 01:26:56 +00004677 q[i]=QuantumRange-q[i];
4678 }
cristyed231572011-07-14 02:18:59 +00004679 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004680 }
4681 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
4682 status=MagickFalse;
4683 if (image->progress_monitor != (MagickProgressMonitor) NULL)
4684 {
4685 MagickBooleanType
4686 proceed;
4687
cristyb5d5f722009-11-04 03:03:49 +00004688#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00004689 #pragma omp critical (MagickCore_SolarizeImage)
cristy3ed852e2009-09-05 21:47:34 +00004690#endif
4691 proceed=SetImageProgress(image,SolarizeImageTag,progress++,image->rows);
4692 if (proceed == MagickFalse)
4693 status=MagickFalse;
4694 }
4695 }
4696 image_view=DestroyCacheView(image_view);
4697 return(status);
4698}
4699
4700/*
4701%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4702% %
4703% %
4704% %
4705% S t e g a n o I m a g e %
4706% %
4707% %
4708% %
4709%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4710%
4711% SteganoImage() hides a digital watermark within the image. Recover
4712% the hidden watermark later to prove that the authenticity of an image.
4713% Offset defines the start position within the image to hide the watermark.
4714%
4715% The format of the SteganoImage method is:
4716%
4717% Image *SteganoImage(const Image *image,Image *watermark,
4718% ExceptionInfo *exception)
4719%
4720% A description of each parameter follows:
4721%
4722% o image: the image.
4723%
4724% o watermark: the watermark image.
4725%
4726% o exception: return any errors or warnings in this structure.
4727%
4728*/
4729MagickExport Image *SteganoImage(const Image *image,const Image *watermark,
4730 ExceptionInfo *exception)
4731{
cristye1bf8ad2010-09-19 17:07:03 +00004732#define GetBit(alpha,i) ((((size_t) (alpha) >> (size_t) (i)) & 0x01) != 0)
cristy4c08aed2011-07-01 19:47:50 +00004733#define SetBit(alpha,i,set) (Quantum) ((set) != 0 ? (size_t) (alpha) \
cristyeaedf062010-05-29 22:36:02 +00004734 | (one << (size_t) (i)) : (size_t) (alpha) & ~(one << (size_t) (i)))
cristy3ed852e2009-09-05 21:47:34 +00004735#define SteganoImageTag "Stegano/Image"
4736
cristyb0d3bb92010-09-22 14:37:58 +00004737 CacheView
4738 *stegano_view,
4739 *watermark_view;
4740
cristy3ed852e2009-09-05 21:47:34 +00004741 Image
4742 *stegano_image;
4743
4744 int
4745 c;
4746
cristy3ed852e2009-09-05 21:47:34 +00004747 MagickBooleanType
4748 status;
4749
cristy101ab702011-10-13 13:06:32 +00004750 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004751 pixel;
4752
cristy4c08aed2011-07-01 19:47:50 +00004753 register Quantum
cristy3ed852e2009-09-05 21:47:34 +00004754 *q;
4755
cristye1bf8ad2010-09-19 17:07:03 +00004756 register ssize_t
4757 x;
4758
cristybb503372010-05-27 20:51:26 +00004759 size_t
cristyeaedf062010-05-29 22:36:02 +00004760 depth,
4761 one;
cristy3ed852e2009-09-05 21:47:34 +00004762
cristye1bf8ad2010-09-19 17:07:03 +00004763 ssize_t
4764 i,
4765 j,
4766 k,
4767 y;
4768
cristy3ed852e2009-09-05 21:47:34 +00004769 /*
4770 Initialize steganographic image attributes.
4771 */
4772 assert(image != (const Image *) NULL);
4773 assert(image->signature == MagickSignature);
4774 if (image->debug != MagickFalse)
4775 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
4776 assert(watermark != (const Image *) NULL);
4777 assert(watermark->signature == MagickSignature);
4778 assert(exception != (ExceptionInfo *) NULL);
4779 assert(exception->signature == MagickSignature);
cristyeaedf062010-05-29 22:36:02 +00004780 one=1UL;
cristy3ed852e2009-09-05 21:47:34 +00004781 stegano_image=CloneImage(image,0,0,MagickTrue,exception);
4782 if (stegano_image == (Image *) NULL)
4783 return((Image *) NULL);
cristyf61b1832012-04-01 01:38:19 +00004784 stegano_image->depth=MAGICKCORE_QUANTUM_DEPTH;
cristy574cc262011-08-05 01:23:58 +00004785 if (SetImageStorageClass(stegano_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00004786 {
cristy3ed852e2009-09-05 21:47:34 +00004787 stegano_image=DestroyImage(stegano_image);
4788 return((Image *) NULL);
4789 }
cristy3ed852e2009-09-05 21:47:34 +00004790 /*
4791 Hide watermark in low-order bits of image.
4792 */
4793 c=0;
4794 i=0;
4795 j=0;
4796 depth=stegano_image->depth;
cristyf61b1832012-04-01 01:38:19 +00004797 k=stegano_image->offset;
cristyda16f162011-02-19 23:52:17 +00004798 status=MagickTrue;
cristy4bc52022012-12-13 14:15:41 +00004799 watermark_view=AcquireVirtualCacheView(watermark);
4800 stegano_view=AcquireAuthenticCacheView(stegano_image);
cristybb503372010-05-27 20:51:26 +00004801 for (i=(ssize_t) depth-1; (i >= 0) && (j < (ssize_t) depth); i--)
cristy3ed852e2009-09-05 21:47:34 +00004802 {
cristybb503372010-05-27 20:51:26 +00004803 for (y=0; (y < (ssize_t) watermark->rows) && (j < (ssize_t) depth); y++)
cristy3ed852e2009-09-05 21:47:34 +00004804 {
cristybb503372010-05-27 20:51:26 +00004805 for (x=0; (x < (ssize_t) watermark->columns) && (j < (ssize_t) depth); x++)
cristy3ed852e2009-09-05 21:47:34 +00004806 {
cristy1707c6c2012-01-18 23:30:54 +00004807 ssize_t
4808 offset;
4809
cristyf05d4942012-03-17 16:26:09 +00004810 (void) GetOneCacheViewVirtualPixelInfo(watermark_view,x,y,&pixel,
cristyda1f9c12011-10-02 21:39:49 +00004811 exception);
cristy1707c6c2012-01-18 23:30:54 +00004812 offset=k/(ssize_t) stegano_image->columns;
4813 if (offset >= (ssize_t) stegano_image->rows)
cristy3ed852e2009-09-05 21:47:34 +00004814 break;
cristyb0d3bb92010-09-22 14:37:58 +00004815 q=GetCacheViewAuthenticPixels(stegano_view,k % (ssize_t)
4816 stegano_image->columns,k/(ssize_t) stegano_image->columns,1,1,
4817 exception);
cristyacd2ed22011-08-30 01:44:23 +00004818 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004819 break;
4820 switch (c)
4821 {
4822 case 0:
4823 {
cristyf61b1832012-04-01 01:38:19 +00004824 SetPixelRed(stegano_image,SetBit(GetPixelRed(stegano_image,q),j,
4825 GetBit(GetPixelInfoIntensity(&pixel),i)),q);
cristy3ed852e2009-09-05 21:47:34 +00004826 break;
4827 }
4828 case 1:
4829 {
cristyf61b1832012-04-01 01:38:19 +00004830 SetPixelGreen(stegano_image,SetBit(GetPixelGreen(stegano_image,q),j,
4831 GetBit(GetPixelInfoIntensity(&pixel),i)),q);
cristy3ed852e2009-09-05 21:47:34 +00004832 break;
4833 }
4834 case 2:
4835 {
cristyf61b1832012-04-01 01:38:19 +00004836 SetPixelBlue(stegano_image,SetBit(GetPixelBlue(stegano_image,q),j,
4837 GetBit(GetPixelInfoIntensity(&pixel),i)),q);
cristy3ed852e2009-09-05 21:47:34 +00004838 break;
4839 }
4840 }
cristyb0d3bb92010-09-22 14:37:58 +00004841 if (SyncCacheViewAuthenticPixels(stegano_view,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00004842 break;
4843 c++;
4844 if (c == 3)
4845 c=0;
4846 k++;
cristybb503372010-05-27 20:51:26 +00004847 if (k == (ssize_t) (stegano_image->columns*stegano_image->columns))
cristy3ed852e2009-09-05 21:47:34 +00004848 k=0;
cristyf61b1832012-04-01 01:38:19 +00004849 if (k == stegano_image->offset)
cristy3ed852e2009-09-05 21:47:34 +00004850 j++;
4851 }
4852 }
cristy8b27a6d2010-02-14 03:31:15 +00004853 if (image->progress_monitor != (MagickProgressMonitor) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004854 {
cristy8b27a6d2010-02-14 03:31:15 +00004855 MagickBooleanType
4856 proceed;
4857
4858 proceed=SetImageProgress(image,SteganoImageTag,(MagickOffsetType)
4859 (depth-i),depth);
4860 if (proceed == MagickFalse)
4861 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00004862 }
4863 }
cristyb0d3bb92010-09-22 14:37:58 +00004864 stegano_view=DestroyCacheView(stegano_view);
4865 watermark_view=DestroyCacheView(watermark_view);
cristyda16f162011-02-19 23:52:17 +00004866 if (status == MagickFalse)
4867 {
4868 stegano_image=DestroyImage(stegano_image);
4869 return((Image *) NULL);
4870 }
cristy3ed852e2009-09-05 21:47:34 +00004871 return(stegano_image);
4872}
4873
4874/*
4875%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4876% %
4877% %
4878% %
4879% S t e r e o A n a g l y p h I m a g e %
4880% %
4881% %
4882% %
4883%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4884%
4885% StereoAnaglyphImage() combines two images and produces a single image that
4886% is the composite of a left and right image of a stereo pair. Special
4887% red-green stereo glasses are required to view this effect.
4888%
4889% The format of the StereoAnaglyphImage method is:
4890%
4891% Image *StereoImage(const Image *left_image,const Image *right_image,
4892% ExceptionInfo *exception)
4893% Image *StereoAnaglyphImage(const Image *left_image,
cristybb503372010-05-27 20:51:26 +00004894% const Image *right_image,const ssize_t x_offset,const ssize_t y_offset,
cristy3ed852e2009-09-05 21:47:34 +00004895% ExceptionInfo *exception)
4896%
4897% A description of each parameter follows:
4898%
4899% o left_image: the left image.
4900%
4901% o right_image: the right image.
4902%
4903% o exception: return any errors or warnings in this structure.
4904%
4905% o x_offset: amount, in pixels, by which the left image is offset to the
4906% right of the right image.
4907%
4908% o y_offset: amount, in pixels, by which the left image is offset to the
4909% bottom of the right image.
4910%
4911%
4912*/
4913MagickExport Image *StereoImage(const Image *left_image,
4914 const Image *right_image,ExceptionInfo *exception)
4915{
4916 return(StereoAnaglyphImage(left_image,right_image,0,0,exception));
4917}
4918
4919MagickExport Image *StereoAnaglyphImage(const Image *left_image,
cristybb503372010-05-27 20:51:26 +00004920 const Image *right_image,const ssize_t x_offset,const ssize_t y_offset,
cristy3ed852e2009-09-05 21:47:34 +00004921 ExceptionInfo *exception)
4922{
4923#define StereoImageTag "Stereo/Image"
4924
4925 const Image
4926 *image;
4927
4928 Image
4929 *stereo_image;
4930
cristy3ed852e2009-09-05 21:47:34 +00004931 MagickBooleanType
4932 status;
4933
cristy9d314ff2011-03-09 01:30:28 +00004934 ssize_t
4935 y;
4936
cristy3ed852e2009-09-05 21:47:34 +00004937 assert(left_image != (const Image *) NULL);
4938 assert(left_image->signature == MagickSignature);
4939 if (left_image->debug != MagickFalse)
4940 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
4941 left_image->filename);
4942 assert(right_image != (const Image *) NULL);
4943 assert(right_image->signature == MagickSignature);
4944 assert(exception != (ExceptionInfo *) NULL);
4945 assert(exception->signature == MagickSignature);
4946 assert(right_image != (const Image *) NULL);
4947 image=left_image;
4948 if ((left_image->columns != right_image->columns) ||
4949 (left_image->rows != right_image->rows))
4950 ThrowImageException(ImageError,"LeftAndRightImageSizesDiffer");
4951 /*
4952 Initialize stereo image attributes.
4953 */
4954 stereo_image=CloneImage(left_image,left_image->columns,left_image->rows,
4955 MagickTrue,exception);
4956 if (stereo_image == (Image *) NULL)
4957 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00004958 if (SetImageStorageClass(stereo_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00004959 {
cristy3ed852e2009-09-05 21:47:34 +00004960 stereo_image=DestroyImage(stereo_image);
4961 return((Image *) NULL);
4962 }
cristy079c78d2012-07-03 11:53:48 +00004963 (void) SetImageColorspace(stereo_image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +00004964 /*
4965 Copy left image to red channel and right image to blue channel.
4966 */
cristyda16f162011-02-19 23:52:17 +00004967 status=MagickTrue;
cristybb503372010-05-27 20:51:26 +00004968 for (y=0; y < (ssize_t) stereo_image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004969 {
cristy4c08aed2011-07-01 19:47:50 +00004970 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00004971 *restrict p,
4972 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004973
cristybb503372010-05-27 20:51:26 +00004974 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004975 x;
4976
cristy4c08aed2011-07-01 19:47:50 +00004977 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00004978 *restrict r;
cristy3ed852e2009-09-05 21:47:34 +00004979
4980 p=GetVirtualPixels(left_image,-x_offset,y-y_offset,image->columns,1,
4981 exception);
4982 q=GetVirtualPixels(right_image,0,y,right_image->columns,1,exception);
4983 r=QueueAuthenticPixels(stereo_image,0,y,stereo_image->columns,1,exception);
cristy76f512e2011-09-12 01:26:56 +00004984 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL) ||
4985 (r == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00004986 break;
cristybb503372010-05-27 20:51:26 +00004987 for (x=0; x < (ssize_t) stereo_image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004988 {
cristy4c08aed2011-07-01 19:47:50 +00004989 SetPixelRed(image,GetPixelRed(left_image,p),r);
cristy76f512e2011-09-12 01:26:56 +00004990 SetPixelGreen(image,GetPixelGreen(right_image,q),r);
4991 SetPixelBlue(image,GetPixelBlue(right_image,q),r);
4992 if ((GetPixelAlphaTraits(stereo_image) & CopyPixelTrait) != 0)
4993 SetPixelAlpha(image,(GetPixelAlpha(left_image,p)+
4994 GetPixelAlpha(right_image,q))/2,r);
cristyed231572011-07-14 02:18:59 +00004995 p+=GetPixelChannels(left_image);
cristy76f512e2011-09-12 01:26:56 +00004996 q+=GetPixelChannels(right_image);
4997 r+=GetPixelChannels(stereo_image);
cristy3ed852e2009-09-05 21:47:34 +00004998 }
4999 if (SyncAuthenticPixels(stereo_image,exception) == MagickFalse)
5000 break;
cristy8b27a6d2010-02-14 03:31:15 +00005001 if (image->progress_monitor != (MagickProgressMonitor) NULL)
cristy3ed852e2009-09-05 21:47:34 +00005002 {
cristy8b27a6d2010-02-14 03:31:15 +00005003 MagickBooleanType
5004 proceed;
5005
cristybb503372010-05-27 20:51:26 +00005006 proceed=SetImageProgress(image,StereoImageTag,(MagickOffsetType) y,
5007 stereo_image->rows);
cristy8b27a6d2010-02-14 03:31:15 +00005008 if (proceed == MagickFalse)
5009 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00005010 }
5011 }
cristyda16f162011-02-19 23:52:17 +00005012 if (status == MagickFalse)
5013 {
5014 stereo_image=DestroyImage(stereo_image);
5015 return((Image *) NULL);
5016 }
cristy3ed852e2009-09-05 21:47:34 +00005017 return(stereo_image);
5018}
5019
5020/*
5021%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5022% %
5023% %
5024% %
5025% S w i r l I m a g e %
5026% %
5027% %
5028% %
5029%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5030%
5031% SwirlImage() swirls the pixels about the center of the image, where
5032% degrees indicates the sweep of the arc through which each pixel is moved.
5033% You get a more dramatic effect as the degrees move from 1 to 360.
5034%
5035% The format of the SwirlImage method is:
5036%
5037% Image *SwirlImage(const Image *image,double degrees,
cristy76f512e2011-09-12 01:26:56 +00005038% const PixelInterpolateMethod method,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005039%
5040% A description of each parameter follows:
5041%
5042% o image: the image.
5043%
5044% o degrees: Define the tightness of the swirling effect.
5045%
cristy76f512e2011-09-12 01:26:56 +00005046% o method: the pixel interpolation method.
5047%
cristy3ed852e2009-09-05 21:47:34 +00005048% o exception: return any errors or warnings in this structure.
5049%
5050*/
5051MagickExport Image *SwirlImage(const Image *image,double degrees,
cristy76f512e2011-09-12 01:26:56 +00005052 const PixelInterpolateMethod method,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005053{
5054#define SwirlImageTag "Swirl/Image"
5055
cristyfa112112010-01-04 17:48:07 +00005056 CacheView
5057 *image_view,
5058 *swirl_view;
5059
cristy3ed852e2009-09-05 21:47:34 +00005060 Image
5061 *swirl_image;
5062
cristy3ed852e2009-09-05 21:47:34 +00005063 MagickBooleanType
5064 status;
5065
cristybb503372010-05-27 20:51:26 +00005066 MagickOffsetType
5067 progress;
5068
cristya19f1d72012-08-07 18:24:38 +00005069 double
cristy3ed852e2009-09-05 21:47:34 +00005070 radius;
5071
5072 PointInfo
5073 center,
5074 scale;
5075
cristybb503372010-05-27 20:51:26 +00005076 ssize_t
5077 y;
5078
cristy3ed852e2009-09-05 21:47:34 +00005079 /*
5080 Initialize swirl image attributes.
5081 */
5082 assert(image != (const Image *) NULL);
5083 assert(image->signature == MagickSignature);
5084 if (image->debug != MagickFalse)
5085 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
5086 assert(exception != (ExceptionInfo *) NULL);
5087 assert(exception->signature == MagickSignature);
cristy76f512e2011-09-12 01:26:56 +00005088 swirl_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +00005089 if (swirl_image == (Image *) NULL)
5090 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00005091 if (SetImageStorageClass(swirl_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00005092 {
cristy3ed852e2009-09-05 21:47:34 +00005093 swirl_image=DestroyImage(swirl_image);
5094 return((Image *) NULL);
5095 }
cristy4c08aed2011-07-01 19:47:50 +00005096 if (swirl_image->background_color.alpha != OpaqueAlpha)
cristy8a46d822012-08-28 23:32:39 +00005097 swirl_image->alpha_trait=BlendPixelTrait;
cristy3ed852e2009-09-05 21:47:34 +00005098 /*
5099 Compute scaling factor.
5100 */
5101 center.x=(double) image->columns/2.0;
5102 center.y=(double) image->rows/2.0;
5103 radius=MagickMax(center.x,center.y);
5104 scale.x=1.0;
5105 scale.y=1.0;
5106 if (image->columns > image->rows)
5107 scale.y=(double) image->columns/(double) image->rows;
5108 else
5109 if (image->columns < image->rows)
5110 scale.x=(double) image->rows/(double) image->columns;
5111 degrees=(double) DegreesToRadians(degrees);
5112 /*
5113 Swirl image.
5114 */
5115 status=MagickTrue;
5116 progress=0;
cristy4bc52022012-12-13 14:15:41 +00005117 image_view=AcquireVirtualCacheView(image);
5118 swirl_view=AcquireAuthenticCacheView(swirl_image);
cristyb5d5f722009-11-04 03:03:49 +00005119#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00005120 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00005121 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00005122#endif
cristybb503372010-05-27 20:51:26 +00005123 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00005124 {
cristya19f1d72012-08-07 18:24:38 +00005125 double
cristy3ed852e2009-09-05 21:47:34 +00005126 distance;
5127
5128 PointInfo
5129 delta;
5130
cristy6d188022011-09-12 13:23:33 +00005131 register const Quantum
5132 *restrict p;
5133
cristybb503372010-05-27 20:51:26 +00005134 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005135 x;
5136
cristy4c08aed2011-07-01 19:47:50 +00005137 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00005138 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00005139
5140 if (status == MagickFalse)
5141 continue;
cristy6d188022011-09-12 13:23:33 +00005142 p=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristy1707c6c2012-01-18 23:30:54 +00005143 q=QueueCacheViewAuthenticPixels(swirl_view,0,y,swirl_image->columns,1,
cristy3ed852e2009-09-05 21:47:34 +00005144 exception);
cristy6d188022011-09-12 13:23:33 +00005145 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00005146 {
5147 status=MagickFalse;
5148 continue;
5149 }
cristy3ed852e2009-09-05 21:47:34 +00005150 delta.y=scale.y*(double) (y-center.y);
cristybb503372010-05-27 20:51:26 +00005151 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00005152 {
5153 /*
5154 Determine if the pixel is within an ellipse.
5155 */
cristy10a6c612012-01-29 21:41:05 +00005156 if (GetPixelMask(image,p) != 0)
5157 {
5158 p+=GetPixelChannels(image);
5159 q+=GetPixelChannels(swirl_image);
5160 continue;
5161 }
cristy3ed852e2009-09-05 21:47:34 +00005162 delta.x=scale.x*(double) (x-center.x);
5163 distance=delta.x*delta.x+delta.y*delta.y;
cristy6d188022011-09-12 13:23:33 +00005164 if (distance >= (radius*radius))
5165 {
cristy1707c6c2012-01-18 23:30:54 +00005166 register ssize_t
5167 i;
5168
cristy6d188022011-09-12 13:23:33 +00005169 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
cristy1707c6c2012-01-18 23:30:54 +00005170 {
5171 PixelChannel
5172 channel;
5173
5174 PixelTrait
5175 swirl_traits,
5176 traits;
5177
cristycf1296e2012-08-26 23:40:49 +00005178 channel=GetPixelChannelChannel(image,i);
5179 traits=GetPixelChannelTraits(image,channel);
5180 swirl_traits=GetPixelChannelTraits(swirl_image,channel);
cristy1707c6c2012-01-18 23:30:54 +00005181 if ((traits == UndefinedPixelTrait) ||
5182 (swirl_traits == UndefinedPixelTrait))
5183 continue;
5184 SetPixelChannel(swirl_image,channel,p[i],q);
5185 }
cristy6d188022011-09-12 13:23:33 +00005186 }
5187 else
cristy3ed852e2009-09-05 21:47:34 +00005188 {
cristya19f1d72012-08-07 18:24:38 +00005189 double
cristy3ed852e2009-09-05 21:47:34 +00005190 cosine,
5191 factor,
5192 sine;
5193
5194 /*
5195 Swirl the pixel.
5196 */
5197 factor=1.0-sqrt((double) distance)/radius;
5198 sine=sin((double) (degrees*factor*factor));
5199 cosine=cos((double) (degrees*factor*factor));
cristy76f512e2011-09-12 01:26:56 +00005200 status=InterpolatePixelChannels(image,image_view,swirl_image,method,
5201 ((cosine*delta.x-sine*delta.y)/scale.x+center.x),(double)
5202 ((sine*delta.x+cosine*delta.y)/scale.y+center.y),q,exception);
cristy3ed852e2009-09-05 21:47:34 +00005203 }
cristy6d188022011-09-12 13:23:33 +00005204 p+=GetPixelChannels(image);
cristyed231572011-07-14 02:18:59 +00005205 q+=GetPixelChannels(swirl_image);
cristy3ed852e2009-09-05 21:47:34 +00005206 }
5207 if (SyncCacheViewAuthenticPixels(swirl_view,exception) == MagickFalse)
5208 status=MagickFalse;
5209 if (image->progress_monitor != (MagickProgressMonitor) NULL)
5210 {
5211 MagickBooleanType
5212 proceed;
5213
cristyb5d5f722009-11-04 03:03:49 +00005214#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00005215 #pragma omp critical (MagickCore_SwirlImage)
cristy3ed852e2009-09-05 21:47:34 +00005216#endif
5217 proceed=SetImageProgress(image,SwirlImageTag,progress++,image->rows);
5218 if (proceed == MagickFalse)
5219 status=MagickFalse;
5220 }
5221 }
5222 swirl_view=DestroyCacheView(swirl_view);
5223 image_view=DestroyCacheView(image_view);
cristy3ed852e2009-09-05 21:47:34 +00005224 if (status == MagickFalse)
5225 swirl_image=DestroyImage(swirl_image);
5226 return(swirl_image);
5227}
5228
5229/*
5230%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5231% %
5232% %
5233% %
5234% T i n t I m a g e %
5235% %
5236% %
5237% %
5238%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5239%
5240% TintImage() applies a color vector to each pixel in the image. The length
5241% of the vector is 0 for black and white and at its maximum for the midtones.
5242% The vector weighting function is f(x)=(1-(4.0*((x-0.5)*(x-0.5))))
5243%
5244% The format of the TintImage method is:
5245%
cristyb817c3f2011-10-03 14:00:35 +00005246% Image *TintImage(const Image *image,const char *blend,
cristy28474bf2011-09-11 23:32:52 +00005247% const PixelInfo *tint,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005248%
5249% A description of each parameter follows:
5250%
5251% o image: the image.
5252%
cristyb817c3f2011-10-03 14:00:35 +00005253% o blend: A color value used for tinting.
cristy3ed852e2009-09-05 21:47:34 +00005254%
5255% o tint: A color value used for tinting.
5256%
5257% o exception: return any errors or warnings in this structure.
5258%
5259*/
cristyb817c3f2011-10-03 14:00:35 +00005260MagickExport Image *TintImage(const Image *image,const char *blend,
cristy28474bf2011-09-11 23:32:52 +00005261 const PixelInfo *tint,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005262{
5263#define TintImageTag "Tint/Image"
5264
cristyc4c8d132010-01-07 01:58:38 +00005265 CacheView
5266 *image_view,
5267 *tint_view;
5268
cristy3ed852e2009-09-05 21:47:34 +00005269 GeometryInfo
5270 geometry_info;
5271
5272 Image
5273 *tint_image;
5274
cristy3ed852e2009-09-05 21:47:34 +00005275 MagickBooleanType
5276 status;
5277
cristybb503372010-05-27 20:51:26 +00005278 MagickOffsetType
5279 progress;
cristy3ed852e2009-09-05 21:47:34 +00005280
cristya19f1d72012-08-07 18:24:38 +00005281 double
cristy28474bf2011-09-11 23:32:52 +00005282 intensity;
5283
cristy4c08aed2011-07-01 19:47:50 +00005284 PixelInfo
cristy1707c6c2012-01-18 23:30:54 +00005285 color_vector;
cristy3ed852e2009-09-05 21:47:34 +00005286
cristybb503372010-05-27 20:51:26 +00005287 MagickStatusType
5288 flags;
5289
5290 ssize_t
5291 y;
5292
cristy3ed852e2009-09-05 21:47:34 +00005293 /*
5294 Allocate tint image.
5295 */
5296 assert(image != (const Image *) NULL);
5297 assert(image->signature == MagickSignature);
5298 if (image->debug != MagickFalse)
5299 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
5300 assert(exception != (ExceptionInfo *) NULL);
5301 assert(exception->signature == MagickSignature);
5302 tint_image=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
5303 if (tint_image == (Image *) NULL)
5304 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00005305 if (SetImageStorageClass(tint_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00005306 {
cristy3ed852e2009-09-05 21:47:34 +00005307 tint_image=DestroyImage(tint_image);
5308 return((Image *) NULL);
5309 }
cristy71aac542012-05-18 12:06:35 +00005310 if ((IsGrayColorspace(image->colorspace) != MagickFalse) &&
5311 (IsPixelInfoGray(tint) == MagickFalse))
cristyb09db112012-07-11 12:04:31 +00005312 (void) SetImageColorspace(tint_image,RGBColorspace,exception);
cristyaed9c382011-10-03 17:54:21 +00005313 if (blend == (const char *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00005314 return(tint_image);
5315 /*
5316 Determine RGB values of the color.
5317 */
cristy1707c6c2012-01-18 23:30:54 +00005318 GetPixelInfo(image,&color_vector);
cristyb817c3f2011-10-03 14:00:35 +00005319 flags=ParseGeometry(blend,&geometry_info);
cristy1707c6c2012-01-18 23:30:54 +00005320 color_vector.red=geometry_info.rho;
5321 color_vector.green=geometry_info.rho;
5322 color_vector.blue=geometry_info.rho;
5323 color_vector.alpha=OpaqueAlpha;
cristy3ed852e2009-09-05 21:47:34 +00005324 if ((flags & SigmaValue) != 0)
cristy1707c6c2012-01-18 23:30:54 +00005325 color_vector.green=geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +00005326 if ((flags & XiValue) != 0)
cristy1707c6c2012-01-18 23:30:54 +00005327 color_vector.blue=geometry_info.xi;
cristyb817c3f2011-10-03 14:00:35 +00005328 if ((flags & PsiValue) != 0)
cristy1707c6c2012-01-18 23:30:54 +00005329 color_vector.alpha=geometry_info.psi;
cristy76f512e2011-09-12 01:26:56 +00005330 if (image->colorspace == CMYKColorspace)
5331 {
cristy1707c6c2012-01-18 23:30:54 +00005332 color_vector.black=geometry_info.rho;
cristy76f512e2011-09-12 01:26:56 +00005333 if ((flags & PsiValue) != 0)
cristy1707c6c2012-01-18 23:30:54 +00005334 color_vector.black=geometry_info.psi;
cristy76f512e2011-09-12 01:26:56 +00005335 if ((flags & ChiValue) != 0)
cristy1707c6c2012-01-18 23:30:54 +00005336 color_vector.alpha=geometry_info.chi;
cristy76f512e2011-09-12 01:26:56 +00005337 }
cristya19f1d72012-08-07 18:24:38 +00005338 intensity=(double) GetPixelInfoIntensity(tint);
5339 color_vector.red=(double) (color_vector.red*tint->red/100.0-
cristy1707c6c2012-01-18 23:30:54 +00005340 intensity);
cristya19f1d72012-08-07 18:24:38 +00005341 color_vector.green=(double) (color_vector.green*tint->green/100.0-
cristy1707c6c2012-01-18 23:30:54 +00005342 intensity);
cristya19f1d72012-08-07 18:24:38 +00005343 color_vector.blue=(double) (color_vector.blue*tint->blue/100.0-
cristy1707c6c2012-01-18 23:30:54 +00005344 intensity);
cristya19f1d72012-08-07 18:24:38 +00005345 color_vector.black=(double) (color_vector.black*tint->black/100.0-
cristy1707c6c2012-01-18 23:30:54 +00005346 intensity);
cristya19f1d72012-08-07 18:24:38 +00005347 color_vector.alpha=(double) (color_vector.alpha*tint->alpha/100.0-
cristy1707c6c2012-01-18 23:30:54 +00005348 intensity);
cristy3ed852e2009-09-05 21:47:34 +00005349 /*
5350 Tint image.
5351 */
5352 status=MagickTrue;
5353 progress=0;
cristy4bc52022012-12-13 14:15:41 +00005354 image_view=AcquireVirtualCacheView(image);
5355 tint_view=AcquireAuthenticCacheView(tint_image);
cristyb5d5f722009-11-04 03:03:49 +00005356#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00005357 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00005358 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00005359#endif
cristybb503372010-05-27 20:51:26 +00005360 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00005361 {
cristy4c08aed2011-07-01 19:47:50 +00005362 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00005363 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00005364
cristy4c08aed2011-07-01 19:47:50 +00005365 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00005366 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00005367
cristy6b91acb2011-04-19 12:23:54 +00005368 register ssize_t
5369 x;
5370
cristy3ed852e2009-09-05 21:47:34 +00005371 if (status == MagickFalse)
5372 continue;
5373 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
5374 q=QueueCacheViewAuthenticPixels(tint_view,0,y,tint_image->columns,1,
5375 exception);
cristy4c08aed2011-07-01 19:47:50 +00005376 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00005377 {
5378 status=MagickFalse;
5379 continue;
5380 }
cristybb503372010-05-27 20:51:26 +00005381 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00005382 {
cristy4c08aed2011-07-01 19:47:50 +00005383 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00005384 pixel;
5385
cristya19f1d72012-08-07 18:24:38 +00005386 double
cristy3ed852e2009-09-05 21:47:34 +00005387 weight;
5388
cristy1707c6c2012-01-18 23:30:54 +00005389 register ssize_t
5390 i;
5391
5392 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
5393 {
5394 PixelChannel
5395 channel;
5396
5397 PixelTrait
5398 tint_traits,
5399 traits;
5400
cristycf1296e2012-08-26 23:40:49 +00005401 channel=GetPixelChannelChannel(image,i);
5402 traits=GetPixelChannelTraits(image,channel);
5403 tint_traits=GetPixelChannelTraits(tint_image,channel);
cristy1707c6c2012-01-18 23:30:54 +00005404 if ((traits == UndefinedPixelTrait) ||
5405 (tint_traits == UndefinedPixelTrait))
5406 continue;
cristy1eced092012-08-10 23:10:56 +00005407 if (((tint_traits & CopyPixelTrait) != 0) ||
5408 (GetPixelMask(image,p) != 0))
cristy1707c6c2012-01-18 23:30:54 +00005409 {
5410 SetPixelChannel(tint_image,channel,p[i],q);
5411 continue;
5412 }
5413 }
5414 GetPixelInfo(image,&pixel);
5415 weight=QuantumScale*GetPixelRed(image,p)-0.5;
cristy1eced092012-08-10 23:10:56 +00005416 pixel.red=(double) GetPixelRed(image,p)+color_vector.red*(1.0-(4.0*
5417 (weight*weight)));
cristy1707c6c2012-01-18 23:30:54 +00005418 weight=QuantumScale*GetPixelGreen(image,p)-0.5;
cristy1eced092012-08-10 23:10:56 +00005419 pixel.green=(double) GetPixelGreen(image,p)+color_vector.green*(1.0-(4.0*
5420 (weight*weight)));
cristy1707c6c2012-01-18 23:30:54 +00005421 weight=QuantumScale*GetPixelBlue(image,p)-0.5;
cristy1eced092012-08-10 23:10:56 +00005422 pixel.blue=(double) GetPixelBlue(image,p)+color_vector.blue*(1.0-(4.0*
5423 (weight*weight)));
cristy1707c6c2012-01-18 23:30:54 +00005424 weight=QuantumScale*GetPixelBlack(image,p)-0.5;
cristy1eced092012-08-10 23:10:56 +00005425 pixel.black=(double) GetPixelBlack(image,p)+color_vector.black*(1.0-(4.0*
5426 (weight*weight)));
cristy1707c6c2012-01-18 23:30:54 +00005427 SetPixelInfoPixel(tint_image,&pixel,q);
cristyed231572011-07-14 02:18:59 +00005428 p+=GetPixelChannels(image);
5429 q+=GetPixelChannels(tint_image);
cristy3ed852e2009-09-05 21:47:34 +00005430 }
5431 if (SyncCacheViewAuthenticPixels(tint_view,exception) == MagickFalse)
5432 status=MagickFalse;
5433 if (image->progress_monitor != (MagickProgressMonitor) NULL)
5434 {
5435 MagickBooleanType
5436 proceed;
5437
cristyb5d5f722009-11-04 03:03:49 +00005438#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00005439 #pragma omp critical (MagickCore_TintImage)
cristy3ed852e2009-09-05 21:47:34 +00005440#endif
5441 proceed=SetImageProgress(image,TintImageTag,progress++,image->rows);
5442 if (proceed == MagickFalse)
5443 status=MagickFalse;
5444 }
5445 }
5446 tint_view=DestroyCacheView(tint_view);
5447 image_view=DestroyCacheView(image_view);
5448 if (status == MagickFalse)
5449 tint_image=DestroyImage(tint_image);
5450 return(tint_image);
5451}
5452
5453/*
5454%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5455% %
5456% %
5457% %
5458% V i g n e t t e I m a g e %
5459% %
5460% %
5461% %
5462%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5463%
5464% VignetteImage() softens the edges of the image in vignette style.
5465%
5466% The format of the VignetteImage method is:
5467%
5468% Image *VignetteImage(const Image *image,const double radius,
cristyaa2c16c2012-03-25 22:21:35 +00005469% const double sigma,const ssize_t x,const ssize_t y,
cristy05c0c9a2011-09-05 23:16:13 +00005470% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005471%
5472% A description of each parameter follows:
5473%
5474% o image: the image.
5475%
5476% o radius: the radius of the pixel neighborhood.
5477%
5478% o sigma: the standard deviation of the Gaussian, in pixels.
5479%
5480% o x, y: Define the x and y ellipse offset.
5481%
5482% o exception: return any errors or warnings in this structure.
5483%
5484*/
5485MagickExport Image *VignetteImage(const Image *image,const double radius,
cristyaa2c16c2012-03-25 22:21:35 +00005486 const double sigma,const ssize_t x,const ssize_t y,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005487{
5488 char
5489 ellipse[MaxTextExtent];
5490
5491 DrawInfo
5492 *draw_info;
5493
5494 Image
5495 *canvas_image,
5496 *blur_image,
5497 *oval_image,
5498 *vignette_image;
5499
5500 assert(image != (Image *) NULL);
5501 assert(image->signature == MagickSignature);
5502 if (image->debug != MagickFalse)
5503 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
5504 assert(exception != (ExceptionInfo *) NULL);
5505 assert(exception->signature == MagickSignature);
5506 canvas_image=CloneImage(image,0,0,MagickTrue,exception);
5507 if (canvas_image == (Image *) NULL)
5508 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00005509 if (SetImageStorageClass(canvas_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00005510 {
cristy3ed852e2009-09-05 21:47:34 +00005511 canvas_image=DestroyImage(canvas_image);
5512 return((Image *) NULL);
5513 }
cristy8a46d822012-08-28 23:32:39 +00005514 canvas_image->alpha_trait=BlendPixelTrait;
cristy98621462011-12-31 22:31:11 +00005515 oval_image=CloneImage(canvas_image,canvas_image->columns,canvas_image->rows,
5516 MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +00005517 if (oval_image == (Image *) NULL)
5518 {
5519 canvas_image=DestroyImage(canvas_image);
5520 return((Image *) NULL);
5521 }
cristy9950d572011-10-01 18:22:35 +00005522 (void) QueryColorCompliance("#000000",AllCompliance,
5523 &oval_image->background_color,exception);
cristyea1a8aa2011-10-20 13:24:06 +00005524 (void) SetImageBackgroundColor(oval_image,exception);
cristy3ed852e2009-09-05 21:47:34 +00005525 draw_info=CloneDrawInfo((const ImageInfo *) NULL,(const DrawInfo *) NULL);
cristy9950d572011-10-01 18:22:35 +00005526 (void) QueryColorCompliance("#ffffff",AllCompliance,&draw_info->fill,
5527 exception);
5528 (void) QueryColorCompliance("#ffffff",AllCompliance,&draw_info->stroke,
5529 exception);
cristy1707c6c2012-01-18 23:30:54 +00005530 (void) FormatLocaleString(ellipse,MaxTextExtent,"ellipse %g,%g,%g,%g,"
5531 "0.0,360.0",image->columns/2.0,image->rows/2.0,image->columns/2.0-x,
5532 image->rows/2.0-y);
cristy3ed852e2009-09-05 21:47:34 +00005533 draw_info->primitive=AcquireString(ellipse);
cristy018f07f2011-09-04 21:15:19 +00005534 (void) DrawImage(oval_image,draw_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00005535 draw_info=DestroyDrawInfo(draw_info);
cristyaa2c16c2012-03-25 22:21:35 +00005536 blur_image=BlurImage(oval_image,radius,sigma,exception);
cristy3ed852e2009-09-05 21:47:34 +00005537 oval_image=DestroyImage(oval_image);
5538 if (blur_image == (Image *) NULL)
5539 {
5540 canvas_image=DestroyImage(canvas_image);
5541 return((Image *) NULL);
5542 }
cristy8a46d822012-08-28 23:32:39 +00005543 blur_image->alpha_trait=UndefinedPixelTrait;
cristy39172402012-03-30 13:04:39 +00005544 (void) CompositeImage(canvas_image,blur_image,IntensityCompositeOp,MagickTrue,
5545 0,0,exception);
cristy3ed852e2009-09-05 21:47:34 +00005546 blur_image=DestroyImage(blur_image);
5547 vignette_image=MergeImageLayers(canvas_image,FlattenLayer,exception);
5548 canvas_image=DestroyImage(canvas_image);
cristy66d26122012-06-23 21:56:40 +00005549 if (vignette_image != (Image *) NULL)
5550 (void) TransformImageColorspace(vignette_image,image->colorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +00005551 return(vignette_image);
5552}
5553
5554/*
5555%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5556% %
5557% %
5558% %
5559% W a v e I m a g e %
5560% %
5561% %
5562% %
5563%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5564%
5565% WaveImage() creates a "ripple" effect in the image by shifting the pixels
cristycee97112010-05-28 00:44:52 +00005566% vertically along a sine wave whose amplitude and wavelength is specified
cristy3ed852e2009-09-05 21:47:34 +00005567% by the given parameters.
5568%
5569% The format of the WaveImage method is:
5570%
5571% Image *WaveImage(const Image *image,const double amplitude,
cristy5c4e2582011-09-11 19:21:03 +00005572% const double wave_length,const PixelInterpolateMethod method,
5573% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005574%
5575% A description of each parameter follows:
5576%
5577% o image: the image.
5578%
5579% o amplitude, wave_length: Define the amplitude and wave length of the
5580% sine wave.
5581%
cristy5c4e2582011-09-11 19:21:03 +00005582% o interpolate: the pixel interpolation method.
5583%
cristy3ed852e2009-09-05 21:47:34 +00005584% o exception: return any errors or warnings in this structure.
5585%
5586*/
5587MagickExport Image *WaveImage(const Image *image,const double amplitude,
cristy5c4e2582011-09-11 19:21:03 +00005588 const double wave_length,const PixelInterpolateMethod method,
5589 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00005590{
5591#define WaveImageTag "Wave/Image"
5592
cristyfa112112010-01-04 17:48:07 +00005593 CacheView
cristyd76c51e2011-03-26 00:21:26 +00005594 *image_view,
cristyfa112112010-01-04 17:48:07 +00005595 *wave_view;
5596
cristy3ed852e2009-09-05 21:47:34 +00005597 Image
5598 *wave_image;
5599
cristy3ed852e2009-09-05 21:47:34 +00005600 MagickBooleanType
5601 status;
5602
cristybb503372010-05-27 20:51:26 +00005603 MagickOffsetType
5604 progress;
5605
cristya19f1d72012-08-07 18:24:38 +00005606 double
cristy3ed852e2009-09-05 21:47:34 +00005607 *sine_map;
5608
cristybb503372010-05-27 20:51:26 +00005609 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005610 i;
5611
cristybb503372010-05-27 20:51:26 +00005612 ssize_t
5613 y;
5614
cristy3ed852e2009-09-05 21:47:34 +00005615 /*
5616 Initialize wave image attributes.
5617 */
5618 assert(image != (Image *) NULL);
5619 assert(image->signature == MagickSignature);
5620 if (image->debug != MagickFalse)
5621 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
5622 assert(exception != (ExceptionInfo *) NULL);
5623 assert(exception->signature == MagickSignature);
cristybb503372010-05-27 20:51:26 +00005624 wave_image=CloneImage(image,image->columns,(size_t) (image->rows+2.0*
cristy3ed852e2009-09-05 21:47:34 +00005625 fabs(amplitude)),MagickTrue,exception);
5626 if (wave_image == (Image *) NULL)
5627 return((Image *) NULL);
cristy574cc262011-08-05 01:23:58 +00005628 if (SetImageStorageClass(wave_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00005629 {
cristy3ed852e2009-09-05 21:47:34 +00005630 wave_image=DestroyImage(wave_image);
5631 return((Image *) NULL);
5632 }
cristy4c08aed2011-07-01 19:47:50 +00005633 if (wave_image->background_color.alpha != OpaqueAlpha)
cristy8a46d822012-08-28 23:32:39 +00005634 wave_image->alpha_trait=BlendPixelTrait;
cristy3ed852e2009-09-05 21:47:34 +00005635 /*
5636 Allocate sine map.
5637 */
cristya19f1d72012-08-07 18:24:38 +00005638 sine_map=(double *) AcquireQuantumMemory((size_t) wave_image->columns,
cristy3ed852e2009-09-05 21:47:34 +00005639 sizeof(*sine_map));
cristya19f1d72012-08-07 18:24:38 +00005640 if (sine_map == (double *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00005641 {
5642 wave_image=DestroyImage(wave_image);
5643 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
5644 }
cristybb503372010-05-27 20:51:26 +00005645 for (i=0; i < (ssize_t) wave_image->columns; i++)
cristy4205a3c2010-09-12 20:19:59 +00005646 sine_map[i]=fabs(amplitude)+amplitude*sin((double) ((2.0*MagickPI*i)/
5647 wave_length));
cristy3ed852e2009-09-05 21:47:34 +00005648 /*
5649 Wave image.
5650 */
5651 status=MagickTrue;
5652 progress=0;
cristy4bc52022012-12-13 14:15:41 +00005653 image_view=AcquireVirtualCacheView(image);
5654 wave_view=AcquireAuthenticCacheView(wave_image);
cristyd76c51e2011-03-26 00:21:26 +00005655 (void) SetCacheViewVirtualPixelMethod(image_view,
5656 BackgroundVirtualPixelMethod);
cristyb5d5f722009-11-04 03:03:49 +00005657#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyac245f82012-05-05 17:13:57 +00005658 #pragma omp parallel for schedule(static,4) shared(progress,status) \
cristy4ee2b0c2012-05-15 00:30:35 +00005659 dynamic_number_threads(image,image->columns,image->rows,1)
cristy3ed852e2009-09-05 21:47:34 +00005660#endif
cristybb503372010-05-27 20:51:26 +00005661 for (y=0; y < (ssize_t) wave_image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00005662 {
cristy4c08aed2011-07-01 19:47:50 +00005663 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00005664 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00005665
cristye97bb922011-04-03 01:36:52 +00005666 register ssize_t
5667 x;
5668
cristy3ed852e2009-09-05 21:47:34 +00005669 if (status == MagickFalse)
5670 continue;
5671 q=QueueCacheViewAuthenticPixels(wave_view,0,y,wave_image->columns,1,
5672 exception);
cristyacd2ed22011-08-30 01:44:23 +00005673 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00005674 {
5675 status=MagickFalse;
5676 continue;
5677 }
cristybb503372010-05-27 20:51:26 +00005678 for (x=0; x < (ssize_t) wave_image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00005679 {
cristy5c4e2582011-09-11 19:21:03 +00005680 status=InterpolatePixelChannels(image,image_view,wave_image,method,
5681 (double) x,(double) (y-sine_map[x]),q,exception);
cristyed231572011-07-14 02:18:59 +00005682 q+=GetPixelChannels(wave_image);
cristy3ed852e2009-09-05 21:47:34 +00005683 }
5684 if (SyncCacheViewAuthenticPixels(wave_view,exception) == MagickFalse)
5685 status=MagickFalse;
5686 if (image->progress_monitor != (MagickProgressMonitor) NULL)
5687 {
5688 MagickBooleanType
5689 proceed;
5690
cristyb5d5f722009-11-04 03:03:49 +00005691#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy69cfa022012-01-23 12:47:29 +00005692 #pragma omp critical (MagickCore_WaveImage)
cristy3ed852e2009-09-05 21:47:34 +00005693#endif
5694 proceed=SetImageProgress(image,WaveImageTag,progress++,image->rows);
5695 if (proceed == MagickFalse)
5696 status=MagickFalse;
5697 }
5698 }
5699 wave_view=DestroyCacheView(wave_view);
cristyd76c51e2011-03-26 00:21:26 +00005700 image_view=DestroyCacheView(image_view);
cristya19f1d72012-08-07 18:24:38 +00005701 sine_map=(double *) RelinquishMagickMemory(sine_map);
cristy3ed852e2009-09-05 21:47:34 +00005702 if (status == MagickFalse)
5703 wave_image=DestroyImage(wave_image);
5704 return(wave_image);
5705}