MagickCore 6.9.12-98
Convert, Edit, Or Compose Bitmap Images
Loading...
Searching...
No Matches
image.c
1/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% IIIII M M AAA GGGG EEEEE %
7% I MM MM A A G E %
8% I M M M AAAAA G GG EEE %
9% I M M A A G G E %
10% IIIII M M A A GGGG EEEEE %
11% %
12% %
13% MagickCore Image Methods %
14% %
15% Software Design %
16% Cristy %
17% July 1992 %
18% %
19% %
20% Copyright 1999 ImageMagick Studio LLC, a non-profit organization %
21% 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% https://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*/
43#include "magick/studio.h"
44#include "magick/animate.h"
45#include "magick/artifact.h"
46#include "magick/blob.h"
47#include "magick/blob-private.h"
48#include "magick/cache.h"
49#include "magick/cache-private.h"
50#include "magick/cache-view.h"
51#include "magick/channel.h"
52#include "magick/client.h"
53#include "magick/color.h"
54#include "magick/color-private.h"
55#include "magick/colormap.h"
56#include "magick/colorspace.h"
57#include "magick/colorspace-private.h"
58#include "magick/composite.h"
59#include "magick/composite-private.h"
60#include "magick/compress.h"
61#include "magick/constitute.h"
62#include "magick/delegate.h"
63#include "magick/deprecate.h"
64#include "magick/display.h"
65#include "magick/draw.h"
66#include "magick/enhance.h"
67#include "magick/exception.h"
68#include "magick/exception-private.h"
69#include "magick/gem.h"
70#include "magick/geometry.h"
71#include "magick/histogram.h"
72#include "magick/image-private.h"
73#include "magick/list.h"
74#include "magick/magic.h"
75#include "magick/magick.h"
76#include "magick/memory_.h"
77#include "magick/memory-private.h"
78#include "magick/module.h"
79#include "magick/monitor.h"
80#include "magick/monitor-private.h"
81#include "magick/option.h"
82#include "magick/paint.h"
83#include "magick/pixel-accessor.h"
84#include "magick/pixel-private.h"
85#include "magick/profile.h"
86#include "magick/property.h"
87#include "magick/quantize.h"
88#include "magick/random_.h"
89#include "magick/resource_.h"
90#include "magick/segment.h"
91#include "magick/semaphore.h"
92#include "magick/signature-private.h"
93#include "magick/statistic.h"
94#include "magick/string_.h"
95#include "magick/string-private.h"
96#include "magick/thread-private.h"
97#include "magick/threshold.h"
98#include "magick/timer.h"
99#include "magick/timer-private.h"
100#include "magick/token.h"
101#include "magick/token-private.h"
102#include "magick/utility.h"
103#include "magick/version.h"
104#include "magick/xwindow-private.h"
105
106/*
107%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
108% %
109% %
110% %
111% A c q u i r e I m a g e %
112% %
113% %
114% %
115%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
116%
117% AcquireImage() returns a pointer to an image structure initialized to
118% default values.
119%
120% The format of the AcquireImage method is:
121%
122% Image *AcquireImage(const ImageInfo *image_info)
123%
124% A description of each parameter follows:
125%
126% o image_info: Many of the image default values are set from this
127% structure. For example, filename, compression, depth, background color,
128% and others.
129%
130*/
131MagickExport Image *AcquireImage(const ImageInfo *image_info)
132{
133 const char
134 *option;
135
136 Image
137 *image;
138
139 MagickStatusType
140 flags;
141
142 /*
143 Allocate image structure.
144 */
145 if (IsEventLogging() != MagickFalse)
146 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
147 image=(Image *) AcquireCriticalMemory(sizeof(*image));
148 (void) memset(image,0,sizeof(*image));
149 /*
150 Initialize Image structure.
151 */
152 (void) CopyMagickString(image->magick,"MIFF",MaxTextExtent);
153 image->storage_class=DirectClass;
154 image->depth=MAGICKCORE_QUANTUM_DEPTH;
155 image->colorspace=sRGBColorspace;
156 image->rendering_intent=PerceptualIntent;
157 image->gamma=1.000f/2.200f;
158 image->chromaticity.red_primary.x=0.6400f;
159 image->chromaticity.red_primary.y=0.3300f;
160 image->chromaticity.red_primary.z=0.0300f;
161 image->chromaticity.green_primary.x=0.3000f;
162 image->chromaticity.green_primary.y=0.6000f;
163 image->chromaticity.green_primary.z=0.1000f;
164 image->chromaticity.blue_primary.x=0.1500f;
165 image->chromaticity.blue_primary.y=0.0600f;
166 image->chromaticity.blue_primary.z=0.7900f;
167 image->chromaticity.white_point.x=0.3127f;
168 image->chromaticity.white_point.y=0.3290f;
169 image->chromaticity.white_point.z=0.3583f;
170 image->interlace=NoInterlace;
171 image->ticks_per_second=UndefinedTicksPerSecond;
172 image->compose=OverCompositeOp;
173 image->blur=1.0;
174 GetPixelPacketRGBA(BackgroundColorRGBA,&image->background_color);
175 GetPixelPacketRGBA(BorderColorRGBA,&image->border_color);
176 GetPixelPacketRGBA(MatteColorRGBA,&image->matte_color);
177 GetPixelPacketRGBA(TransparentColorRGBA,&image->transparent_color);
178 GetTimerInfo(&image->timer);
179 image->ping=MagickFalse;
180 image->cache=AcquirePixelCache(0);
181 image->blob=CloneBlobInfo((BlobInfo *) NULL);
182 InitializeExceptionInfo(&image->exception);
183 image->timestamp=GetMagickTime();
184 image->debug=(GetLogEventMask() & (ImageEvent | TransformEvent | CoderEvent))
185 != 0 ? MagickTrue : MagickFalse;
186 image->reference_count=1;
187 image->semaphore=AllocateSemaphoreInfo();
188 image->signature=MagickCoreSignature;
189 if (image_info == (ImageInfo *) NULL)
190 return(image);
191 /*
192 Transfer image info.
193 */
194 SetBlobExempt(image,image_info->file != (FILE *) NULL ? MagickTrue :
195 MagickFalse);
196 (void) CopyMagickString(image->filename,image_info->filename,MaxTextExtent);
197 (void) CopyMagickString(image->magick_filename,image_info->filename,
198 MaxTextExtent);
199 (void) CopyMagickString(image->magick,image_info->magick,MaxTextExtent);
200 if (image_info->size != (char *) NULL)
201 {
202 (void) ParseAbsoluteGeometry(image_info->size,&image->extract_info);
203 image->columns=image->extract_info.width;
204 image->rows=image->extract_info.height;
205 image->offset=image->extract_info.x;
206 image->extract_info.x=0;
207 image->extract_info.y=0;
208 }
209 if (image_info->extract != (char *) NULL)
210 {
212 geometry;
213
214 (void) memset(&geometry,0,sizeof(geometry));
215 flags=ParseAbsoluteGeometry(image_info->extract,&geometry);
216 if (((flags & XValue) != 0) || ((flags & YValue) != 0))
217 {
218 image->extract_info=geometry;
219 Swap(image->columns,image->extract_info.width);
220 Swap(image->rows,image->extract_info.height);
221 }
222 }
223 image->compression=image_info->compression;
224 image->quality=image_info->quality;
225 image->endian=image_info->endian;
226 image->interlace=image_info->interlace;
227 image->units=image_info->units;
228 if (image_info->density != (char *) NULL)
229 {
231 geometry_info;
232
233 flags=ParseGeometry(image_info->density,&geometry_info);
234 if ((flags & RhoValue) != 0)
235 image->x_resolution=geometry_info.rho;
236 image->y_resolution=image->x_resolution;
237 if ((flags & SigmaValue) != 0)
238 image->y_resolution=geometry_info.sigma;
239 }
240 if (image_info->page != (char *) NULL)
241 {
242 char
243 *geometry;
244
245 image->page=image->extract_info;
246 geometry=GetPageGeometry(image_info->page);
247 (void) ParseAbsoluteGeometry(geometry,&image->page);
248 geometry=DestroyString(geometry);
249 }
250 if (image_info->depth != 0)
251 image->depth=image_info->depth;
252 image->dither=image_info->dither;
253 image->background_color=image_info->background_color;
254 image->border_color=image_info->border_color;
255 image->matte_color=image_info->matte_color;
256 image->transparent_color=image_info->transparent_color;
257 image->ping=image_info->ping;
258 image->progress_monitor=image_info->progress_monitor;
259 image->client_data=image_info->client_data;
260 if (image_info->cache != (void *) NULL)
261 ClonePixelCacheMethods(image->cache,image_info->cache);
262 (void) SyncImageSettings(image_info,image);
263 option=GetImageOption(image_info,"delay");
264 if (option != (const char *) NULL)
265 {
267 geometry_info;
268
269 flags=ParseGeometry(option,&geometry_info);
270 if ((flags & GreaterValue) != 0)
271 {
272 if ((double) image->delay > floor(geometry_info.rho+0.5))
273 image->delay=(size_t) CastDoubleToLong(floor(
274 geometry_info.rho+0.5));
275 }
276 else
277 if ((flags & LessValue) != 0)
278 {
279 if ((double) image->delay < floor(geometry_info.rho+0.5))
280 image->ticks_per_second=CastDoubleToLong(floor(
281 geometry_info.sigma+0.5));
282 }
283 else
284 image->delay=(size_t) CastDoubleToLong(floor(
285 geometry_info.rho+0.5));
286 if ((flags & SigmaValue) != 0)
287 image->ticks_per_second=CastDoubleToLong(floor(
288 geometry_info.sigma+0.5));
289 }
290 option=GetImageOption(image_info,"dispose");
291 if (option != (const char *) NULL)
292 image->dispose=(DisposeType) ParseCommandOption(MagickDisposeOptions,
293 MagickFalse,option);
294 return(image);
295}
296
297/*
298%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
299% %
300% %
301% %
302% A c q u i r e I m a g e I n f o %
303% %
304% %
305% %
306%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
307%
308% AcquireImageInfo() allocates the ImageInfo structure.
309%
310% The format of the AcquireImageInfo method is:
311%
312% ImageInfo *AcquireImageInfo(void)
313%
314*/
315MagickExport ImageInfo *AcquireImageInfo(void)
316{
318 *image_info;
319
320 image_info=(ImageInfo *) AcquireMagickMemory(sizeof(*image_info));
321 if (image_info == (ImageInfo *) NULL)
322 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
323 GetImageInfo(image_info);
324 return(image_info);
325}
326
327/*
328%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
329% %
330% %
331% %
332% A c q u i r e N e x t I m a g e %
333% %
334% %
335% %
336%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
337%
338% AcquireNextImage() initializes the next image in a sequence to
339% default values. The next member of image points to the newly allocated
340% image. If there is a memory shortage, next is assigned NULL.
341%
342% The format of the AcquireNextImage method is:
343%
344% void AcquireNextImage(const ImageInfo *image_info,Image *image)
345%
346% A description of each parameter follows:
347%
348% o image_info: Many of the image default values are set from this
349% structure. For example, filename, compression, depth, background color,
350% and others.
351%
352% o image: the image.
353%
354*/
355MagickExport void AcquireNextImage(const ImageInfo *image_info,Image *image)
356{
357 /*
358 Allocate image structure.
359 */
360 assert(image != (Image *) NULL);
361 assert(image->signature == MagickCoreSignature);
362 if (IsEventLogging() != MagickFalse)
363 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
364 image->next=AcquireImage(image_info);
365 if (GetNextImageInList(image) == (Image *) NULL)
366 return;
367 (void) CopyMagickString(GetNextImageInList(image)->filename,image->filename,
368 MaxTextExtent);
369 if (image_info != (ImageInfo *) NULL)
370 (void) CopyMagickString(GetNextImageInList(image)->filename,
371 image_info->filename,MaxTextExtent);
372 DestroyBlob(GetNextImageInList(image));
373 image->next->blob=ReferenceBlob(image->blob);
374 image->next->endian=image->endian;
375 image->next->scene=image->scene+1;
376 image->next->previous=image;
377}
378
379/*
380%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
381% %
382% %
383% %
384% A p p e n d I m a g e s %
385% %
386% %
387% %
388%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
389%
390% AppendImages() takes all images from the current image pointer to the end
391% of the image list and appends them to each other top-to-bottom if the
392% stack parameter is true, otherwise left-to-right.
393%
394% The current gravity setting now effects how the image is justified in the
395% final image.
396%
397% The format of the AppendImages method is:
398%
399% Image *AppendImages(const Image *images,const MagickBooleanType stack,
400% ExceptionInfo *exception)
401%
402% A description of each parameter follows:
403%
404% o images: the image sequence.
405%
406% o stack: A value other than 0 stacks the images top-to-bottom.
407%
408% o exception: return any errors or warnings in this structure.
409%
410*/
411MagickExport Image *AppendImages(const Image *images,
412 const MagickBooleanType stack,ExceptionInfo *exception)
413{
414#define AppendImageTag "Append/Image"
415
417 *append_view;
418
419 Image
420 *append_image;
421
422 MagickBooleanType
423 homogeneous_colorspace,
424 matte,
425 status;
426
427 MagickOffsetType
428 n;
429
431 geometry;
432
433 const Image
434 *next;
435
436 size_t
437 depth,
438 height,
439 number_images,
440 width;
441
442 ssize_t
443 x_offset,
444 y,
445 y_offset;
446
447 /*
448 Compute maximum area of appended area.
449 */
450 assert(images != (Image *) NULL);
451 assert(images->signature == MagickCoreSignature);
452 assert(exception != (ExceptionInfo *) NULL);
453 assert(exception->signature == MagickCoreSignature);
454 if (IsEventLogging() != MagickFalse)
455 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
456 matte=images->matte;
457 number_images=1;
458 width=images->columns;
459 height=images->rows;
460 depth=images->depth;
461 homogeneous_colorspace=MagickTrue;
462 next=GetNextImageInList(images);
463 for ( ; next != (Image *) NULL; next=GetNextImageInList(next))
464 {
465 if (next->depth > depth)
466 depth=next->depth;
467 if (next->colorspace != images->colorspace)
468 homogeneous_colorspace=MagickFalse;
469 if (next->matte != MagickFalse)
470 matte=MagickTrue;
471 number_images++;
472 if (stack != MagickFalse)
473 {
474 if (next->columns > width)
475 width=next->columns;
476 height+=next->rows;
477 continue;
478 }
479 width+=next->columns;
480 if (next->rows > height)
481 height=next->rows;
482 }
483 /*
484 Append images.
485 */
486 append_image=CloneImage(images,width,height,MagickTrue,exception);
487 if (append_image == (Image *) NULL)
488 return((Image *) NULL);
489 if (SetImageStorageClass(append_image,DirectClass) == MagickFalse)
490 {
491 InheritException(exception,&append_image->exception);
492 append_image=DestroyImage(append_image);
493 return((Image *) NULL);
494 }
495 if (homogeneous_colorspace == MagickFalse)
496 (void) SetImageColorspace(append_image,sRGBColorspace);
497 append_image->depth=depth;
498 append_image->matte=matte;
499 append_image->page=images->page;
500 (void) SetImageBackgroundColor(append_image);
501 status=MagickTrue;
502 x_offset=0;
503 y_offset=0;
504 next=images;
505 append_view=AcquireAuthenticCacheView(append_image,exception);
506 for (n=0; n < (MagickOffsetType) number_images; n++)
507 {
509 *image_view;
510
511 MagickBooleanType
512 proceed;
513
514 SetGeometry(append_image,&geometry);
515 GravityAdjustGeometry(next->columns,next->rows,next->gravity,&geometry);
516 if (stack != MagickFalse)
517 x_offset-=geometry.x;
518 else
519 y_offset-=geometry.y;
520 image_view=AcquireVirtualCacheView(next,exception);
521#if defined(MAGICKCORE_OPENMP_SUPPORT)
522 #pragma omp parallel for schedule(static) shared(status) \
523 magick_number_threads(next,next,next->rows,1)
524#endif
525 for (y=0; y < (ssize_t) next->rows; y++)
526 {
527 MagickBooleanType
528 sync;
529
530 const IndexPacket
531 *magick_restrict indexes;
532
533 const PixelPacket
534 *magick_restrict p;
535
536 IndexPacket
537 *magick_restrict append_indexes;
538
540 *magick_restrict q;
541
542 ssize_t
543 x;
544
545 if (status == MagickFalse)
546 continue;
547 p=GetCacheViewVirtualPixels(image_view,0,y,next->columns,1,exception);
548 q=QueueCacheViewAuthenticPixels(append_view,x_offset,y+y_offset,
549 next->columns,1,exception);
550 if ((p == (const PixelPacket *) NULL) || (q == (PixelPacket *) NULL))
551 {
552 status=MagickFalse;
553 continue;
554 }
555 indexes=GetCacheViewVirtualIndexQueue(image_view);
556 append_indexes=GetCacheViewAuthenticIndexQueue(append_view);
557 for (x=0; x < (ssize_t) next->columns; x++)
558 {
559 SetPixelRed(q,GetPixelRed(p));
560 SetPixelGreen(q,GetPixelGreen(p));
561 SetPixelBlue(q,GetPixelBlue(p));
562 SetPixelOpacity(q,OpaqueOpacity);
563 if (next->matte != MagickFalse)
564 SetPixelOpacity(q,GetPixelOpacity(p));
565 if ((next->colorspace == CMYKColorspace) &&
566 (append_image->colorspace == CMYKColorspace))
567 SetPixelIndex(append_indexes+x,GetPixelIndex(indexes+x));
568 p++;
569 q++;
570 }
571 sync=SyncCacheViewAuthenticPixels(append_view,exception);
572 if (sync == MagickFalse)
573 status=MagickFalse;
574 }
575 image_view=DestroyCacheView(image_view);
576 if (stack == MagickFalse)
577 {
578 x_offset+=(ssize_t) next->columns;
579 y_offset=0;
580 }
581 else
582 {
583 x_offset=0;
584 y_offset+=(ssize_t) next->rows;
585 }
586 proceed=SetImageProgress(append_image,AppendImageTag,n,number_images);
587 if (proceed == MagickFalse)
588 break;
589 next=GetNextImageInList(next);
590 }
591 append_view=DestroyCacheView(append_view);
592 if (status == MagickFalse)
593 append_image=DestroyImage(append_image);
594 return(append_image);
595}
596
597/*
598%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
599% %
600% %
601% %
602% C a t c h I m a g e E x c e p t i o n %
603% %
604% %
605% %
606%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
607%
608% CatchImageException() returns if no exceptions are found in the image
609% sequence, otherwise it determines the most severe exception and reports
610% it as a warning or error depending on the severity.
611%
612% The format of the CatchImageException method is:
613%
614% ExceptionType CatchImageException(Image *image)
615%
616% A description of each parameter follows:
617%
618% o image: An image sequence.
619%
620*/
621MagickExport ExceptionType CatchImageException(Image *image)
622{
624 *exception;
625
626 ExceptionType
627 severity;
628
629 assert(image != (const Image *) NULL);
630 assert(image->signature == MagickCoreSignature);
631 if (IsEventLogging() != MagickFalse)
632 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
633 exception=AcquireExceptionInfo();
634 GetImageException(image,exception);
635 CatchException(exception);
636 severity=exception->severity;
637 exception=DestroyExceptionInfo(exception);
638 return(severity);
639}
640
641/*
642%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
643% %
644% %
645% %
646% C l i p I m a g e P a t h %
647% %
648% %
649% %
650%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
651%
652% ClipImagePath() sets the image clip mask based any clipping path information
653% if it exists.
654%
655% The format of the ClipImagePath method is:
656%
657% MagickBooleanType ClipImagePath(Image *image,const char *pathname,
658% const MagickBooleanType inside)
659%
660% A description of each parameter follows:
661%
662% o image: the image.
663%
664% o pathname: name of clipping path resource. If name is preceded by #, use
665% clipping path numbered by name.
666%
667% o inside: if non-zero, later operations take effect inside clipping path.
668% Otherwise later operations take effect outside clipping path.
669%
670*/
671
672MagickExport MagickBooleanType ClipImage(Image *image)
673{
674 return(ClipImagePath(image,"#1",MagickTrue));
675}
676
677MagickExport MagickBooleanType ClipImagePath(Image *image,const char *pathname,
678 const MagickBooleanType inside)
679{
680#define ClipImagePathTag "ClipPath/Image"
681
682 char
683 *property;
684
685 const char
686 *value;
687
688 Image
689 *clip_mask;
690
692 *image_info;
693
694 assert(image != (const Image *) NULL);
695 assert(image->signature == MagickCoreSignature);
696 assert(pathname != NULL);
697 if (IsEventLogging() != MagickFalse)
698 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
699 property=AcquireString(pathname);
700 (void) FormatLocaleString(property,MaxTextExtent,"8BIM:1999,2998:%s",
701 pathname);
702 value=GetImageProperty(image,property);
703 property=DestroyString(property);
704 if (value == (const char *) NULL)
705 {
706 ThrowFileException(&image->exception,OptionError,"NoClipPathDefined",
707 image->filename);
708 return(MagickFalse);
709 }
710 image_info=AcquireImageInfo();
711 (void) CopyMagickString(image_info->filename,image->filename,MaxTextExtent);
712 (void) ConcatenateMagickString(image_info->filename,pathname,MaxTextExtent);
713 clip_mask=BlobToImage(image_info,value,strlen(value),&image->exception);
714 image_info=DestroyImageInfo(image_info);
715 if (clip_mask == (Image *) NULL)
716 return(MagickFalse);
717 if (clip_mask->storage_class == PseudoClass)
718 {
719 (void) SyncImage(clip_mask);
720 if (SetImageStorageClass(clip_mask,DirectClass) == MagickFalse)
721 return(MagickFalse);
722 }
723 if (inside == MagickFalse)
724 (void) NegateImage(clip_mask,MagickFalse);
725 (void) FormatLocaleString(clip_mask->magick_filename,MaxTextExtent,
726 "8BIM:1999,2998:%s\nPS",pathname);
727 (void) SetImageClipMask(image,clip_mask);
728 clip_mask=DestroyImage(clip_mask);
729 return(MagickTrue);
730}
731
732/*
733%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
734% %
735% %
736% %
737% C l o n e I m a g e %
738% %
739% %
740% %
741%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
742%
743% CloneImage() copies an image and returns the copy as a new image object.
744%
745% If the specified columns and rows is 0, an exact copy of the image is
746% returned, otherwise the pixel data is undefined and must be initialized
747% with the QueueAuthenticPixels() and SyncAuthenticPixels() methods. On
748% failure, a NULL image is returned and exception describes the reason for the
749% failure.
750%
751% The format of the CloneImage method is:
752%
753% Image *CloneImage(const Image *image,const size_t columns,
754% const size_t rows,const MagickBooleanType orphan,
755% ExceptionInfo *exception)
756%
757% A description of each parameter follows:
758%
759% o image: the image.
760%
761% o columns: the number of columns in the cloned image.
762%
763% o rows: the number of rows in the cloned image.
764%
765% o detach: With a value other than 0, the cloned image is detached from
766% its parent I/O stream.
767%
768% o exception: return any errors or warnings in this structure.
769%
770*/
771MagickExport Image *CloneImage(const Image *image,const size_t columns,
772 const size_t rows,const MagickBooleanType detach,ExceptionInfo *exception)
773{
774 double
775 scale_x,
776 scale_y;
777
778 Image
779 *clone_image;
780
781 size_t
782 length;
783
784 /*
785 Clone the image.
786 */
787 assert(image != (const Image *) NULL);
788 assert(image->signature == MagickCoreSignature);
789 assert(exception != (ExceptionInfo *) NULL);
790 assert(exception->signature == MagickCoreSignature);
791 if (IsEventLogging() != MagickFalse)
792 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
793 if ((image->columns == 0) || (image->rows == 0))
794 {
795 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
796 "NegativeOrZeroImageSize","`%s'",image->filename);
797 return((Image *) NULL);
798 }
799 clone_image=(Image *) AcquireCriticalMemory(sizeof(*clone_image));
800 (void) memset(clone_image,0,sizeof(*clone_image));
801 clone_image->signature=MagickCoreSignature;
802 clone_image->storage_class=image->storage_class;
803 clone_image->channels=image->channels;
804 clone_image->colorspace=image->colorspace;
805 clone_image->matte=image->matte;
806 clone_image->columns=image->columns;
807 clone_image->rows=image->rows;
808 clone_image->dither=image->dither;
809 (void) CloneImageProfiles(clone_image,image);
810 (void) CloneImageProperties(clone_image,image);
811 (void) CloneImageArtifacts(clone_image,image);
812 GetTimerInfo(&clone_image->timer);
813 InitializeExceptionInfo(&clone_image->exception);
814 InheritException(&clone_image->exception,&image->exception);
815 if (image->ascii85 != (void *) NULL)
816 Ascii85Initialize(clone_image);
817 clone_image->extent=image->extent;
818 clone_image->magick_columns=image->magick_columns;
819 clone_image->magick_rows=image->magick_rows;
820 clone_image->type=image->type;
821 (void) CopyMagickString(clone_image->magick_filename,image->magick_filename,
822 MaxTextExtent);
823 (void) CopyMagickString(clone_image->magick,image->magick,MaxTextExtent);
824 (void) CopyMagickString(clone_image->filename,image->filename,MaxTextExtent);
825 clone_image->progress_monitor=image->progress_monitor;
826 clone_image->client_data=image->client_data;
827 clone_image->reference_count=1;
828 clone_image->next=image->next;
829 clone_image->previous=image->previous;
830 clone_image->list=NewImageList();
831 clone_image->clip_mask=NewImageList();
832 clone_image->mask=NewImageList();
833 if (detach == MagickFalse)
834 clone_image->blob=ReferenceBlob(image->blob);
835 else
836 {
837 clone_image->next=NewImageList();
838 clone_image->previous=NewImageList();
839 clone_image->blob=CloneBlobInfo((BlobInfo *) NULL);
840 }
841 clone_image->ping=image->ping;
842 clone_image->debug=image->debug;
843 clone_image->semaphore=AllocateSemaphoreInfo();
844 if (image->colormap != (PixelPacket *) NULL)
845 {
846 /*
847 Allocate and copy the image colormap.
848 */
849 clone_image->colors=image->colors;
850 length=(size_t) image->colors;
851 clone_image->colormap=(PixelPacket *) AcquireQuantumMemory(length+1,
852 sizeof(*clone_image->colormap));
853 if (clone_image->colormap == (PixelPacket *) NULL)
854 {
855 clone_image=DestroyImage(clone_image);
856 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
857 }
858 (void) memcpy(clone_image->colormap,image->colormap,length*
859 sizeof(*clone_image->colormap));
860 }
861 if ((columns == 0) || (rows == 0))
862 {
863 if (image->montage != (char *) NULL)
864 (void) CloneString(&clone_image->montage,image->montage);
865 if (image->directory != (char *) NULL)
866 (void) CloneString(&clone_image->directory,image->directory);
867 if (image->clip_mask != (Image *) NULL)
868 clone_image->clip_mask=CloneImage(image->clip_mask,0,0,MagickTrue,
869 exception);
870 if (image->mask != (Image *) NULL)
871 clone_image->mask=CloneImage(image->mask,0,0,MagickTrue,exception);
872 clone_image->cache=ReferencePixelCache(image->cache);
873 return(clone_image);
874 }
875 if ((columns == image->columns) && (rows == image->rows))
876 {
877 if (image->clip_mask != (Image *) NULL)
878 clone_image->clip_mask=CloneImage(image->clip_mask,0,0,MagickTrue,
879 exception);
880 if (image->mask != (Image *) NULL)
881 clone_image->mask=CloneImage(image->mask,0,0,MagickTrue,exception);
882 }
883 scale_x=1.0;
884 scale_y=1.0;
885 if (image->columns != 0)
886 scale_x=(double) columns/(double) image->columns;
887 if (image->rows != 0)
888 scale_y=(double) rows/(double) image->rows;
889 clone_image->page.width=(size_t) CastDoubleToLong(floor(scale_x*
890 image->page.width+0.5));
891 clone_image->page.height=(size_t) CastDoubleToLong(floor(scale_y*
892 image->page.height+0.5));
893 if (MagickAbsoluteValue(scale_x-scale_y) < 2.0)
894 scale_x=scale_y=MagickMin(scale_x,scale_y);
895 clone_image->page.x=CastDoubleToLong(ceil(scale_x*image->page.x-0.5));
896 clone_image->tile_offset.x=CastDoubleToLong(ceil(scale_x*
897 image->tile_offset.x-0.5));
898 clone_image->page.y=CastDoubleToLong(ceil(scale_y*image->page.y-0.5));
899 clone_image->tile_offset.y=CastDoubleToLong(ceil(scale_y*
900 image->tile_offset.y-0.5));
901 clone_image->cache=ClonePixelCache(image->cache);
902 if (SetImageExtent(clone_image,columns,rows) == MagickFalse)
903 {
904 InheritException(exception,&clone_image->exception);
905 clone_image=DestroyImage(clone_image);
906 }
907 return(clone_image);
908}
909
910/*
911%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
912% %
913% %
914% %
915% C l o n e I m a g e I n f o %
916% %
917% %
918% %
919%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
920%
921% CloneImageInfo() makes a copy of the given image info structure. If
922% NULL is specified, a new image info structure is created initialized to
923% default values.
924%
925% The format of the CloneImageInfo method is:
926%
927% ImageInfo *CloneImageInfo(const ImageInfo *image_info)
928%
929% A description of each parameter follows:
930%
931% o image_info: the image info.
932%
933*/
934MagickExport ImageInfo *CloneImageInfo(const ImageInfo *image_info)
935{
937 *clone_info;
938
939 clone_info=AcquireImageInfo();
940 if (image_info == (ImageInfo *) NULL)
941 return(clone_info);
942 clone_info->compression=image_info->compression;
943 clone_info->temporary=image_info->temporary;
944 clone_info->adjoin=image_info->adjoin;
945 clone_info->antialias=image_info->antialias;
946 clone_info->scene=image_info->scene;
947 clone_info->number_scenes=image_info->number_scenes;
948 clone_info->depth=image_info->depth;
949 if (image_info->size != (char *) NULL)
950 (void) CloneString(&clone_info->size,image_info->size);
951 if (image_info->extract != (char *) NULL)
952 (void) CloneString(&clone_info->extract,image_info->extract);
953 if (image_info->scenes != (char *) NULL)
954 (void) CloneString(&clone_info->scenes,image_info->scenes);
955 if (image_info->page != (char *) NULL)
956 (void) CloneString(&clone_info->page,image_info->page);
957 clone_info->interlace=image_info->interlace;
958 clone_info->endian=image_info->endian;
959 clone_info->units=image_info->units;
960 clone_info->quality=image_info->quality;
961 if (image_info->sampling_factor != (char *) NULL)
962 (void) CloneString(&clone_info->sampling_factor,
963 image_info->sampling_factor);
964 if (image_info->server_name != (char *) NULL)
965 (void) CloneString(&clone_info->server_name,image_info->server_name);
966 if (image_info->font != (char *) NULL)
967 (void) CloneString(&clone_info->font,image_info->font);
968 if (image_info->texture != (char *) NULL)
969 (void) CloneString(&clone_info->texture,image_info->texture);
970 if (image_info->density != (char *) NULL)
971 (void) CloneString(&clone_info->density,image_info->density);
972 clone_info->pointsize=image_info->pointsize;
973 clone_info->fuzz=image_info->fuzz;
974 clone_info->pen=image_info->pen;
975 clone_info->background_color=image_info->background_color;
976 clone_info->border_color=image_info->border_color;
977 clone_info->matte_color=image_info->matte_color;
978 clone_info->transparent_color=image_info->transparent_color;
979 clone_info->dither=image_info->dither;
980 clone_info->monochrome=image_info->monochrome;
981 clone_info->colors=image_info->colors;
982 clone_info->colorspace=image_info->colorspace;
983 clone_info->type=image_info->type;
984 clone_info->orientation=image_info->orientation;
985 clone_info->preview_type=image_info->preview_type;
986 clone_info->group=image_info->group;
987 clone_info->ping=image_info->ping;
988 clone_info->verbose=image_info->verbose;
989 if (image_info->view != (char *) NULL)
990 (void) CloneString(&clone_info->view,image_info->view);
991 if (image_info->authenticate != (char *) NULL)
992 (void) CloneString(&clone_info->authenticate,image_info->authenticate);
993 (void) CloneImageOptions(clone_info,image_info);
994 clone_info->progress_monitor=image_info->progress_monitor;
995 clone_info->client_data=image_info->client_data;
996 clone_info->cache=image_info->cache;
997 if (image_info->cache != (void *) NULL)
998 clone_info->cache=ReferencePixelCache(image_info->cache);
999 if (image_info->profile != (void *) NULL)
1000 clone_info->profile=(void *) CloneStringInfo((StringInfo *)
1001 image_info->profile);
1002 SetImageInfoFile(clone_info,image_info->file);
1003 SetImageInfoBlob(clone_info,image_info->blob,image_info->length);
1004 clone_info->stream=image_info->stream;
1005 clone_info->virtual_pixel_method=image_info->virtual_pixel_method;
1006 (void) CopyMagickString(clone_info->magick,image_info->magick,MaxTextExtent);
1007 (void) CopyMagickString(clone_info->unique,image_info->unique,MaxTextExtent);
1008 (void) CopyMagickString(clone_info->zero,image_info->zero,MaxTextExtent);
1009 (void) CopyMagickString(clone_info->filename,image_info->filename,
1010 MaxTextExtent);
1011 clone_info->subimage=image_info->scene; /* deprecated */
1012 clone_info->subrange=image_info->number_scenes; /* deprecated */
1013 clone_info->channel=image_info->channel;
1014 clone_info->debug=image_info->debug;
1015 clone_info->signature=image_info->signature;
1016 return(clone_info);
1017}
1018
1019/*
1020%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1021% %
1022% %
1023% %
1024% C o p y I m a g e P i x e l s %
1025% %
1026% %
1027% %
1028%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1029%
1030% CopyImagePixels() copies pixels from the source image as defined by the
1031% geometry the destination image at the specified offset.
1032%
1033% The format of the CopyImagePixels method is:
1034%
1035% MagickBooleanType CopyImagePixels(Image *image,const Image *source_image,
1036% const RectangleInfo *geometry,const OffsetInfo *offset,
1037% ExceptionInfo *exception)
1038%
1039% A description of each parameter follows:
1040%
1041% o image: the destination image.
1042%
1043% o source_image: the source image.
1044%
1045% o geometry: define the dimensions of the source pixel rectangle.
1046%
1047% o offset: define the offset in the destination image.
1048%
1049% o exception: return the highest severity exception.
1050%
1051*/
1052MagickExport MagickBooleanType CopyImagePixels(Image *image,
1053 const Image *source_image,const RectangleInfo *geometry,
1054 const OffsetInfo *offset,ExceptionInfo *exception)
1055{
1056#define CopyImageTag "Copy/Image"
1057
1058 CacheView
1059 *image_view,
1060 *source_view;
1061
1062 MagickBooleanType
1063 status;
1064
1065 MagickOffsetType
1066 progress;
1067
1068 ssize_t
1069 y;
1070
1071 assert(image != (Image *) NULL);
1072 assert(source_image != (Image *) NULL);
1073 assert(geometry != (RectangleInfo *) NULL);
1074 assert(offset != (OffsetInfo *) NULL);
1075 if (IsEventLogging() != MagickFalse)
1076 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1077 if ((offset->x < 0) || (offset->y < 0) ||
1078 ((offset->x+(ssize_t) geometry->width) > (ssize_t) image->columns) ||
1079 ((offset->y+(ssize_t) geometry->height) > (ssize_t) image->rows))
1080 ThrowBinaryException(OptionError,"GeometryDoesNotContainImage",
1081 image->filename);
1082 if (SetImageStorageClass(image,DirectClass) == MagickFalse)
1083 return(MagickFalse);
1084 /*
1085 Copy image pixels.
1086 */
1087 status=MagickTrue;
1088 progress=0;
1089 source_view=AcquireVirtualCacheView(source_image,exception);
1090 image_view=AcquireAuthenticCacheView(image,exception);
1091#if defined(MAGICKCORE_OPENMP_SUPPORT)
1092 #pragma omp parallel for schedule(static) shared(progress,status) \
1093 magick_number_threads(source_image,image,geometry->height,1)
1094#endif
1095 for (y=0; y < (ssize_t) geometry->height; y++)
1096 {
1097 const IndexPacket
1098 *magick_restrict source_indexes;
1099
1100 const PixelPacket
1101 *magick_restrict p;
1102
1103 IndexPacket
1104 *magick_restrict indexes;
1105
1107 *magick_restrict q;
1108
1109 ssize_t
1110 x;
1111
1112 if (status == MagickFalse)
1113 continue;
1114 p=GetCacheViewVirtualPixels(source_view,geometry->x,y+geometry->y,
1115 geometry->width,1,exception);
1116 q=GetCacheViewAuthenticPixels(image_view,offset->x,y+offset->y,
1117 geometry->width,1,exception);
1118 if ((p == (const PixelPacket *) NULL) || (q == (PixelPacket *) NULL))
1119 {
1120 status=MagickFalse;
1121 continue;
1122 }
1123 source_indexes=GetCacheViewVirtualIndexQueue(source_view);
1124 indexes=GetCacheViewAuthenticIndexQueue(image_view);
1125 for (x=0; x < (ssize_t) geometry->width; x++)
1126 {
1127 *q=(*p);
1128 if (image->colorspace == CMYKColorspace)
1129 indexes[x]=source_indexes[x];
1130 p++;
1131 q++;
1132 }
1133 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
1134 status=MagickFalse;
1135 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1136 {
1137 MagickBooleanType
1138 proceed;
1139
1140#if defined(MAGICKCORE_OPENMP_SUPPORT)
1141 #pragma omp atomic
1142#endif
1143 progress++;
1144 proceed=SetImageProgress(image,CopyImageTag,progress,image->rows);
1145 if (proceed == MagickFalse)
1146 status=MagickFalse;
1147 }
1148 }
1149 image_view=DestroyCacheView(image_view);
1150 source_view=DestroyCacheView(source_view);
1151 return(status);
1152}
1153
1154/*
1155%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1156% %
1157% %
1158% %
1159% D e s t r o y I m a g e %
1160% %
1161% %
1162% %
1163%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1164%
1165% DestroyImage() dereferences an image, deallocating memory associated with
1166% the image if the reference count becomes zero.
1167%
1168% The format of the DestroyImage method is:
1169%
1170% Image *DestroyImage(Image *image)
1171%
1172% A description of each parameter follows:
1173%
1174% o image: the image.
1175%
1176*/
1177MagickExport Image *DestroyImage(Image *image)
1178{
1179 MagickBooleanType
1180 destroy;
1181
1182 /*
1183 Dereference image.
1184 */
1185 assert(image != (Image *) NULL);
1186 assert(image->signature == MagickCoreSignature);
1187 if (IsEventLogging() != MagickFalse)
1188 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1189 destroy=MagickFalse;
1190 LockSemaphoreInfo(image->semaphore);
1191 image->reference_count--;
1192 if (image->reference_count == 0)
1193 destroy=MagickTrue;
1194 UnlockSemaphoreInfo(image->semaphore);
1195 if (destroy == MagickFalse)
1196 return((Image *) NULL);
1197 /*
1198 Destroy image.
1199 */
1200 DestroyImagePixels(image);
1201 if (image->clip_mask != (Image *) NULL)
1202 image->clip_mask=DestroyImage(image->clip_mask);
1203 if (image->mask != (Image *) NULL)
1204 image->mask=DestroyImage(image->mask);
1205 if (image->montage != (char *) NULL)
1206 image->montage=DestroyString(image->montage);
1207 if (image->directory != (char *) NULL)
1208 image->directory=DestroyString(image->directory);
1209 if (image->colormap != (PixelPacket *) NULL)
1210 image->colormap=(PixelPacket *) RelinquishMagickMemory(image->colormap);
1211 if (image->geometry != (char *) NULL)
1212 image->geometry=DestroyString(image->geometry);
1213 DestroyImageProfiles(image);
1214 DestroyImageProperties(image);
1215 DestroyImageArtifacts(image);
1216 if (image->ascii85 != (Ascii85Info*) NULL)
1217 image->ascii85=(Ascii85Info *) RelinquishMagickMemory(image->ascii85);
1218 DestroyBlob(image);
1219 (void) ClearExceptionInfo(&image->exception,MagickTrue);
1220 if (image->semaphore != (SemaphoreInfo *) NULL)
1221 DestroySemaphoreInfo(&image->semaphore);
1222 image->signature=(~MagickCoreSignature);
1223 image=(Image *) RelinquishMagickMemory(image);
1224 return(image);
1225}
1226
1227/*
1228%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1229% %
1230% %
1231% %
1232% D e s t r o y I m a g e I n f o %
1233% %
1234% %
1235% %
1236%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1237%
1238% DestroyImageInfo() deallocates memory associated with an ImageInfo
1239% structure.
1240%
1241% The format of the DestroyImageInfo method is:
1242%
1243% ImageInfo *DestroyImageInfo(ImageInfo *image_info)
1244%
1245% A description of each parameter follows:
1246%
1247% o image_info: the image info.
1248%
1249*/
1250MagickExport ImageInfo *DestroyImageInfo(ImageInfo *image_info)
1251{
1252 assert(image_info != (ImageInfo *) NULL);
1253 assert(image_info->signature == MagickCoreSignature);
1254 if (IsEventLogging() != MagickFalse)
1255 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1256 image_info->filename);
1257 if (image_info->size != (char *) NULL)
1258 image_info->size=DestroyString(image_info->size);
1259 if (image_info->extract != (char *) NULL)
1260 image_info->extract=DestroyString(image_info->extract);
1261 if (image_info->scenes != (char *) NULL)
1262 image_info->scenes=DestroyString(image_info->scenes);
1263 if (image_info->page != (char *) NULL)
1264 image_info->page=DestroyString(image_info->page);
1265 if (image_info->sampling_factor != (char *) NULL)
1266 image_info->sampling_factor=DestroyString(
1267 image_info->sampling_factor);
1268 if (image_info->server_name != (char *) NULL)
1269 image_info->server_name=DestroyString(
1270 image_info->server_name);
1271 if (image_info->font != (char *) NULL)
1272 image_info->font=DestroyString(image_info->font);
1273 if (image_info->texture != (char *) NULL)
1274 image_info->texture=DestroyString(image_info->texture);
1275 if (image_info->density != (char *) NULL)
1276 image_info->density=DestroyString(image_info->density);
1277 if (image_info->view != (char *) NULL)
1278 image_info->view=DestroyString(image_info->view);
1279 if (image_info->authenticate != (char *) NULL)
1280 image_info->authenticate=DestroyString(
1281 image_info->authenticate);
1282 DestroyImageOptions(image_info);
1283 if (image_info->cache != (void *) NULL)
1284 image_info->cache=DestroyPixelCache(image_info->cache);
1285 if (image_info->profile != (StringInfo *) NULL)
1286 image_info->profile=(void *) DestroyStringInfo((StringInfo *)
1287 image_info->profile);
1288 image_info->signature=(~MagickCoreSignature);
1289 image_info=(ImageInfo *) RelinquishMagickMemory(image_info);
1290 return(image_info);
1291}
1292
1293/*
1294%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1295% %
1296% %
1297% %
1298+ D i s a s s o c i a t e I m a g e S t r e a m %
1299% %
1300% %
1301% %
1302%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1303%
1304% DisassociateImageStream() disassociates the image stream. It checks if the
1305% blob of the specified image is referenced by other images. If the reference
1306% count is higher then 1 a new blob is assigned to the specified image.
1307%
1308% The format of the DisassociateImageStream method is:
1309%
1310% void DisassociateImageStream(const Image *image)
1311%
1312% A description of each parameter follows:
1313%
1314% o image: the image.
1315%
1316*/
1317MagickExport void DisassociateImageStream(Image *image)
1318{
1319 assert(image != (Image *) NULL);
1320 assert(image->signature == MagickCoreSignature);
1321 if (IsEventLogging() != MagickFalse)
1322 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1323 DisassociateBlob(image);
1324}
1325
1326/*
1327%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1328% %
1329% %
1330% %
1331% G e t I m a g e C l i p M a s k %
1332% %
1333% %
1334% %
1335%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1336%
1337% GetImageClipMask() returns the clip path associated with the image.
1338%
1339% The format of the GetImageClipMask method is:
1340%
1341% Image *GetImageClipMask(const Image *image,ExceptionInfo *exception)
1342%
1343% A description of each parameter follows:
1344%
1345% o image: the image.
1346%
1347*/
1348MagickExport Image *GetImageClipMask(const Image *image,
1349 ExceptionInfo *exception)
1350{
1351 assert(image != (const Image *) NULL);
1352 assert(image->signature == MagickCoreSignature);
1353 if (IsEventLogging() != MagickFalse)
1354 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1355 if (image->clip_mask == (Image *) NULL)
1356 return((Image *) NULL);
1357 return(CloneImage(image->clip_mask,0,0,MagickTrue,exception));
1358}
1359
1360/*
1361%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1362% %
1363% %
1364% %
1365% G e t I m a g e E x c e p t i o n %
1366% %
1367% %
1368% %
1369%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1370%
1371% GetImageException() traverses an image sequence and returns any
1372% error more severe than noted by the exception parameter.
1373%
1374% The format of the GetImageException method is:
1375%
1376% void GetImageException(Image *image,ExceptionInfo *exception)
1377%
1378% A description of each parameter follows:
1379%
1380% o image: Specifies a pointer to a list of one or more images.
1381%
1382% o exception: return the highest severity exception.
1383%
1384*/
1385MagickExport void GetImageException(Image *image,ExceptionInfo *exception)
1386{
1387 Image
1388 *next;
1389
1390 assert(image != (Image *) NULL);
1391 assert(image->signature == MagickCoreSignature);
1392 assert(exception != (ExceptionInfo *) NULL);
1393 assert(exception->signature == MagickCoreSignature);
1394 if (IsEventLogging() != MagickFalse)
1395 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1396 for (next=image; next != (Image *) NULL; next=GetNextImageInList(next))
1397 {
1398 if (next->exception.severity == UndefinedException)
1399 continue;
1400 if (next->exception.severity > exception->severity)
1401 InheritException(exception,&next->exception);
1402 next->exception.severity=UndefinedException;
1403 }
1404}
1405
1406/*
1407%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1408% %
1409% %
1410% %
1411% G e t I m a g e I n f o %
1412% %
1413% %
1414% %
1415%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1416%
1417% GetImageInfo() initializes image_info to default values.
1418%
1419% The format of the GetImageInfo method is:
1420%
1421% void GetImageInfo(ImageInfo *image_info)
1422%
1423% A description of each parameter follows:
1424%
1425% o image_info: the image info.
1426%
1427*/
1428MagickExport void GetImageInfo(ImageInfo *image_info)
1429{
1430 char
1431 *synchronize;
1432
1433 /*
1434 File and image dimension members.
1435 */
1436 assert(image_info != (ImageInfo *) NULL);
1437 if (IsEventLogging() != MagickFalse)
1438 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1439 (void) memset(image_info,0,sizeof(*image_info));
1440 image_info->adjoin=MagickTrue;
1441 image_info->interlace=NoInterlace;
1442 image_info->channel=DefaultChannels;
1443 image_info->quality=UndefinedCompressionQuality;
1444 image_info->antialias=MagickTrue;
1445 image_info->dither=MagickTrue;
1446 synchronize=GetEnvironmentValue("MAGICK_SYNCHRONIZE");
1447 if (synchronize != (const char *) NULL)
1448 {
1449 image_info->synchronize=IsStringTrue(synchronize);
1450 synchronize=DestroyString(synchronize);
1451 }
1452 GetPixelPacketRGBA(BackgroundColorRGBA,&image_info->background_color);
1453 GetPixelPacketRGBA(BorderColorRGBA,&image_info->border_color);
1454 GetPixelPacketRGBA(MatteColorRGBA,&image_info->matte_color);
1455 GetPixelPacketRGBA(TransparentColorRGBA,&image_info->transparent_color);
1456 image_info->debug=(GetLogEventMask() & ImageEvent) != 0 ? MagickTrue :
1457 MagickFalse;
1458 image_info->signature=MagickCoreSignature;
1459}
1460
1461/*
1462%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1463% %
1464% %
1465% %
1466% G e t I m a g e I n f o F i l e %
1467% %
1468% %
1469% %
1470%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1471%
1472% GetImageInfoFile() returns the image info file member.
1473%
1474% The format of the GetImageInfoFile method is:
1475%
1476% FILE *GetImageInfoFile(const ImageInfo *image_info)
1477%
1478% A description of each parameter follows:
1479%
1480% o image_info: the image info.
1481%
1482*/
1483MagickExport FILE *GetImageInfoFile(const ImageInfo *image_info)
1484{
1485 return(image_info->file);
1486}
1487
1488/*
1489%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1490% %
1491% %
1492% %
1493% G e t I m a g e M a s k %
1494% %
1495% %
1496% %
1497%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1498%
1499% GetImageMask() returns the mask associated with the image.
1500%
1501% The format of the GetImageMask method is:
1502%
1503% Image *GetImageMask(const Image *image,ExceptionInfo *exception)
1504%
1505% A description of each parameter follows:
1506%
1507% o image: the image.
1508%
1509*/
1510MagickExport Image *GetImageMask(const Image *image,ExceptionInfo *exception)
1511{
1512 assert(image != (const Image *) NULL);
1513 assert(image->signature == MagickCoreSignature);
1514 if (IsEventLogging() != MagickFalse)
1515 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1516 if (image->mask == (Image *) NULL)
1517 return((Image *) NULL);
1518 return(CloneImage(image->mask,0,0,MagickTrue,exception));
1519}
1520
1521/*
1522%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1523% %
1524% %
1525% %
1526% G e t I m a g e C h a n n e l s %
1527% %
1528% %
1529% %
1530%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1531%
1532% GetImageChannels() returns the number of pixel channels associated with the
1533% specified image.
1534%
1535% The format of the GetChannels method is:
1536%
1537% size_t GetImageChannels(Image *image)
1538%
1539% A description of each parameter follows:
1540%
1541% o image: the image.
1542%
1543*/
1544MagickExport size_t GetImageChannels(Image *image)
1545{
1546 assert(image != (Image *) NULL);
1547 assert(image->signature == MagickCoreSignature);
1548 if (IsEventLogging() != MagickFalse)
1549 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1550 return(image->channels);
1551}
1552
1553/*
1554%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1555% %
1556% %
1557% %
1558+ G e t I m a g e R e f e r e n c e C o u n t %
1559% %
1560% %
1561% %
1562%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1563%
1564% GetImageReferenceCount() returns the image reference count.
1565%
1566% The format of the GetReferenceCount method is:
1567%
1568% ssize_t GetImageReferenceCount(Image *image)
1569%
1570% A description of each parameter follows:
1571%
1572% o image: the image.
1573%
1574*/
1575MagickExport ssize_t GetImageReferenceCount(Image *image)
1576{
1577 ssize_t
1578 reference_count;
1579
1580 assert(image != (Image *) NULL);
1581 assert(image->signature == MagickCoreSignature);
1582 if (IsEventLogging() != MagickFalse)
1583 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1584 LockSemaphoreInfo(image->semaphore);
1585 reference_count=image->reference_count;
1586 UnlockSemaphoreInfo(image->semaphore);
1587 return(reference_count);
1588}
1589
1590/*
1591%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1592% %
1593% %
1594% %
1595% G e t I m a g e V i r t u a l P i x e l M e t h o d %
1596% %
1597% %
1598% %
1599%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1600%
1601% GetImageVirtualPixelMethod() gets the "virtual pixels" method for the
1602% image. A virtual pixel is any pixel access that is outside the boundaries
1603% of the image cache.
1604%
1605% The format of the GetImageVirtualPixelMethod() method is:
1606%
1607% VirtualPixelMethod GetImageVirtualPixelMethod(const Image *image)
1608%
1609% A description of each parameter follows:
1610%
1611% o image: the image.
1612%
1613*/
1614MagickExport VirtualPixelMethod GetImageVirtualPixelMethod(const Image *image)
1615{
1616 assert(image != (Image *) NULL);
1617 assert(image->signature == MagickCoreSignature);
1618 if (IsEventLogging() != MagickFalse)
1619 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1620 return(GetPixelCacheVirtualMethod(image));
1621}
1622
1623/*
1624%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1625% %
1626% %
1627% %
1628% I n t e r p r e t I m a g e F i l e n a m e %
1629% %
1630% %
1631% %
1632%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1633%
1634% InterpretImageFilename() interprets embedded characters in an image filename.
1635% The filename length is returned.
1636%
1637% The format of the InterpretImageFilename method is:
1638%
1639% size_t InterpretImageFilename(const ImageInfo *image_info,Image *image,
1640% const char *format,int value,char *filename)
1641%
1642% A description of each parameter follows.
1643%
1644% o image_info: the image info..
1645%
1646% o image: the image.
1647%
1648% o format: A filename describing the format to use to write the numeric
1649% argument. Only the first numeric format identifier is replaced.
1650%
1651% o value: Numeric value to substitute into format filename.
1652%
1653% o filename: return the formatted filename in this character buffer.
1654%
1655*/
1656
1657static inline MagickBooleanType IsValidFormatSpecifier(const char *start,
1658 const char *end)
1659{
1660 char
1661 specifier = end[-1];
1662
1663 size_t
1664 length = end-start;
1665
1666 /*
1667 Is this a valid format specifier?
1668 */
1669 if ((specifier != 'd') && (specifier != 'x') && (specifier != 'o'))
1670 return(MagickFalse);
1671 if ((length == 1) && (*start == specifier))
1672 return(MagickTrue);
1673 if (length >= 2)
1674 {
1675 size_t
1676 i = 0;
1677
1678 if (*start == '0')
1679 {
1680 if ((length >= 3) && (start[1] == '0'))
1681 return(MagickFalse);
1682 i=1;
1683 }
1684 for ( ; i < (length-1); i++)
1685 if (isdigit((int) ((unsigned char) start[i])) == 0)
1686 return(MagickFalse);
1687 return(MagickTrue);
1688 }
1689 return(MagickFalse);
1690}
1691
1692MagickExport size_t InterpretImageFilename(const ImageInfo *image_info,
1693 Image *image,const char *format,int value,char *filename)
1694{
1695 char
1696 *p = filename,
1697 pattern[MagickPathExtent];
1698
1699 const char
1700 *cursor = format;
1701
1702 assert(format != (const char *) NULL);
1703 assert(filename != (char *) NULL);
1704 if (IsStringTrue(GetImageOption(image_info,"filename:literal")) != MagickFalse)
1705 {
1706 (void) CopyMagickString(filename,format,MagickPathExtent);
1707 return(strlen(filename));
1708 }
1709 while ((*cursor != '\0') && ((p-filename) < ((ssize_t) MagickPathExtent-1)))
1710 {
1711 const char
1712 *specifier_start,
1713 *start;
1714
1715 if (*cursor != '%')
1716 {
1717 *p++=(*cursor++);
1718 continue;
1719 }
1720 start=cursor++; /* Skip '%' */
1721 if (*cursor == '%')
1722 {
1723 *p++='%';
1724 cursor++;
1725 continue;
1726 }
1727 specifier_start=cursor;
1728 while (isdigit((int) ((unsigned char) *cursor)) != 0)
1729 cursor++;
1730 if ((*cursor == 'd') || (*cursor == 'o') || (*cursor == 'x'))
1731 {
1732 const char
1733 *specifier_end = cursor+1;
1734
1735 if (IsValidFormatSpecifier(specifier_start,specifier_end) != MagickFalse)
1736 {
1737 char
1738 format_specifier[MagickPathExtent];
1739
1740 size_t
1741 length = cursor-specifier_start;
1742
1743 ssize_t
1744 count;
1745
1746 (void) snprintf(format_specifier,sizeof(format_specifier),
1747 "%%%.*s%c",(int) length,specifier_start,*cursor);
1748 count=FormatLocaleString(pattern,sizeof(pattern),format_specifier,
1749 value);
1750 if ((count <= 0) || ((p-filename+count) >= MagickPathExtent))
1751 return(0);
1752 (void) CopyMagickString(p,pattern,MagickPathExtent-(p-filename));
1753 p+=strlen(pattern);
1754 cursor++;
1755 continue;
1756 }
1757 else
1758 {
1759 /*
1760 Invalid specifier — treat as literal.
1761 */
1762 cursor=start;
1763 *p++=(*cursor++);
1764 continue;
1765 }
1766 }
1767 if (*cursor == '[')
1768 {
1769 const char
1770 *end = strchr(cursor,']'),
1771 *option = (const char *) NULL;
1772
1773 size_t
1774 extent,
1775 option_length;
1776
1777 if (end == (const char *) NULL)
1778 continue;
1779 extent=(size_t) (end-cursor-1);
1780 if (extent >= sizeof(pattern))
1781 continue;
1782 (void) CopyMagickString(pattern,cursor+1,extent+1);
1783 pattern[extent]='\0';
1784 if (image != NULL)
1785 {
1786 option=GetImageProperty(image,pattern);
1787 if (option == (const char *) NULL)
1788 option=GetImageArtifact(image,pattern);
1789 }
1790 if ((option == (const char *) NULL) &&
1791 (image_info != (ImageInfo *) NULL))
1792 option=GetImageOption(image_info,pattern);
1793 if (option == (const char *) NULL)
1794 continue;
1795 option_length=strlen(option);
1796 if ((p-filename+option_length) >= MagickPathExtent)
1797 return(0);
1798 (void) CopyMagickString(p,option,MagickPathExtent-(p-filename));
1799 p+=option_length;
1800 cursor=end+1;
1801 continue;
1802 }
1803 /*
1804 Invalid or unsupported specifier — treat as literal.
1805 */
1806 cursor=start;
1807 if ((p-filename+1) >= MagickPathExtent)
1808 return(0);
1809 *p++=(*cursor++);
1810 }
1811 *p='\0';
1812 return(strlen(filename));
1813}
1814
1815/*
1816%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1817% %
1818% %
1819% %
1820% I s H i g h D y n a m i c R a n g e I m a g e %
1821% %
1822% %
1823% %
1824%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1825%
1826% IsHighDynamicRangeImage() returns MagickTrue if any pixel component is
1827% non-integer or exceeds the bounds of the quantum depth (e.g. for Q16
1828% 0..65535.
1829%
1830% The format of the IsHighDynamicRangeImage method is:
1831%
1832% MagickBooleanType IsHighDynamicRangeImage(const Image *image,
1833% ExceptionInfo *exception)
1834%
1835% A description of each parameter follows:
1836%
1837% o image: the image.
1838%
1839% o exception: return any errors or warnings in this structure.
1840%
1841*/
1842MagickExport MagickBooleanType IsHighDynamicRangeImage(const Image *image,
1843 ExceptionInfo *exception)
1844{
1845#if !defined(MAGICKCORE_HDRI_SUPPORT)
1846 (void) image;
1847 (void) exception;
1848 return(MagickFalse);
1849#else
1850 CacheView
1851 *image_view;
1852
1853 MagickBooleanType
1854 status;
1855
1857 zero;
1858
1859 ssize_t
1860 y;
1861
1862 assert(image != (Image *) NULL);
1863 assert(image->signature == MagickCoreSignature);
1864 if (IsEventLogging() != MagickFalse)
1865 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1866 status=MagickTrue;
1867 GetMagickPixelPacket(image,&zero);
1868 image_view=AcquireVirtualCacheView(image,exception);
1869#if defined(MAGICKCORE_OPENMP_SUPPORT)
1870 #pragma omp parallel for schedule(static) shared(status) \
1871 magick_number_threads(image,image,image->rows,1)
1872#endif
1873 for (y=0; y < (ssize_t) image->rows; y++)
1874 {
1876 pixel;
1877
1878 const IndexPacket
1879 *indexes;
1880
1881 const PixelPacket
1882 *p;
1883
1884 ssize_t
1885 x;
1886
1887 if (status == MagickFalse)
1888 continue;
1889 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
1890 if (p == (const PixelPacket *) NULL)
1891 {
1892 status=MagickFalse;
1893 continue;
1894 }
1895 indexes=GetCacheViewVirtualIndexQueue(image_view);
1896 pixel=zero;
1897 for (x=0; x < (ssize_t) image->columns; x++)
1898 {
1899 SetMagickPixelPacket(image,p,indexes+x,&pixel);
1900 if ((pixel.red < 0.0) || (pixel.red > (MagickRealType) QuantumRange) ||
1901 (pixel.red != (QuantumAny) pixel.red))
1902 break;
1903 if ((pixel.green < 0.0) ||
1904 (pixel.green > (MagickRealType) QuantumRange) ||
1905 (pixel.green != (QuantumAny) pixel.green))
1906 break;
1907 if ((pixel.blue < 0.0) || (pixel.blue > (MagickRealType) QuantumRange) ||
1908 (pixel.blue != (QuantumAny) pixel.blue))
1909 break;
1910 if (pixel.matte != MagickFalse)
1911 {
1912 if ((pixel.opacity < 0.0) || (pixel.opacity > (MagickRealType) QuantumRange) ||
1913 (pixel.opacity != (QuantumAny) pixel.opacity))
1914 break;
1915 }
1916 if (pixel.colorspace == CMYKColorspace)
1917 {
1918 if ((pixel.index < 0.0) ||
1919 (pixel.index > (MagickRealType) QuantumRange) ||
1920 (pixel.index != (QuantumAny) pixel.index))
1921 break;
1922 }
1923 p++;
1924 }
1925 if (x < (ssize_t) image->columns)
1926 status=MagickFalse;
1927 }
1928 image_view=DestroyCacheView(image_view);
1929 return(status != MagickFalse ? MagickFalse : MagickTrue);
1930#endif
1931}
1932
1933/*
1934%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1935% %
1936% %
1937% %
1938% I s I m a g e O b j e c t %
1939% %
1940% %
1941% %
1942%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1943%
1944% IsImageObject() returns MagickTrue if the image sequence contains a valid
1945% set of image objects.
1946%
1947% The format of the IsImageObject method is:
1948%
1949% MagickBooleanType IsImageObject(const Image *image)
1950%
1951% A description of each parameter follows:
1952%
1953% o image: the image.
1954%
1955*/
1956MagickExport MagickBooleanType IsImageObject(const Image *image)
1957{
1958 const Image
1959 *p;
1960
1961 assert(image != (Image *) NULL);
1962 if (IsEventLogging() != MagickFalse)
1963 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1964 for (p=image; p != (Image *) NULL; p=GetNextImageInList(p))
1965 if (p->signature != MagickCoreSignature)
1966 return(MagickFalse);
1967 return(MagickTrue);
1968}
1969
1970/*
1971%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1972% %
1973% %
1974% %
1975% I s T a i n t I m a g e %
1976% %
1977% %
1978% %
1979%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1980%
1981% IsTaintImage() returns MagickTrue any pixel in the image has been altered
1982% since it was first constituted.
1983%
1984% The format of the IsTaintImage method is:
1985%
1986% MagickBooleanType IsTaintImage(const Image *image)
1987%
1988% A description of each parameter follows:
1989%
1990% o image: the image.
1991%
1992*/
1993MagickExport MagickBooleanType IsTaintImage(const Image *image)
1994{
1995 char
1996 magick[MaxTextExtent],
1997 filename[MaxTextExtent];
1998
1999 const Image
2000 *p;
2001
2002 assert(image != (Image *) NULL);
2003 assert(image->signature == MagickCoreSignature);
2004 if (IsEventLogging() != MagickFalse)
2005 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2006 (void) CopyMagickString(magick,image->magick,MaxTextExtent);
2007 (void) CopyMagickString(filename,image->filename,MaxTextExtent);
2008 for (p=image; p != (Image *) NULL; p=GetNextImageInList(p))
2009 {
2010 if (p->taint != MagickFalse)
2011 return(MagickTrue);
2012 if (LocaleCompare(p->magick,magick) != 0)
2013 return(MagickTrue);
2014 if (LocaleCompare(p->filename,filename) != 0)
2015 return(MagickTrue);
2016 }
2017 return(MagickFalse);
2018}
2019
2020/*
2021%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2022% %
2023% %
2024% %
2025% M o d i f y I m a g e %
2026% %
2027% %
2028% %
2029%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2030%
2031% ModifyImage() ensures that there is only a single reference to the image
2032% to be modified, updating the provided image pointer to point to a clone of
2033% the original image if necessary.
2034%
2035% The format of the ModifyImage method is:
2036%
2037% MagickBooleanType ModifyImage(Image *image,ExceptionInfo *exception)
2038%
2039% A description of each parameter follows:
2040%
2041% o image: the image.
2042%
2043% o exception: return any errors or warnings in this structure.
2044%
2045*/
2046MagickExport MagickBooleanType ModifyImage(Image **image,
2047 ExceptionInfo *exception)
2048{
2049 Image
2050 *clone_image;
2051
2052 assert(image != (Image **) NULL);
2053 assert(*image != (Image *) NULL);
2054 assert((*image)->signature == MagickCoreSignature);
2055 if (IsEventLogging() != MagickFalse)
2056 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",(*image)->filename);
2057 if (GetImageReferenceCount(*image) <= 1)
2058 return(MagickTrue);
2059 clone_image=CloneImage(*image,0,0,MagickTrue,exception);
2060 LockSemaphoreInfo((*image)->semaphore);
2061 (*image)->reference_count--;
2062 UnlockSemaphoreInfo((*image)->semaphore);
2063 *image=clone_image;
2064 return(MagickTrue);
2065}
2066
2067/*
2068%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2069% %
2070% %
2071% %
2072% N e w M a g i c k I m a g e %
2073% %
2074% %
2075% %
2076%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2077%
2078% NewMagickImage() creates a blank image canvas of the specified size and
2079% background color.
2080%
2081% The format of the NewMagickImage method is:
2082%
2083% Image *NewMagickImage(const ImageInfo *image_info,const size_t width,
2084% const size_t height,const MagickPixelPacket *background)
2085%
2086% A description of each parameter follows:
2087%
2088% o image: the image.
2089%
2090% o width: the image width.
2091%
2092% o height: the image height.
2093%
2094% o background: the image color.
2095%
2096*/
2097MagickExport Image *NewMagickImage(const ImageInfo *image_info,
2098 const size_t width,const size_t height,const MagickPixelPacket *background)
2099{
2100 CacheView
2101 *image_view;
2102
2104 *exception;
2105
2106 Image
2107 *image;
2108
2109 ssize_t
2110 y;
2111
2112 MagickBooleanType
2113 status;
2114
2115 assert(image_info != (const ImageInfo *) NULL);
2116 assert(image_info->signature == MagickCoreSignature);
2117 assert(background != (const MagickPixelPacket *) NULL);
2118 if (IsEventLogging() != MagickFalse)
2119 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2120 image=AcquireImage(image_info);
2121 image->columns=width;
2122 image->rows=height;
2123 image->colorspace=background->colorspace;
2124 image->matte=background->matte;
2125 image->fuzz=background->fuzz;
2126 image->depth=background->depth;
2127 status=MagickTrue;
2128 exception=(&image->exception);
2129 image_view=AcquireAuthenticCacheView(image,exception);
2130#if defined(MAGICKCORE_OPENMP_SUPPORT)
2131 #pragma omp parallel for schedule(static) shared(status) \
2132 magick_number_threads(image,image,image->rows,1)
2133#endif
2134 for (y=0; y < (ssize_t) image->rows; y++)
2135 {
2136 IndexPacket
2137 *magick_restrict indexes;
2138
2140 *magick_restrict q;
2141
2142 ssize_t
2143 x;
2144
2145 if (status == MagickFalse)
2146 continue;
2147 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2148 if (q == (PixelPacket *) NULL)
2149 {
2150 status=MagickFalse;
2151 continue;
2152 }
2153 indexes=GetCacheViewAuthenticIndexQueue(image_view);
2154 for (x=0; x < (ssize_t) image->columns; x++)
2155 {
2156 SetPixelPacket(image,background,q,indexes+x);
2157 q++;
2158 }
2159 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2160 status=MagickFalse;
2161 }
2162 image_view=DestroyCacheView(image_view);
2163 if (status == MagickFalse)
2164 image=DestroyImage(image);
2165 return(image);
2166}
2167
2168/*
2169%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2170% %
2171% %
2172% %
2173% R e f e r e n c e I m a g e %
2174% %
2175% %
2176% %
2177%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2178%
2179% ReferenceImage() increments the reference count associated with an image
2180% returning a pointer to the image.
2181%
2182% The format of the ReferenceImage method is:
2183%
2184% Image *ReferenceImage(Image *image)
2185%
2186% A description of each parameter follows:
2187%
2188% o image: the image.
2189%
2190*/
2191MagickExport Image *ReferenceImage(Image *image)
2192{
2193 assert(image != (Image *) NULL);
2194 assert(image->signature == MagickCoreSignature);
2195 if (IsEventLogging() != MagickFalse)
2196 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2197 LockSemaphoreInfo(image->semaphore);
2198 image->reference_count++;
2199 UnlockSemaphoreInfo(image->semaphore);
2200 return(image);
2201}
2202
2203/*
2204%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2205% %
2206% %
2207% %
2208% R e s e t I m a g e P a g e %
2209% %
2210% %
2211% %
2212%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2213%
2214% ResetImagePage() resets the image page canvas and position.
2215%
2216% The format of the ResetImagePage method is:
2217%
2218% MagickBooleanType ResetImagePage(Image *image,const char *page)
2219%
2220% A description of each parameter follows:
2221%
2222% o image: the image.
2223%
2224% o page: the relative page specification.
2225%
2226*/
2227MagickExport MagickBooleanType ResetImagePage(Image *image,const char *page)
2228{
2229 MagickStatusType
2230 flags;
2231
2233 geometry;
2234
2235 assert(image != (Image *) NULL);
2236 assert(image->signature == MagickCoreSignature);
2237 if (IsEventLogging() != MagickFalse)
2238 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2239 flags=ParseAbsoluteGeometry(page,&geometry);
2240 if ((flags & WidthValue) != 0)
2241 {
2242 if ((flags & HeightValue) == 0)
2243 geometry.height=geometry.width;
2244 image->page.width=geometry.width;
2245 image->page.height=geometry.height;
2246 }
2247 if ((flags & AspectValue) != 0)
2248 {
2249 if ((flags & XValue) != 0)
2250 image->page.x+=geometry.x;
2251 if ((flags & YValue) != 0)
2252 image->page.y+=geometry.y;
2253 }
2254 else
2255 {
2256 if ((flags & XValue) != 0)
2257 {
2258 image->page.x=geometry.x;
2259 if ((image->page.width == 0) && (geometry.x > 0))
2260 image->page.width=(size_t) ((ssize_t) image->columns+geometry.x);
2261 }
2262 if ((flags & YValue) != 0)
2263 {
2264 image->page.y=geometry.y;
2265 if ((image->page.height == 0) && (geometry.y > 0))
2266 image->page.height=(size_t) ((ssize_t) image->rows+geometry.y);
2267 }
2268 }
2269 return(MagickTrue);
2270}
2271
2272/*
2273%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2274% %
2275% %
2276% %
2277% R e s e t I m a g e P i x e l s %
2278% %
2279% %
2280% %
2281%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2282%
2283% ResetImagePixels() reset the image pixels, that is, all the pixel components
2284% are zeroed.
2285%
2286% The format of the SetImage method is:
2287%
2288% MagickBooleanType ResetImagePixels(Image *image,
2289% ExceptionInfo *exception)
2290%
2291% A description of each parameter follows:
2292%
2293% o image: the image.
2294%
2295% o exception: return any errors or warnings in this structure.
2296%
2297*/
2298MagickExport MagickBooleanType ResetImagePixels(Image *image,
2299 ExceptionInfo *exception)
2300{
2301 CacheView
2302 *image_view;
2303
2304 const void
2305 *pixels;
2306
2307 MagickBooleanType
2308 status;
2309
2310 MagickSizeType
2311 length;
2312
2313 ssize_t
2314 y;
2315
2316 assert(image != (Image *) NULL);
2317 assert(image->signature == MagickCoreSignature);
2318 if (IsEventLogging() != MagickFalse)
2319 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2320 pixels=AcquirePixelCachePixels(image,&length,exception);
2321 if (pixels != (void *) NULL)
2322 {
2323 /*
2324 Reset in-core image pixels.
2325 */
2326 (void) memset((void *) pixels,0,(size_t) length);
2327 return(MagickTrue);
2328 }
2329 /*
2330 Reset image pixels.
2331 */
2332 status=MagickTrue;
2333 image_view=AcquireAuthenticCacheView(image,exception);
2334#if defined(MAGICKCORE_OPENMP_SUPPORT)
2335 #pragma omp parallel for schedule(static) shared(status) \
2336 magick_number_threads(image,image,image->rows,1)
2337#endif
2338 for (y=0; y < (ssize_t) image->rows; y++)
2339 {
2340 IndexPacket
2341 *magick_restrict indexes;
2342
2344 *magick_restrict q;
2345
2346 ssize_t
2347 x;
2348
2349 if (status == MagickFalse)
2350 continue;
2351 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2352 if (q == (PixelPacket *) NULL)
2353 {
2354 status=MagickFalse;
2355 continue;
2356 }
2357 indexes=GetCacheViewAuthenticIndexQueue(image_view);
2358 for (x=0; x < (ssize_t) image->columns; x++)
2359 {
2360 (void) memset(q,0,sizeof(PixelPacket));
2361 if ((image->storage_class == PseudoClass) ||
2362 (image->colorspace == CMYKColorspace))
2363 indexes[x]=0;
2364 q++;
2365 }
2366 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2367 status=MagickFalse;
2368 }
2369 image_view=DestroyCacheView(image_view);
2370 return(status);
2371}
2372
2373/*
2374%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2375% %
2376% %
2377% %
2378% S e t I m a g e B a c k g r o u n d C o l o r %
2379% %
2380% %
2381% %
2382%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2383%
2384% SetImageBackgroundColor() initializes the image pixels to the image
2385% background color. The background color is defined by the background_color
2386% member of the image structure.
2387%
2388% The format of the SetImage method is:
2389%
2390% MagickBooleanType SetImageBackgroundColor(Image *image)
2391%
2392% A description of each parameter follows:
2393%
2394% o image: the image.
2395%
2396*/
2397MagickExport MagickBooleanType SetImageBackgroundColor(Image *image)
2398{
2399 CacheView
2400 *image_view;
2401
2403 *exception;
2404
2405 IndexPacket
2406 index;
2407
2408 MagickBooleanType
2409 status;
2410
2412 background;
2413
2415 pixel;
2416
2417 ssize_t
2418 y;
2419
2420 assert(image != (Image *) NULL);
2421 assert(image->signature == MagickCoreSignature);
2422 if (IsEventLogging() != MagickFalse)
2423 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2424 if (SetImageStorageClass(image,DirectClass) == MagickFalse)
2425 return(MagickFalse);
2426 if ((IsPixelGray(&image->background_color) == MagickFalse) &&
2427 (IsGrayColorspace(image->colorspace) != MagickFalse))
2428 (void) TransformImageColorspace(image,RGBColorspace);
2429 if ((image->background_color.opacity != OpaqueOpacity) &&
2430 (image->matte == MagickFalse))
2431 (void) SetImageAlphaChannel(image,OpaqueAlphaChannel);
2432 GetMagickPixelPacket(image,&background);
2433 SetMagickPixelPacket(image,&image->background_color,(const IndexPacket *)
2434 NULL,&background);
2435 if (image->colorspace == CMYKColorspace)
2436 ConvertRGBToCMYK(&background);
2437 index=0;
2438 pixel.opacity=OpaqueOpacity;
2439 SetPixelPacket(image,&background,&pixel,&index);
2440 /*
2441 Set image background color.
2442 */
2443 status=MagickTrue;
2444 exception=(&image->exception);
2445 image_view=AcquireAuthenticCacheView(image,exception);
2446 for (y=0; y < (ssize_t) image->rows; y++)
2447 {
2449 *magick_restrict q;
2450
2451 ssize_t
2452 x;
2453
2454 if (status == MagickFalse)
2455 continue;
2456 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2457 if (q == (PixelPacket *) NULL)
2458 {
2459 status=MagickFalse;
2460 continue;
2461 }
2462 for (x=0; x < (ssize_t) image->columns; x++)
2463 *q++=pixel;
2464 if (image->colorspace == CMYKColorspace)
2465 {
2466 IndexPacket
2467 *magick_restrict indexes;
2468
2469 indexes=GetCacheViewAuthenticIndexQueue(image_view);
2470 for (x=0; x < (ssize_t) image->columns; x++)
2471 SetPixelIndex(indexes+x,index);
2472 }
2473 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2474 status=MagickFalse;
2475 }
2476 image_view=DestroyCacheView(image_view);
2477 return(status);
2478}
2479
2480/*
2481%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2482% %
2483% %
2484% %
2485% S e t I m a g e C h a n n e l s %
2486% %
2487% %
2488% %
2489%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2490%
2491% SetImageChannels() sets the number of pixels channels associated with the
2492% image.
2493%
2494% The format of the SetImageChannels method is:
2495%
2496% MagickBooleanType SetImageChannels(Image *image,const size_t channels)
2497%
2498% A description of each parameter follows:
2499%
2500% o image: the image.
2501%
2502% o channels: The number of pixel channels.
2503%
2504*/
2505MagickExport MagickBooleanType SetImageChannels(Image *image,
2506 const size_t channels)
2507{
2508 image->channels=channels;
2509 return(MagickTrue);
2510}
2511
2512/*
2513%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2514% %
2515% %
2516% %
2517% S e t I m a g e C o l o r %
2518% %
2519% %
2520% %
2521%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2522%
2523% SetImageColor() set the entire image canvas to the specified color.
2524%
2525% The format of the SetImageColor method is:
2526%
2527% MagickBooleanType SetImageColor(Image *image,
2528% const MagickPixelPacket *color)
2529%
2530% A description of each parameter follows:
2531%
2532% o image: the image.
2533%
2534% o background: the image color.
2535%
2536*/
2537MagickExport MagickBooleanType SetImageColor(Image *image,
2538 const MagickPixelPacket *color)
2539{
2540 CacheView
2541 *image_view;
2542
2544 *exception;
2545
2546 MagickBooleanType
2547 status;
2548
2549 ssize_t
2550 y;
2551
2552 assert(image != (Image *) NULL);
2553 assert(image->signature == MagickCoreSignature);
2554 assert(color != (const MagickPixelPacket *) NULL);
2555 if (IsEventLogging() != MagickFalse)
2556 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2557 image->colorspace=color->colorspace;
2558 image->matte=color->matte;
2559 image->fuzz=color->fuzz;
2560 image->depth=color->depth;
2561 status=MagickTrue;
2562 exception=(&image->exception);
2563 image_view=AcquireAuthenticCacheView(image,exception);
2564#if defined(MAGICKCORE_OPENMP_SUPPORT)
2565 #pragma omp parallel for schedule(static) shared(status) \
2566 magick_number_threads(image,image,image->rows,1)
2567#endif
2568 for (y=0; y < (ssize_t) image->rows; y++)
2569 {
2570 IndexPacket
2571 *magick_restrict indexes;
2572
2574 *magick_restrict q;
2575
2576 ssize_t
2577 x;
2578
2579 if (status == MagickFalse)
2580 continue;
2581 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2582 if (q == (PixelPacket *) NULL)
2583 {
2584 status=MagickFalse;
2585 continue;
2586 }
2587 indexes=GetCacheViewAuthenticIndexQueue(image_view);
2588 for (x=0; x < (ssize_t) image->columns; x++)
2589 {
2590 SetPixelPacket(image,color,q,
2591 indexes == (IndexPacket *) NULL ? NULL : indexes+x);
2592 q++;
2593 }
2594 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2595 status=MagickFalse;
2596 }
2597 image_view=DestroyCacheView(image_view);
2598 return(status);
2599}
2600
2601/*
2602%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2603% %
2604% %
2605% %
2606% S e t I m a g e S t o r a g e C l a s s %
2607% %
2608% %
2609% %
2610%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2611%
2612% SetImageStorageClass() sets the image class: DirectClass for true color
2613% images or PseudoClass for colormapped images.
2614%
2615% The format of the SetImageStorageClass method is:
2616%
2617% MagickBooleanType SetImageStorageClass(Image *image,
2618% const ClassType storage_class)
2619%
2620% A description of each parameter follows:
2621%
2622% o image: the image.
2623%
2624% o storage_class: The image class.
2625%
2626*/
2627MagickExport MagickBooleanType SetImageStorageClass(Image *image,
2628 const ClassType storage_class)
2629{
2630 assert(image != (Image *) NULL);
2631 assert(image->signature == MagickCoreSignature);
2632 if (IsEventLogging() != MagickFalse)
2633 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2634 image->storage_class=storage_class;
2635 return(SyncImagePixelCache(image,&image->exception));
2636}
2637
2638/*
2639%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2640% %
2641% %
2642% %
2643% S e t I m a g e C l i p M a s k %
2644% %
2645% %
2646% %
2647%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2648%
2649% SetImageClipMask() associates a clip path with the image. The clip path
2650% must be the same dimensions as the image. Set any pixel component of
2651% the clip path to TransparentOpacity to prevent that corresponding image
2652% pixel component from being updated when SyncAuthenticPixels() is applied.
2653%
2654% The format of the SetImageClipMask method is:
2655%
2656% MagickBooleanType SetImageClipMask(Image *image,const Image *clip_mask)
2657%
2658% A description of each parameter follows:
2659%
2660% o image: the image.
2661%
2662% o clip_mask: the image clip path.
2663%
2664*/
2665MagickExport MagickBooleanType SetImageClipMask(Image *image,
2666 const Image *clip_mask)
2667{
2668 assert(image != (Image *) NULL);
2669 assert(image->signature == MagickCoreSignature);
2670 if (IsEventLogging() != MagickFalse)
2671 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
2672 if (clip_mask != (const Image *) NULL)
2673 if ((clip_mask->columns != image->columns) ||
2674 (clip_mask->rows != image->rows))
2675 ThrowBinaryImageException(ImageError,"ImageSizeDiffers",image->filename);
2676 if (image->clip_mask != (Image *) NULL)
2677 image->clip_mask=DestroyImage(image->clip_mask);
2678 image->clip_mask=NewImageList();
2679 if (clip_mask == (Image *) NULL)
2680 return(MagickTrue);
2681 if (SetImageStorageClass(image,DirectClass) == MagickFalse)
2682 return(MagickFalse);
2683 image->clip_mask=CloneImage(clip_mask,0,0,MagickTrue,&image->exception);
2684 if (image->clip_mask == (Image *) NULL)
2685 return(MagickFalse);
2686 return(MagickTrue);
2687}
2688
2689/*
2690%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2691% %
2692% %
2693% %
2694% S e t I m a g e E x t e n t %
2695% %
2696% %
2697% %
2698%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2699%
2700% SetImageExtent() sets the image size (i.e. columns & rows).
2701%
2702% The format of the SetImageExtent method is:
2703%
2704% MagickBooleanType SetImageExtent(Image *image,const size_t columns,
2705% const size_t rows)
2706%
2707% A description of each parameter follows:
2708%
2709% o image: the image.
2710%
2711% o columns: The image width in pixels.
2712%
2713% o rows: The image height in pixels.
2714%
2715*/
2716MagickExport MagickBooleanType SetImageExtent(Image *image,const size_t columns,
2717 const size_t rows)
2718{
2719 if ((columns == 0) || (rows == 0))
2720 ThrowBinaryImageException(ImageError,"NegativeOrZeroImageSize",
2721 image->filename);
2722 image->columns=columns;
2723 image->rows=rows;
2724 if (image->depth == 0)
2725 {
2726 image->depth=8;
2727 (void) ThrowMagickException(&image->exception,GetMagickModule(),
2728 ImageError,"ImageDepthNotSupported","`%s'",image->filename);
2729 }
2730 if (image->depth > (8*sizeof(MagickSizeType)))
2731 {
2732 image->depth=8*sizeof(MagickSizeType);
2733 (void) ThrowMagickException(&image->exception,GetMagickModule(),
2734 ImageError,"ImageDepthNotSupported","`%s'",image->filename);
2735 }
2736 return(SyncImagePixelCache(image,&image->exception));
2737}
2738
2739/*
2740%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2741% %
2742% %
2743% %
2744+ S e t I m a g e I n f o %
2745% %
2746% %
2747% %
2748%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2749%
2750% SetImageInfo() initializes the `magick' field of the ImageInfo structure.
2751% It is set to a type of image format based on the prefix or suffix of the
2752% filename. For example, `ps:image' returns PS indicating a Postscript image.
2753% JPEG is returned for this filename: `image.jpg'. The filename prefix has
2754% precendence over the suffix. Use an optional index enclosed in brackets
2755% after a file name to specify a desired scene of a multi-resolution image
2756% format like Photo CD (e.g. img0001.pcd[4]). A True (non-zero) return value
2757% indicates success.
2758%
2759% The format of the SetImageInfo method is:
2760%
2761% MagickBooleanType SetImageInfo(ImageInfo *image_info,
2762% const unsigned int frames,ExceptionInfo *exception)
2763%
2764% A description of each parameter follows:
2765%
2766% o image_info: the image info.
2767%
2768% o frames: the number of images you intend to write.
2769%
2770% o exception: return any errors or warnings in this structure.
2771%
2772*/
2773MagickExport MagickBooleanType SetImageInfo(ImageInfo *image_info,
2774 const unsigned int frames,ExceptionInfo *exception)
2775{
2776 char
2777 extension[MaxTextExtent],
2778 filename[MaxTextExtent],
2779 magic[MaxTextExtent],
2780 *q,
2781 subimage[MaxTextExtent];
2782
2783 const MagicInfo
2784 *magic_info;
2785
2786 const MagickInfo
2787 *magick_info;
2788
2790 *sans_exception;
2791
2792 Image
2793 *image;
2794
2795 MagickBooleanType
2796 status;
2797
2798 const char
2799 *p;
2800
2801 ssize_t
2802 count;
2803
2804 unsigned char
2805 magick[2*MaxTextExtent];
2806
2807 /*
2808 Look for 'image.format' in filename.
2809 */
2810 assert(image_info != (ImageInfo *) NULL);
2811 assert(image_info->signature == MagickCoreSignature);
2812 if (IsEventLogging() != MagickFalse)
2813 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
2814 image_info->filename);
2815 *subimage='\0';
2816 GetPathComponent(image_info->filename,SubimagePath,subimage);
2817 if (*subimage != '\0')
2818 {
2819 /*
2820 Look for scene specification (e.g. img0001.pcd[4]).
2821 */
2822 if (IsSceneGeometry(subimage,MagickFalse) == MagickFalse)
2823 {
2824 if (IsGeometry(subimage) != MagickFalse)
2825 (void) CloneString(&image_info->extract,subimage);
2826 }
2827 else
2828 {
2829 size_t
2830 first,
2831 last;
2832
2833 (void) CloneString(&image_info->scenes,subimage);
2834 image_info->scene=StringToUnsignedLong(image_info->scenes);
2835 image_info->number_scenes=image_info->scene;
2836 p=image_info->scenes;
2837 for (q=(char *) image_info->scenes; *q != '\0'; p++)
2838 {
2839 while ((isspace((int) ((unsigned char) *p)) != 0) || (*p == ','))
2840 p++;
2841 first=(size_t) strtol(p,&q,10);
2842 last=first;
2843 while (isspace((int) ((unsigned char) *q)) != 0)
2844 q++;
2845 if (*q == '-')
2846 last=(size_t) strtol(q+1,&q,10);
2847 if (first > last)
2848 Swap(first,last);
2849 if (first < image_info->scene)
2850 image_info->scene=first;
2851 if (last > image_info->number_scenes)
2852 image_info->number_scenes=last;
2853 p=q;
2854 }
2855 image_info->number_scenes-=image_info->scene-1;
2856 image_info->subimage=image_info->scene;
2857 image_info->subrange=image_info->number_scenes;
2858 }
2859 }
2860 *extension='\0';
2861 if (*image_info->magick == '\0')
2862 GetPathComponent(image_info->filename,ExtensionPath,extension);
2863 if (*extension != '\0')
2864 {
2865 char
2866 path[MaxTextExtent];
2867
2868 /*
2869 Base path sans any compression extension.
2870 */
2871 GetPathComponent(image_info->filename,BasePathSansCompressExtension,path);
2872 GetPathComponent(path,ExtensionPath,extension);
2873 }
2874 image_info->affirm=MagickFalse;
2875 sans_exception=AcquireExceptionInfo();
2876 if ((*extension != '\0') && (IsGlob(extension) == MagickFalse))
2877 {
2878 MagickFormatType
2879 format_type;
2880
2881 ssize_t
2882 i;
2883
2884 static const char
2885 *format_type_formats[] =
2886 {
2887 "AUTOTRACE",
2888 "BROWSE",
2889 "DCRAW",
2890 "EDIT",
2891 "LAUNCH",
2892 "MPEG:DECODE",
2893 "MPEG:ENCODE",
2894 "PRINT",
2895 "PS:ALPHA",
2896 "PS:CMYK",
2897 "PS:COLOR",
2898 "PS:GRAY",
2899 "PS:MONO",
2900 "SCAN",
2901 "SHOW",
2902 "WIN",
2903 (char *) NULL
2904 };
2905
2906 /*
2907 User specified image format.
2908 */
2909 (void) CopyMagickString(magic,extension,MaxTextExtent);
2910 LocaleUpper(magic);
2911 /*
2912 Look for explicit image formats.
2913 */
2914 format_type=UndefinedFormatType;
2915 i=0;
2916 while ((format_type == UndefinedFormatType) &&
2917 (format_type_formats[i] != (char *) NULL))
2918 {
2919 if ((*magic == *format_type_formats[i]) &&
2920 (LocaleCompare(magic,format_type_formats[i]) == 0))
2921 format_type=ExplicitFormatType;
2922 i++;
2923 }
2924 magick_info=GetMagickInfo(magic,sans_exception);
2925 if ((magick_info != (const MagickInfo *) NULL) &&
2926 (magick_info->format_type != UndefinedFormatType))
2927 format_type=magick_info->format_type;
2928 if (format_type == UndefinedFormatType)
2929 (void) CopyMagickString(image_info->magick,magic,MaxTextExtent);
2930 else
2931 if (format_type == ExplicitFormatType)
2932 {
2933 image_info->affirm=MagickTrue;
2934 (void) CopyMagickString(image_info->magick,magic,MaxTextExtent);
2935 }
2936 if (LocaleCompare(magic,"RGB") == 0)
2937 image_info->affirm=MagickFalse; /* maybe SGI disguised as RGB */
2938 }
2939 /*
2940 Look for explicit 'format:image' in filename.
2941 */
2942 *magic='\0';
2943 GetPathComponent(image_info->filename,MagickPath,magic);
2944 if (*magic == '\0')
2945 {
2946 (void) CopyMagickString(magic,image_info->magick,MaxTextExtent);
2947 magick_info=GetMagickInfo(magic,sans_exception);
2948 if ((magick_info != (const MagickInfo *) NULL) &&
2949 (magick_info->format_type == ExplicitFormatType))
2950 image_info->affirm=MagickTrue;
2951 if (frames == 0)
2952 GetPathComponent(image_info->filename,CanonicalPath,filename);
2953 else
2954 GetPathComponent(image_info->filename,SubcanonicalPath,filename);
2955 (void) CopyMagickString(image_info->filename,filename,MaxTextExtent);
2956 }
2957 else
2958 {
2959 const DelegateInfo
2960 *delegate_info;
2961
2962 /*
2963 User specified image format.
2964 */
2965 LocaleUpper(magic);
2966 magick_info=GetMagickInfo(magic,sans_exception);
2967 delegate_info=GetDelegateInfo(magic,"*",sans_exception);
2968 if (delegate_info == (const DelegateInfo *) NULL)
2969 delegate_info=GetDelegateInfo("*",magic,sans_exception);
2970 if (((magick_info != (const MagickInfo *) NULL) ||
2971 (delegate_info != (const DelegateInfo *) NULL)) &&
2972 (IsMagickConflict(magic) == MagickFalse))
2973 {
2974 image_info->affirm=MagickTrue;
2975 (void) CopyMagickString(image_info->magick,magic,MaxTextExtent);
2976 GetPathComponent(image_info->filename,CanonicalPath,filename);
2977 (void) CopyMagickString(image_info->filename,filename,MaxTextExtent);
2978 }
2979 }
2980 sans_exception=DestroyExceptionInfo(sans_exception);
2981 if ((magick_info == (const MagickInfo *) NULL) ||
2982 (GetMagickEndianSupport(magick_info) == MagickFalse))
2983 image_info->endian=UndefinedEndian;
2984 if ((image_info->adjoin != MagickFalse) && (frames > 1))
2985 {
2986 /*
2987 Test for multiple image support (e.g. image%02d.png).
2988 */
2989 (void) InterpretImageFilename(image_info,(Image *) NULL,
2990 image_info->filename,(int) image_info->scene,filename);
2991 if ((LocaleCompare(filename,image_info->filename) != 0) &&
2992 (strchr(filename,'%') == (char *) NULL))
2993 image_info->adjoin=MagickFalse;
2994 }
2995 if ((image_info->adjoin != MagickFalse) && (frames > 0))
2996 {
2997 /*
2998 Some image formats do not support multiple frames per file.
2999 */
3000 magick_info=GetMagickInfo(magic,exception);
3001 if (magick_info != (const MagickInfo *) NULL)
3002 if (GetMagickAdjoin(magick_info) == MagickFalse)
3003 image_info->adjoin=MagickFalse;
3004 }
3005 if (image_info->affirm != MagickFalse)
3006 return(MagickTrue);
3007 if (frames == 0)
3008 {
3009 /*
3010 Determine the image format from the first few bytes of the file.
3011 */
3012 image=AcquireImage(image_info);
3013 (void) CopyMagickString(image->filename,image_info->filename,
3014 MaxTextExtent);
3015 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
3016 if (status == MagickFalse)
3017 {
3018 image=DestroyImage(image);
3019 return(MagickFalse);
3020 }
3021 if ((IsBlobSeekable(image) == MagickFalse) ||
3022 (IsBlobExempt(image) != MagickFalse))
3023 {
3024 /*
3025 Copy image to a seekable temporary file.
3026 */
3027 *filename='\0';
3028 status=ImageToFile(image,filename,exception);
3029 (void) CloseBlob(image);
3030 if (status == MagickFalse)
3031 {
3032 (void) RelinquishUniqueFileResource(filename);
3033 image=DestroyImage(image);
3034 return(MagickFalse);
3035 }
3036 SetImageInfoFile(image_info,(FILE *) NULL);
3037 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
3038 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
3039 if (status == MagickFalse)
3040 {
3041 (void) RelinquishUniqueFileResource(filename);
3042 image=DestroyImage(image);
3043 return(MagickFalse);
3044 }
3045 (void) CopyMagickString(image_info->filename,filename,MaxTextExtent);
3046 image_info->temporary=MagickTrue;
3047 }
3048 (void) memset(magick,0,sizeof(magick));
3049 count=ReadBlob(image,2*MaxTextExtent,magick);
3050 (void) SeekBlob(image,-((MagickOffsetType) count),SEEK_CUR);
3051 (void) CloseBlob(image);
3052 image=DestroyImage(image);
3053 /*
3054 Check magic.xml configuration file.
3055 */
3056 sans_exception=AcquireExceptionInfo();
3057 magic_info=GetMagicInfo(magick,(size_t) count,sans_exception);
3058 if ((magic_info != (const MagicInfo *) NULL) &&
3059 (GetMagicName(magic_info) != (char *) NULL))
3060 {
3061 (void) CopyMagickString(image_info->magick,GetMagicName(magic_info),
3062 MaxTextExtent);
3063 magick_info=GetMagickInfo(image_info->magick,sans_exception);
3064 if ((magick_info == (const MagickInfo *) NULL) ||
3065 (GetMagickEndianSupport(magick_info) == MagickFalse))
3066 image_info->endian=UndefinedEndian;
3067 sans_exception=DestroyExceptionInfo(sans_exception);
3068 return(MagickTrue);
3069 }
3070 magick_info=GetMagickInfo(image_info->magick,sans_exception);
3071 if ((magick_info == (const MagickInfo *) NULL) ||
3072 (GetMagickEndianSupport(magick_info) == MagickFalse))
3073 image_info->endian=UndefinedEndian;
3074 sans_exception=DestroyExceptionInfo(sans_exception);
3075 }
3076 return(MagickTrue);
3077}
3078
3079/*
3080%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3081% %
3082% %
3083% %
3084% S e t I m a g e I n f o B l o b %
3085% %
3086% %
3087% %
3088%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3089%
3090% SetImageInfoBlob() sets the image info blob member.
3091%
3092% The format of the SetImageInfoBlob method is:
3093%
3094% void SetImageInfoBlob(ImageInfo *image_info,const void *blob,
3095% const size_t length)
3096%
3097% A description of each parameter follows:
3098%
3099% o image_info: the image info.
3100%
3101% o blob: the blob.
3102%
3103% o length: the blob length.
3104%
3105*/
3106MagickExport void SetImageInfoBlob(ImageInfo *image_info,const void *blob,
3107 const size_t length)
3108{
3109 assert(image_info != (ImageInfo *) NULL);
3110 assert(image_info->signature == MagickCoreSignature);
3111 if (IsEventLogging() != MagickFalse)
3112 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
3113 image_info->filename);
3114 image_info->blob=(void *) blob;
3115 image_info->length=length;
3116}
3117
3118/*
3119%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3120% %
3121% %
3122% %
3123% S e t I m a g e I n f o F i l e %
3124% %
3125% %
3126% %
3127%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3128%
3129% SetImageInfoFile() sets the image info file member.
3130%
3131% The format of the SetImageInfoFile method is:
3132%
3133% void SetImageInfoFile(ImageInfo *image_info,FILE *file)
3134%
3135% A description of each parameter follows:
3136%
3137% o image_info: the image info.
3138%
3139% o file: the file.
3140%
3141*/
3142MagickExport void SetImageInfoFile(ImageInfo *image_info,FILE *file)
3143{
3144 assert(image_info != (ImageInfo *) NULL);
3145 assert(image_info->signature == MagickCoreSignature);
3146 if (IsEventLogging() != MagickFalse)
3147 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
3148 image_info->filename);
3149 image_info->file=file;
3150}
3151
3152/*
3153%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3154% %
3155% %
3156% %
3157% S e t I m a g e M a s k %
3158% %
3159% %
3160% %
3161%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3162%
3163% SetImageMask() associates a mask with the image. The mask must be the same
3164% dimensions as the image.
3165%
3166% The format of the SetImageMask method is:
3167%
3168% MagickBooleanType SetImageMask(Image *image,const Image *mask)
3169%
3170% A description of each parameter follows:
3171%
3172% o image: the image.
3173%
3174% o mask: the image mask.
3175%
3176*/
3177MagickExport MagickBooleanType SetImageMask(Image *image,const Image *mask)
3178{
3179 assert(image != (Image *) NULL);
3180 assert(image->signature == MagickCoreSignature);
3181 if (IsEventLogging() != MagickFalse)
3182 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
3183 if (mask != (const Image *) NULL)
3184 if ((mask->columns != image->columns) || (mask->rows != image->rows))
3185 ThrowBinaryImageException(ImageError,"ImageSizeDiffers",image->filename);
3186 if (image->mask != (Image *) NULL)
3187 image->mask=DestroyImage(image->mask);
3188 image->mask=NewImageList();
3189 if (mask == (Image *) NULL)
3190 return(MagickTrue);
3191 if (SetImageStorageClass(image,DirectClass) == MagickFalse)
3192 return(MagickFalse);
3193 image->mask=CloneImage(mask,0,0,MagickTrue,&image->exception);
3194 if (image->mask == (Image *) NULL)
3195 return(MagickFalse);
3196 return(MagickTrue);
3197}
3198
3199/*
3200%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3201% %
3202% %
3203% %
3204% S e t I m a g e O p a c i t y %
3205% %
3206% %
3207% %
3208%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3209%
3210% SetImageOpacity() sets the opacity levels of the image.
3211%
3212% The format of the SetImageOpacity method is:
3213%
3214% MagickBooleanType SetImageOpacity(Image *image,const Quantum opacity)
3215%
3216% A description of each parameter follows:
3217%
3218% o image: the image.
3219%
3220% o opacity: the level of transparency: 0 is fully opaque and QuantumRange is
3221% fully transparent.
3222%
3223*/
3224MagickExport MagickBooleanType SetImageOpacity(Image *image,
3225 const Quantum opacity)
3226{
3227 CacheView
3228 *image_view;
3229
3231 *exception;
3232
3233 MagickBooleanType
3234 status;
3235
3236 ssize_t
3237 y;
3238
3239 assert(image != (Image *) NULL);
3240 assert(image->signature == MagickCoreSignature);
3241 if (IsEventLogging() != MagickFalse)
3242 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
3243 image->matte=MagickTrue;
3244 status=MagickTrue;
3245 exception=(&image->exception);
3246 image_view=AcquireAuthenticCacheView(image,exception);
3247#if defined(MAGICKCORE_OPENMP_SUPPORT)
3248 #pragma omp parallel for schedule(static) shared(status) \
3249 magick_number_threads(image,image,image->rows,1)
3250#endif
3251 for (y=0; y < (ssize_t) image->rows; y++)
3252 {
3254 *magick_restrict q;
3255
3256 ssize_t
3257 x;
3258
3259 if (status == MagickFalse)
3260 continue;
3261 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
3262 if (q == (PixelPacket *) NULL)
3263 {
3264 status=MagickFalse;
3265 continue;
3266 }
3267 for (x=0; x < (ssize_t) image->columns; x++)
3268 {
3269 SetPixelOpacity(q,opacity);
3270 q++;
3271 }
3272 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3273 status=MagickFalse;
3274 }
3275 image_view=DestroyCacheView(image_view);
3276 return(status);
3277}
3278
3279/*
3280%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3281% %
3282% %
3283% %
3284% S e t I m a g e V i r t u a l P i x e l M e t h o d %
3285% %
3286% %
3287% %
3288%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3289%
3290% SetImageVirtualPixelMethod() sets the "virtual pixels" method for the
3291% image and returns the previous setting. A virtual pixel is any pixel access
3292% that is outside the boundaries of the image cache.
3293%
3294% The format of the SetImageVirtualPixelMethod() method is:
3295%
3296% VirtualPixelMethod SetImageVirtualPixelMethod(const Image *image,
3297% const VirtualPixelMethod virtual_pixel_method)
3298%
3299% A description of each parameter follows:
3300%
3301% o image: the image.
3302%
3303% o virtual_pixel_method: choose the type of virtual pixel.
3304%
3305*/
3306MagickExport VirtualPixelMethod SetImageVirtualPixelMethod(const Image *image,
3307 const VirtualPixelMethod virtual_pixel_method)
3308{
3309 assert(image != (const Image *) NULL);
3310 assert(image->signature == MagickCoreSignature);
3311 if (IsEventLogging() != MagickFalse)
3312 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3313 return(SetPixelCacheVirtualMethod(image,virtual_pixel_method));
3314}
3315
3316/*
3317%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3318% %
3319% %
3320% %
3321% S m u s h I m a g e s %
3322% %
3323% %
3324% %
3325%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3326%
3327% SmushImages() takes all images from the current image pointer to the end
3328% of the image list and smushes them to each other top-to-bottom if the
3329% stack parameter is true, otherwise left-to-right.
3330%
3331% The current gravity setting now effects how the image is justified in the
3332% final image.
3333%
3334% The format of the SmushImages method is:
3335%
3336% Image *SmushImages(const Image *images,const MagickBooleanType stack,
3337% ExceptionInfo *exception)
3338%
3339% A description of each parameter follows:
3340%
3341% o images: the image sequence.
3342%
3343% o stack: A value other than 0 stacks the images top-to-bottom.
3344%
3345% o offset: minimum distance in pixels between images.
3346%
3347% o exception: return any errors or warnings in this structure.
3348%
3349*/
3350
3351static ssize_t SmushXGap(const Image *smush_image,const Image *images,
3352 const ssize_t offset,ExceptionInfo *exception)
3353{
3354 CacheView
3355 *left_view,
3356 *right_view;
3357
3358 const Image
3359 *left_image,
3360 *right_image;
3361
3363 left_geometry,
3364 right_geometry;
3365
3366 const PixelPacket
3367 *p;
3368
3369 ssize_t
3370 i,
3371 y;
3372
3373 size_t
3374 gap;
3375
3376 ssize_t
3377 x;
3378
3379 if (images->previous == (Image *) NULL)
3380 return(0);
3381 right_image=images;
3382 SetGeometry(smush_image,&right_geometry);
3383 GravityAdjustGeometry(right_image->columns,right_image->rows,
3384 right_image->gravity,&right_geometry);
3385 left_image=images->previous;
3386 SetGeometry(smush_image,&left_geometry);
3387 GravityAdjustGeometry(left_image->columns,left_image->rows,
3388 left_image->gravity,&left_geometry);
3389 gap=right_image->columns;
3390 left_view=AcquireVirtualCacheView(left_image,exception);
3391 right_view=AcquireVirtualCacheView(right_image,exception);
3392 for (y=0; y < (ssize_t) smush_image->rows; y++)
3393 {
3394 for (x=(ssize_t) left_image->columns-1; x > 0; x--)
3395 {
3396 p=GetCacheViewVirtualPixels(left_view,x,left_geometry.y+y,1,1,exception);
3397 if ((p == (const PixelPacket *) NULL) ||
3398 (GetPixelOpacity(p) != TransparentOpacity) ||
3399 (((ssize_t) left_image->columns-x-1) >= (ssize_t) gap))
3400 break;
3401 }
3402 i=(ssize_t) left_image->columns-x-1;
3403 for (x=0; x < (ssize_t) right_image->columns; x++)
3404 {
3405 p=GetCacheViewVirtualPixels(right_view,x,right_geometry.y+y,1,1,
3406 exception);
3407 if ((p == (const PixelPacket *) NULL) ||
3408 (GetPixelOpacity(p) != TransparentOpacity) ||
3409 ((x+i) >= (ssize_t) gap))
3410 break;
3411 }
3412 if ((x+i) < (ssize_t) gap)
3413 gap=(size_t) (x+i);
3414 }
3415 right_view=DestroyCacheView(right_view);
3416 left_view=DestroyCacheView(left_view);
3417 if (y < (ssize_t) smush_image->rows)
3418 return(offset);
3419 return((ssize_t) gap-offset);
3420}
3421
3422static ssize_t SmushYGap(const Image *smush_image,const Image *images,
3423 const ssize_t offset,ExceptionInfo *exception)
3424{
3425 CacheView
3426 *bottom_view,
3427 *top_view;
3428
3429 const Image
3430 *bottom_image,
3431 *top_image;
3432
3434 bottom_geometry,
3435 top_geometry;
3436
3437 const PixelPacket
3438 *p;
3439
3440 ssize_t
3441 i,
3442 x;
3443
3444 size_t
3445 gap;
3446
3447 ssize_t
3448 y;
3449
3450 if (images->previous == (Image *) NULL)
3451 return(0);
3452 bottom_image=images;
3453 SetGeometry(smush_image,&bottom_geometry);
3454 GravityAdjustGeometry(bottom_image->columns,bottom_image->rows,
3455 bottom_image->gravity,&bottom_geometry);
3456 top_image=images->previous;
3457 SetGeometry(smush_image,&top_geometry);
3458 GravityAdjustGeometry(top_image->columns,top_image->rows,top_image->gravity,
3459 &top_geometry);
3460 gap=bottom_image->rows;
3461 top_view=AcquireVirtualCacheView(top_image,exception);
3462 bottom_view=AcquireVirtualCacheView(bottom_image,exception);
3463 for (x=0; x < (ssize_t) smush_image->columns; x++)
3464 {
3465 for (y=(ssize_t) top_image->rows-1; y > 0; y--)
3466 {
3467 p=GetCacheViewVirtualPixels(top_view,top_geometry.x+x,y,1,1,exception);
3468 if ((p == (const PixelPacket *) NULL) ||
3469 (GetPixelOpacity(p) != TransparentOpacity) ||
3470 (((ssize_t) top_image->rows-y-1) >= (ssize_t) gap))
3471 break;
3472 }
3473 i=(ssize_t) top_image->rows-y-1;
3474 for (y=0; y < (ssize_t) bottom_image->rows; y++)
3475 {
3476 p=GetCacheViewVirtualPixels(bottom_view,bottom_geometry.x+x,y,1,1,
3477 exception);
3478 if ((p == (const PixelPacket *) NULL) ||
3479 (GetPixelOpacity(p) != TransparentOpacity) ||
3480 ((y+i) >= (ssize_t) gap))
3481 break;
3482 }
3483 if ((y+i) < (ssize_t) gap)
3484 gap=(size_t) (y+i);
3485 }
3486 bottom_view=DestroyCacheView(bottom_view);
3487 top_view=DestroyCacheView(top_view);
3488 if (x < (ssize_t) smush_image->columns)
3489 return(offset);
3490 return((ssize_t) gap-offset);
3491}
3492
3493MagickExport Image *SmushImages(const Image *images,
3494 const MagickBooleanType stack,const ssize_t offset,ExceptionInfo *exception)
3495{
3496#define SmushImageTag "Smush/Image"
3497
3498 CacheView
3499 *smush_view;
3500
3501 const Image
3502 *image;
3503
3504 Image
3505 *smush_image;
3506
3507 MagickBooleanType
3508 matte,
3509 proceed,
3510 status;
3511
3512 MagickOffsetType
3513 n;
3514
3516 geometry;
3517
3518 const Image
3519 *next;
3520
3521 size_t
3522 height,
3523 number_images,
3524 width;
3525
3526 ssize_t
3527 x_offset,
3528 y_offset;
3529
3530 /*
3531 Compute maximum area of smushed area.
3532 */
3533 assert(images != (Image *) NULL);
3534 assert(images->signature == MagickCoreSignature);
3535 assert(exception != (ExceptionInfo *) NULL);
3536 assert(exception->signature == MagickCoreSignature);
3537 if (IsEventLogging() != MagickFalse)
3538 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
3539 image=images;
3540 matte=image->matte;
3541 number_images=1;
3542 width=image->columns;
3543 height=image->rows;
3544 next=GetNextImageInList(image);
3545 for ( ; next != (Image *) NULL; next=GetNextImageInList(next))
3546 {
3547 if (next->matte != MagickFalse)
3548 matte=MagickTrue;
3549 number_images++;
3550 if (stack != MagickFalse)
3551 {
3552 if (next->columns > width)
3553 width=next->columns;
3554 height+=next->rows;
3555 if (next->previous != (Image *) NULL)
3556 height=(size_t) MagickMax((ssize_t) height+offset,0U);
3557 continue;
3558 }
3559 width+=next->columns;
3560 if (next->previous != (Image *) NULL)
3561 width=(size_t) MagickMax((ssize_t) width+offset,0U);
3562 if (next->rows > height)
3563 height=next->rows;
3564 }
3565 /*
3566 Smush images.
3567 */
3568 smush_image=CloneImage(image,width,height,MagickTrue,exception);
3569 if (smush_image == (Image *) NULL)
3570 return((Image *) NULL);
3571 if (SetImageStorageClass(smush_image,DirectClass) == MagickFalse)
3572 {
3573 InheritException(exception,&smush_image->exception);
3574 smush_image=DestroyImage(smush_image);
3575 return((Image *) NULL);
3576 }
3577 smush_image->matte=matte;
3578 (void) SetImageBackgroundColor(smush_image);
3579 status=MagickTrue;
3580 x_offset=0;
3581 y_offset=0;
3582 smush_view=AcquireVirtualCacheView(smush_image,exception);
3583 for (n=0; n < (MagickOffsetType) number_images; n++)
3584 {
3585 SetGeometry(smush_image,&geometry);
3586 GravityAdjustGeometry(image->columns,image->rows,image->gravity,&geometry);
3587 if (stack != MagickFalse)
3588 {
3589 x_offset-=geometry.x;
3590 y_offset-=SmushYGap(smush_image,image,offset,exception);
3591 }
3592 else
3593 {
3594 x_offset-=SmushXGap(smush_image,image,offset,exception);
3595 y_offset-=geometry.y;
3596 }
3597 status=CompositeImage(smush_image,OverCompositeOp,image,x_offset,y_offset);
3598 proceed=SetImageProgress(image,SmushImageTag,n,number_images);
3599 if (proceed == MagickFalse)
3600 break;
3601 if (stack == MagickFalse)
3602 {
3603 x_offset+=(ssize_t) image->columns;
3604 y_offset=0;
3605 }
3606 else
3607 {
3608 x_offset=0;
3609 y_offset+=(ssize_t) image->rows;
3610 }
3611 image=GetNextImageInList(image);
3612 }
3613 if (stack == MagickFalse)
3614 smush_image->columns=(size_t) x_offset;
3615 else
3616 smush_image->rows=(size_t) y_offset;
3617 smush_view=DestroyCacheView(smush_view);
3618 if (status == MagickFalse)
3619 smush_image=DestroyImage(smush_image);
3620 return(smush_image);
3621}
3622
3623/*
3624%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3625% %
3626% %
3627% %
3628% S t r i p I m a g e %
3629% %
3630% %
3631% %
3632%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3633%
3634% StripImage() strips an image of all profiles and comments.
3635%
3636% The format of the StripImage method is:
3637%
3638% MagickBooleanType StripImage(Image *image)
3639%
3640% A description of each parameter follows:
3641%
3642% o image: the image.
3643%
3644*/
3645MagickExport MagickBooleanType StripImage(Image *image)
3646{
3647 MagickBooleanType
3648 status;
3649
3650 assert(image != (Image *) NULL);
3651 if (IsEventLogging() != MagickFalse)
3652 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
3653 DestroyImageProfiles(image);
3654 (void) DeleteImageProperty(image,"comment");
3655 (void) DeleteImageProperty(image,"date:create");
3656 (void) DeleteImageProperty(image,"date:modify");
3657 status=SetImageArtifact(image,"png:exclude-chunk",
3658 "bKGD,caNv,cHRM,eXIf,gAMA,iCCP,iTXt,pHYs,sRGB,tEXt,zCCP,zTXt,date");
3659 return(status);
3660}
3661
3662/*
3663%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3664% %
3665% %
3666% %
3667+ S y n c I m a g e %
3668% %
3669% %
3670% %
3671%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3672%
3673% SyncImage() initializes the red, green, and blue intensities of each pixel
3674% as defined by the colormap index.
3675%
3676% The format of the SyncImage method is:
3677%
3678% MagickBooleanType SyncImage(Image *image)
3679%
3680% A description of each parameter follows:
3681%
3682% o image: the image.
3683%
3684*/
3685
3686static inline IndexPacket PushColormapIndex(Image *image,
3687 const size_t index,MagickBooleanType *range_exception)
3688{
3689 if (index < image->colors)
3690 return((IndexPacket) index);
3691 *range_exception=MagickTrue;
3692 return((IndexPacket) 0);
3693}
3694
3695MagickExport MagickBooleanType SyncImage(Image *image)
3696{
3697 CacheView
3698 *image_view;
3699
3701 *exception;
3702
3703 MagickBooleanType
3704 range_exception,
3705 status,
3706 taint;
3707
3708 ssize_t
3709 y;
3710
3711 assert(image != (Image *) NULL);
3712 assert(image->signature == MagickCoreSignature);
3713 if (IsEventLogging() != MagickFalse)
3714 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
3715 if (image->ping != MagickFalse)
3716 return(MagickTrue);
3717 if (image->storage_class != PseudoClass)
3718 return(MagickFalse);
3719 assert(image->colormap != (PixelPacket *) NULL);
3720 range_exception=MagickFalse;
3721 status=MagickTrue;
3722 taint=image->taint;
3723 exception=(&image->exception);
3724 image_view=AcquireAuthenticCacheView(image,exception);
3725#if defined(MAGICKCORE_OPENMP_SUPPORT)
3726 #pragma omp parallel for schedule(static) shared(range_exception,status) \
3727 magick_number_threads(image,image,image->rows,1)
3728#endif
3729 for (y=0; y < (ssize_t) image->rows; y++)
3730 {
3731 IndexPacket
3732 index;
3733
3734 IndexPacket
3735 *magick_restrict indexes;
3736
3738 *magick_restrict q;
3739
3740 ssize_t
3741 x;
3742
3743 if (status == MagickFalse)
3744 continue;
3745 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
3746 if (q == (PixelPacket *) NULL)
3747 {
3748 status=MagickFalse;
3749 continue;
3750 }
3751 indexes=GetCacheViewAuthenticIndexQueue(image_view);
3752 for (x=0; x < (ssize_t) image->columns; x++)
3753 {
3754 index=PushColormapIndex(image,(size_t) GetPixelIndex(indexes+x),
3755 &range_exception);
3756 if (image->matte == MagickFalse)
3757 SetPixelRgb(q,image->colormap+(ssize_t) index)
3758 else
3759 SetPixelRGBO(q,image->colormap+(ssize_t) index);
3760 q++;
3761 }
3762 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3763 status=MagickFalse;
3764 }
3765 image_view=DestroyCacheView(image_view);
3766 image->taint=taint;
3767 if ((image->ping == MagickFalse) && (range_exception != MagickFalse))
3768 (void) ThrowMagickException(&image->exception,GetMagickModule(),
3769 CorruptImageWarning,"InvalidColormapIndex","`%s'",image->filename);
3770 return(status);
3771}
3772
3773/*
3774%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3775% %
3776% %
3777% %
3778% S y n c I m a g e S e t t i n g s %
3779% %
3780% %
3781% %
3782%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3783%
3784% SyncImageSettings() syncs image_info options into per-image attributes.
3785%
3786% The format of the SyncImageSettings method is:
3787%
3788% MagickBooleanType SyncImageSettings(const ImageInfo *image_info,
3789% Image *image)
3790% MagickBooleanType SyncImagesSettings(const ImageInfo *image_info,
3791% Image *image)
3792%
3793% A description of each parameter follows:
3794%
3795% o image_info: the image info.
3796%
3797% o image: the image.
3798%
3799*/
3800
3801MagickExport MagickBooleanType SyncImagesSettings(ImageInfo *image_info,
3802 Image *images)
3803{
3804 Image
3805 *image;
3806
3807 assert(image_info != (const ImageInfo *) NULL);
3808 assert(image_info->signature == MagickCoreSignature);
3809 assert(images != (Image *) NULL);
3810 assert(images->signature == MagickCoreSignature);
3811 if (IsEventLogging() != MagickFalse)
3812 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
3813 image=images;
3814 for ( ; image != (Image *) NULL; image=GetNextImageInList(image))
3815 (void) SyncImageSettings(image_info,image);
3816 (void) DeleteImageOption(image_info,"page");
3817 return(MagickTrue);
3818}
3819
3820MagickExport MagickBooleanType SyncImageSettings(const ImageInfo *image_info,
3821 Image *image)
3822{
3823 char
3824 property[MaxTextExtent];
3825
3826 const char
3827 *option,
3828 *value;
3829
3831 geometry_info;
3832
3833 MagickStatusType
3834 flags;
3835
3836 ResolutionType
3837 units;
3838
3839 /*
3840 Sync image options.
3841 */
3842 assert(image_info != (const ImageInfo *) NULL);
3843 assert(image_info->signature == MagickCoreSignature);
3844 assert(image != (Image *) NULL);
3845 assert(image->signature == MagickCoreSignature);
3846 if (IsEventLogging() != MagickFalse)
3847 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3848 option=GetImageOption(image_info,"background");
3849 if (option != (const char *) NULL)
3850 (void) QueryColorDatabase(option,&image->background_color,
3851 &image->exception);
3852 option=GetImageOption(image_info,"bias");
3853 if (option != (const char *) NULL)
3854 image->bias=StringToDoubleInterval(option,(double) QuantumRange+1.0);
3855 option=GetImageOption(image_info,"black-point-compensation");
3856 if (option != (const char *) NULL)
3857 image->black_point_compensation=(MagickBooleanType) ParseCommandOption(
3858 MagickBooleanOptions,MagickFalse,option);
3859 option=GetImageOption(image_info,"blue-primary");
3860 if (option != (const char *) NULL)
3861 {
3862 flags=ParseGeometry(option,&geometry_info);
3863 if ((flags & RhoValue) != 0)
3864 image->chromaticity.blue_primary.x=geometry_info.rho;
3865 image->chromaticity.blue_primary.y=image->chromaticity.blue_primary.x;
3866 if ((flags & SigmaValue) != 0)
3867 image->chromaticity.blue_primary.y=geometry_info.sigma;
3868 }
3869 option=GetImageOption(image_info,"bordercolor");
3870 if (option != (const char *) NULL)
3871 (void) QueryColorDatabase(option,&image->border_color,&image->exception);
3872 option=GetImageOption(image_info,"colors");
3873 if (option != (const char *) NULL)
3874 image->colors=StringToUnsignedLong(option);
3875 option=GetImageOption(image_info,"compose");
3876 if (option != (const char *) NULL)
3877 image->compose=(CompositeOperator) ParseCommandOption(MagickComposeOptions,
3878 MagickFalse,option);
3879 option=GetImageOption(image_info,"compress");
3880 if (option != (const char *) NULL)
3881 image->compression=(CompressionType) ParseCommandOption(
3882 MagickCompressOptions,MagickFalse,option);
3883 option=GetImageOption(image_info,"debug");
3884 if (option != (const char *) NULL)
3885 image->debug=(MagickBooleanType) ParseCommandOption(MagickBooleanOptions,
3886 MagickFalse,option);
3887 option=GetImageOption(image_info,"density");
3888 if (option != (const char *) NULL)
3889 {
3891 geometry_info;
3892
3893 /*
3894 Set image density.
3895 */
3896 flags=ParseGeometry(option,&geometry_info);
3897 if ((flags & RhoValue) != 0)
3898 image->x_resolution=geometry_info.rho;
3899 image->y_resolution=image->x_resolution;
3900 if ((flags & SigmaValue) != 0)
3901 image->y_resolution=geometry_info.sigma;
3902 }
3903 option=GetImageOption(image_info,"depth");
3904 if (option != (const char *) NULL)
3905 image->depth=StringToUnsignedLong(option);
3906 option=GetImageOption(image_info,"endian");
3907 if (option != (const char *) NULL)
3908 image->endian=(EndianType) ParseCommandOption(MagickEndianOptions,
3909 MagickFalse,option);
3910 option=GetImageOption(image_info,"filter");
3911 if (option != (const char *) NULL)
3912 image->filter=(FilterTypes) ParseCommandOption(MagickFilterOptions,
3913 MagickFalse,option);
3914 option=GetImageOption(image_info,"fuzz");
3915 if (option != (const char *) NULL)
3916 image->fuzz=StringToDoubleInterval(option,(double) QuantumRange+1.0);
3917 option=GetImageOption(image_info,"gravity");
3918 if (option != (const char *) NULL)
3919 image->gravity=(GravityType) ParseCommandOption(MagickGravityOptions,
3920 MagickFalse,option);
3921 option=GetImageOption(image_info,"green-primary");
3922 if (option != (const char *) NULL)
3923 {
3924 flags=ParseGeometry(option,&geometry_info);
3925 if ((flags & RhoValue) != 0)
3926 image->chromaticity.green_primary.x=geometry_info.rho;
3927 image->chromaticity.green_primary.y=image->chromaticity.green_primary.x;
3928 if ((flags & SigmaValue) != 0)
3929 image->chromaticity.green_primary.y=geometry_info.sigma;
3930 }
3931 option=GetImageOption(image_info,"intensity");
3932 if (option != (const char *) NULL)
3933 image->intensity=(PixelIntensityMethod) ParseCommandOption(
3934 MagickPixelIntensityOptions,MagickFalse,option);
3935 option=GetImageOption(image_info,"intent");
3936 if (option != (const char *) NULL)
3937 image->rendering_intent=(RenderingIntent) ParseCommandOption(
3938 MagickIntentOptions,MagickFalse,option);
3939 option=GetImageOption(image_info,"interlace");
3940 if (option != (const char *) NULL)
3941 image->interlace=(InterlaceType) ParseCommandOption(MagickInterlaceOptions,
3942 MagickFalse,option);
3943 option=GetImageOption(image_info,"interpolate");
3944 if (option != (const char *) NULL)
3945 image->interpolate=(InterpolatePixelMethod) ParseCommandOption(
3946 MagickInterpolateOptions,MagickFalse,option);
3947 option=GetImageOption(image_info,"loop");
3948 if (option != (const char *) NULL)
3949 image->iterations=StringToUnsignedLong(option);
3950 option=GetImageOption(image_info,"mattecolor");
3951 if (option != (const char *) NULL)
3952 (void) QueryColorDatabase(option,&image->matte_color,&image->exception);
3953 option=GetImageOption(image_info,"orient");
3954 if (option != (const char *) NULL)
3955 image->orientation=(OrientationType) ParseCommandOption(
3956 MagickOrientationOptions,MagickFalse,option);
3957 option=GetImageOption(image_info,"page");
3958 if (option != (const char *) NULL)
3959 {
3960 char
3961 *geometry;
3962
3963 geometry=GetPageGeometry(option);
3964 flags=ParseAbsoluteGeometry(geometry,&image->page);
3965 geometry=DestroyString(geometry);
3966 }
3967 option=GetImageOption(image_info,"quality");
3968 if (option != (const char *) NULL)
3969 image->quality=StringToUnsignedLong(option);
3970 option=GetImageOption(image_info,"red-primary");
3971 if (option != (const char *) NULL)
3972 {
3973 flags=ParseGeometry(option,&geometry_info);
3974 if ((flags & RhoValue) != 0)
3975 image->chromaticity.red_primary.x=geometry_info.rho;
3976 image->chromaticity.red_primary.y=image->chromaticity.red_primary.x;
3977 if ((flags & SigmaValue) != 0)
3978 image->chromaticity.red_primary.y=geometry_info.sigma;
3979 }
3980 if (image_info->quality != UndefinedCompressionQuality)
3981 image->quality=image_info->quality;
3982 option=GetImageOption(image_info,"scene");
3983 if (option != (const char *) NULL)
3984 image->scene=StringToUnsignedLong(option);
3985 option=GetImageOption(image_info,"taint");
3986 if (option != (const char *) NULL)
3987 image->taint=(MagickBooleanType) ParseCommandOption(MagickBooleanOptions,
3988 MagickFalse,option);
3989 option=GetImageOption(image_info,"tile-offset");
3990 if (option != (const char *) NULL)
3991 {
3992 char
3993 *geometry;
3994
3995 geometry=GetPageGeometry(option);
3996 flags=ParseAbsoluteGeometry(geometry,&image->tile_offset);
3997 geometry=DestroyString(geometry);
3998 }
3999 option=GetImageOption(image_info,"transparent-color");
4000 if (option != (const char *) NULL)
4001 (void) QueryColorDatabase(option,&image->transparent_color,
4002 &image->exception);
4003 option=GetImageOption(image_info,"type");
4004 if (option != (const char *) NULL)
4005 image->type=(ImageType) ParseCommandOption(MagickTypeOptions,MagickFalse,
4006 option);
4007 option=GetImageOption(image_info,"units");
4008 units=image_info->units;
4009 if (option != (const char *) NULL)
4010 units=(ResolutionType) ParseCommandOption(MagickResolutionOptions,
4011 MagickFalse,option);
4012 if (units != UndefinedResolution)
4013 {
4014 if (image->units != units)
4015 switch (image->units)
4016 {
4017 case PixelsPerInchResolution:
4018 {
4019 if (units == PixelsPerCentimeterResolution)
4020 {
4021 image->x_resolution/=2.54;
4022 image->y_resolution/=2.54;
4023 }
4024 break;
4025 }
4026 case PixelsPerCentimeterResolution:
4027 {
4028 if (units == PixelsPerInchResolution)
4029 {
4030 image->x_resolution=(double) ((size_t) (100.0*2.54*
4031 image->x_resolution+0.5))/100.0;
4032 image->y_resolution=(double) ((size_t) (100.0*2.54*
4033 image->y_resolution+0.5))/100.0;
4034 }
4035 break;
4036 }
4037 default:
4038 break;
4039 }
4040 image->units=units;
4041 option=GetImageOption(image_info,"density");
4042 if (option != (const char *) NULL)
4043 {
4044 flags=ParseGeometry(option,&geometry_info);
4045 if ((flags & RhoValue) != 0)
4046 image->x_resolution=geometry_info.rho;
4047 image->y_resolution=image->x_resolution;
4048 if ((flags & SigmaValue) != 0)
4049 image->y_resolution=geometry_info.sigma;
4050 }
4051 }
4052 option=GetImageOption(image_info,"white-point");
4053 if (option != (const char *) NULL)
4054 {
4055 flags=ParseGeometry(option,&geometry_info);
4056 if ((flags & RhoValue) != 0)
4057 image->chromaticity.white_point.x=geometry_info.rho;
4058 image->chromaticity.white_point.y=image->chromaticity.white_point.x;
4059 if ((flags & SigmaValue) != 0)
4060 image->chromaticity.white_point.y=geometry_info.sigma;
4061 }
4062 ResetImageOptionIterator(image_info);
4063 for (option=GetNextImageOption(image_info); option != (const char *) NULL; )
4064 {
4065 value=GetImageOption(image_info,option);
4066 if (value != (const char *) NULL)
4067 {
4068 (void) FormatLocaleString(property,MaxTextExtent,"%s",option);
4069 (void) SetImageArtifact(image,property,value);
4070 }
4071 option=GetNextImageOption(image_info);
4072 }
4073 return(MagickTrue);
4074}