43#include "MagickCore/studio.h"
44#include "MagickCore/animate.h"
45#include "MagickCore/artifact.h"
46#include "MagickCore/attribute.h"
47#include "MagickCore/blob.h"
48#include "MagickCore/blob-private.h"
49#include "MagickCore/cache.h"
50#include "MagickCore/cache-private.h"
51#include "MagickCore/cache-view.h"
52#include "MagickCore/channel.h"
53#include "MagickCore/client.h"
54#include "MagickCore/color.h"
55#include "MagickCore/color-private.h"
56#include "MagickCore/colormap.h"
57#include "MagickCore/colorspace.h"
58#include "MagickCore/colorspace-private.h"
59#include "MagickCore/composite.h"
60#include "MagickCore/composite-private.h"
61#include "MagickCore/compress.h"
62#include "MagickCore/constitute.h"
63#include "MagickCore/delegate.h"
64#include "MagickCore/display.h"
65#include "MagickCore/draw.h"
66#include "MagickCore/enhance.h"
67#include "MagickCore/exception.h"
68#include "MagickCore/exception-private.h"
69#include "MagickCore/gem.h"
70#include "MagickCore/geometry.h"
71#include "MagickCore/histogram.h"
72#include "MagickCore/image-private.h"
73#include "MagickCore/list.h"
74#include "MagickCore/magic.h"
75#include "MagickCore/magick.h"
76#include "MagickCore/magick-private.h"
77#include "MagickCore/memory_.h"
78#include "MagickCore/memory-private.h"
79#include "MagickCore/module.h"
80#include "MagickCore/monitor.h"
81#include "MagickCore/monitor-private.h"
82#include "MagickCore/option.h"
83#include "MagickCore/paint.h"
84#include "MagickCore/pixel-accessor.h"
85#include "MagickCore/profile.h"
86#include "MagickCore/property.h"
87#include "MagickCore/quantize.h"
88#include "MagickCore/random_.h"
89#include "MagickCore/resource_.h"
90#include "MagickCore/segment.h"
91#include "MagickCore/semaphore.h"
92#include "MagickCore/signature-private.h"
93#include "MagickCore/statistic.h"
94#include "MagickCore/string_.h"
95#include "MagickCore/string-private.h"
96#include "MagickCore/thread-private.h"
97#include "MagickCore/threshold.h"
98#include "MagickCore/timer.h"
99#include "MagickCore/timer-private.h"
100#include "MagickCore/token.h"
101#include "MagickCore/token-private.h"
102#include "MagickCore/utility.h"
103#include "MagickCore/utility-private.h"
104#include "MagickCore/version.h"
105#include "MagickCore/xwindow-private.h"
152 if (IsEventLogging() != MagickFalse)
153 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
154 image=(
Image *) AcquireCriticalMemory(
sizeof(*image));
155 (void) memset(image,0,
sizeof(*image));
159 (void) CopyMagickString(image->magick,
"MIFF",MagickPathExtent);
160 image->storage_class=DirectClass;
161 image->depth=MAGICKCORE_QUANTUM_DEPTH;
162 image->colorspace=sRGBColorspace;
163 image->rendering_intent=PerceptualIntent;
164 image->gamma=1.000/2.200;
165 image->chromaticity.red_primary.x=0.6400;
166 image->chromaticity.red_primary.y=0.3300;
167 image->chromaticity.red_primary.z=0.0300;
168 image->chromaticity.green_primary.x=0.3000;
169 image->chromaticity.green_primary.y=0.6000;
170 image->chromaticity.green_primary.z=0.1000;
171 image->chromaticity.blue_primary.x=0.1500;
172 image->chromaticity.blue_primary.y=0.0600;
173 image->chromaticity.blue_primary.z=0.7900;
174 image->chromaticity.white_point.x=0.3127;
175 image->chromaticity.white_point.y=0.3290;
176 image->chromaticity.white_point.z=0.3583;
177 image->interlace=NoInterlace;
178 image->ticks_per_second=UndefinedTicksPerSecond;
179 image->compose=OverCompositeOp;
180 GetPixelInfoRGBA(BackgroundColorRGBA,&image->background_color);
181 GetPixelInfoRGBA(BorderColorRGBA,&image->border_color);
182 GetPixelInfoRGBA(MatteColorRGBA,&image->matte_color);
183 GetPixelInfoRGBA(TransparentColorRGBA,&image->transparent_color);
184 GetTimerInfo(&image->timer);
185 image->cache=AcquirePixelCache(0);
186 image->channel_mask=AllChannels;
187 image->channel_map=AcquirePixelChannelMap();
188 image->blob=CloneBlobInfo((
BlobInfo *) NULL);
189 image->timestamp=GetMagickTime();
190 time_limit=(int) GetMagickResourceLimit(TimeResource);
192 image->ttl=image->timestamp+time_limit;
193 image->debug=(GetLogEventMask() & (ImageEvent | TransformEvent | CoderEvent))
194 != 0 ? MagickTrue : MagickFalse;
195 image->reference_count=1;
196 image->semaphore=AcquireSemaphoreInfo();
197 image->signature=MagickCoreSignature;
203 SetBlobExempt(image,image_info->file != (FILE *) NULL ? MagickTrue :
205 (void) CopyMagickString(image->filename,image_info->filename,
207 (void) CopyMagickString(image->magick_filename,image_info->filename,
209 (void) CopyMagickString(image->magick,image_info->magick,MagickPathExtent);
210 if (image_info->size != (
char *) NULL)
212 (void) ParseAbsoluteGeometry(image_info->size,&image->extract_info);
213 image->columns=image->extract_info.width;
214 image->rows=image->extract_info.height;
215 image->offset=image->extract_info.x;
216 image->extract_info.x=0;
217 image->extract_info.y=0;
219 if (image_info->extract != (
char *) NULL)
224 (void) memset(&geometry,0,
sizeof(geometry));
225 flags=ParseAbsoluteGeometry(image_info->extract,&geometry);
226 if (((flags & XValue) != 0) || ((flags & YValue) != 0))
228 image->extract_info=geometry;
229 Swap(image->columns,image->extract_info.width);
230 Swap(image->rows,image->extract_info.height);
233 image->compression=image_info->compression;
234 image->quality=image_info->quality;
235 image->endian=image_info->endian;
236 image->interlace=image_info->interlace;
237 image->units=image_info->units;
238 if (image_info->density != (
char *) NULL)
243 flags=ParseGeometry(image_info->density,&geometry_info);
244 if ((flags & RhoValue) != 0)
245 image->resolution.x=geometry_info.rho;
246 image->resolution.y=image->resolution.x;
247 if ((flags & SigmaValue) != 0)
248 image->resolution.y=geometry_info.sigma;
250 if (image_info->page != (
char *) NULL)
255 image->page=image->extract_info;
256 geometry=GetPageGeometry(image_info->page);
257 (void) ParseAbsoluteGeometry(geometry,&image->page);
258 geometry=DestroyString(geometry);
260 if (image_info->depth != 0)
261 image->depth=image_info->depth;
262 image->dither=image_info->dither;
263 image->matte_color=image_info->matte_color;
264 image->background_color=image_info->background_color;
265 image->border_color=image_info->border_color;
266 image->transparent_color=image_info->transparent_color;
267 image->ping=image_info->ping;
268 image->progress_monitor=image_info->progress_monitor;
269 image->client_data=image_info->client_data;
270 if (image_info->cache != (
void *) NULL)
271 ClonePixelCacheMethods(image->cache,image_info->cache);
275 (void) SyncImageSettings(image_info,image,exception);
279 option=GetImageOption(image_info,
"delay");
280 if (option != (
const char *) NULL)
285 flags=ParseGeometry(option,&geometry_info);
286 if ((flags & GreaterValue) != 0)
288 if ((
double) image->delay > floor(geometry_info.rho+0.5))
289 image->delay=(size_t) CastDoubleToLong(floor(
290 geometry_info.rho+0.5));
293 if ((flags & LessValue) != 0)
295 if ((
double) image->delay < floor(geometry_info.rho+0.5))
296 image->ticks_per_second=CastDoubleToLong(floor(
297 geometry_info.sigma+0.5));
300 image->delay=(size_t) CastDoubleToLong(floor(geometry_info.rho+0.5));
301 if ((flags & SigmaValue) != 0)
302 image->ticks_per_second=CastDoubleToLong(floor(
303 geometry_info.sigma+0.5));
305 option=GetImageOption(image_info,
"dispose");
306 if (option != (
const char *) NULL)
307 image->dispose=(DisposeType) ParseCommandOption(MagickDisposeOptions,
330MagickExport
ImageInfo *AcquireImageInfo(
void)
335 image_info=(
ImageInfo *) AcquireCriticalMemory(
sizeof(*image_info));
336 GetImageInfo(image_info);
371MagickExport
void AcquireNextImage(
const ImageInfo *image_info,
Image *image,
377 assert(image != (
Image *) NULL);
378 assert(image->signature == MagickCoreSignature);
379 if (IsEventLogging() != MagickFalse)
380 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
381 image->next=AcquireImage(image_info,exception);
382 if (GetNextImageInList(image) == (
Image *) NULL)
384 (void) CopyMagickString(GetNextImageInList(image)->filename,image->filename,
387 (
void) CopyMagickString(GetNextImageInList(image)->filename,
388 image_info->filename,MagickPathExtent);
389 DestroyBlob(GetNextImageInList(image));
390 image->next->blob=ReferenceBlob(image->blob);
391 image->next->endian=image->endian;
392 image->next->scene=image->scene+1;
393 image->next->previous=image;
428MagickExport
Image *AppendImages(
const Image *images,
431#define AppendImageTag "Append/Image"
443 homogeneous_colorspace,
472 assert(images != (
Image *) NULL);
473 assert(images->signature == MagickCoreSignature);
475 assert(exception->signature == MagickCoreSignature);
476 if (IsEventLogging() != MagickFalse)
477 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",images->filename);
478 alpha_trait=images->alpha_trait;
480 width=images->columns;
483 image_type=images->type;
484 homogeneous_colorspace=MagickTrue;
485 next=GetNextImageInList(images);
486 for ( ; next != (
Image *) NULL; next=GetNextImageInList(next))
488 if (next->depth > depth)
490 if (next->type != images->type)
491 image_type=UndefinedType;
492 if (next->colorspace != images->colorspace)
493 homogeneous_colorspace=MagickFalse;
494 if (next->alpha_trait != UndefinedPixelTrait)
495 alpha_trait=BlendPixelTrait;
497 if (stack != MagickFalse)
499 if (next->columns > width)
504 width+=next->columns;
505 if (next->rows > height)
511 append_image=CloneImage(images,width,height,MagickTrue,exception);
512 if (append_image == (
Image *) NULL)
513 return((
Image *) NULL);
514 if (image_type != BilevelType)
516 if (SetImageStorageClass(append_image,DirectClass,exception) == MagickFalse)
518 append_image=DestroyImage(append_image);
519 return((
Image *) NULL);
521 if (homogeneous_colorspace == MagickFalse)
522 (void) SetImageColorspace(append_image,sRGBColorspace,exception);
524 append_image->depth=depth;
525 append_image->alpha_trait=alpha_trait;
526 append_image->page=images->page;
527 (void) SetImageBackgroundColor(append_image,exception);
532 append_view=AcquireAuthenticCacheView(append_image,exception);
533 for (n=0; n < (MagickOffsetType) number_images; n++)
541 SetGeometry(append_image,&geometry);
542 GravityAdjustGeometry(next->columns,next->rows,next->gravity,&geometry);
543 if (stack != MagickFalse)
544 x_offset-=geometry.x;
546 y_offset-=geometry.y;
547 image_view=AcquireVirtualCacheView(next,exception);
548#if defined(MAGICKCORE_OPENMP_SUPPORT)
549 #pragma omp parallel for schedule(static) shared(status) \
550 magick_number_threads(next,next,next->rows,2)
552 for (y=0; y < (ssize_t) next->rows; y++)
569 if (status == MagickFalse)
571 p=GetCacheViewVirtualPixels(image_view,0,y,next->columns,1,exception);
572 q=QueueCacheViewAuthenticPixels(append_view,x_offset,y+y_offset,
573 next->columns,1,exception);
574 if ((p == (
const Quantum *) NULL) || (q == (Quantum *) NULL))
579 GetPixelInfo(next,&pixel);
580 for (x=0; x < (ssize_t) next->columns; x++)
582 GetPixelInfoPixel(next,p,&pixel);
583 SetPixelViaPixelInfo(append_image,&pixel,q);
584 p+=(ptrdiff_t) GetPixelChannels(next);
585 q+=(ptrdiff_t) GetPixelChannels(append_image);
587 sync=SyncCacheViewAuthenticPixels(append_view,exception);
588 if (sync == MagickFalse)
591 image_view=DestroyCacheView(image_view);
592 if (stack == MagickFalse)
594 x_offset+=(ssize_t) next->columns;
600 y_offset+=(ssize_t) next->rows;
602 proceed=SetImageProgress(append_image,AppendImageTag,n,number_images);
603 if (proceed == MagickFalse)
605 next=GetNextImageInList(next);
607 append_view=DestroyCacheView(append_view);
608 if (status == MagickFalse)
609 append_image=DestroyImage(append_image);
610 return(append_image);
637MagickExport ExceptionType CatchImageException(
Image *image)
645 assert(image != (
const Image *) NULL);
646 assert(image->signature == MagickCoreSignature);
647 if (IsEventLogging() != MagickFalse)
648 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
649 exception=AcquireExceptionInfo();
650 CatchException(exception);
651 severity=exception->severity;
652 exception=DestroyExceptionInfo(exception);
691 return(ClipImagePath(image,
"#1",MagickTrue,exception));
694MagickExport MagickBooleanType ClipImagePath(
Image *image,
const char *pathname,
697#define ClipImagePathTag "ClipPath/Image"
711 assert(image != (
const Image *) NULL);
712 assert(image->signature == MagickCoreSignature);
713 assert(pathname != NULL);
714 if (IsEventLogging() != MagickFalse)
715 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
716 property=AcquireString(pathname);
717 (void) FormatLocaleString(property,MagickPathExtent,
"8BIM:1999,2998:%s",
719 value=GetImageProperty(image,property,exception);
720 property=DestroyString(property);
721 if (value == (
const char *) NULL)
723 ThrowFileException(exception,OptionError,
"NoClipPathDefined",
727 image_info=AcquireImageInfo();
728 (void) CopyMagickString(image_info->filename,image->filename,
730 (void) ConcatenateMagickString(image_info->filename,pathname,
732 clip_mask=BlobToImage(image_info,value,strlen(value),exception);
733 image_info=DestroyImageInfo(image_info);
734 if (clip_mask == (
Image *) NULL)
736 if (clip_mask->storage_class == PseudoClass)
738 (void) SyncImage(clip_mask,exception);
739 if (SetImageStorageClass(clip_mask,DirectClass,exception) == MagickFalse)
742 if (inside != MagickFalse)
743 (void) NegateImage(clip_mask,MagickFalse,exception);
744 (void) FormatLocaleString(clip_mask->magick_filename,MagickPathExtent,
745 "8BIM:1999,2998:%s\nPS",pathname);
746 (void) SetImageMask(image,WritePixelMask,clip_mask,exception);
747 image->mask_trait=UpdatePixelTrait;
748 clip_mask=DestroyImage(clip_mask);
791MagickExport
Image *CloneImage(
const Image *image,
const size_t columns,
792 const size_t rows,
const MagickBooleanType detach,
ExceptionInfo *exception)
807 assert(image != (
const Image *) NULL);
808 assert(image->signature == MagickCoreSignature);
810 assert(exception->signature == MagickCoreSignature);
811 if (IsEventLogging() != MagickFalse)
812 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
813 if ((image->columns == 0) || (image->rows == 0))
815 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
816 "NegativeOrZeroImageSize",
"`%s'",image->filename);
817 return((
Image *) NULL);
819 clone_image=(
Image *) AcquireCriticalMemory(
sizeof(*clone_image));
820 (void) memset(clone_image,0,
sizeof(*clone_image));
821 clone_image->signature=MagickCoreSignature;
822 clone_image->storage_class=image->storage_class;
823 clone_image->number_channels=image->number_channels;
824 clone_image->number_meta_channels=image->number_meta_channels;
825 clone_image->metacontent_extent=image->metacontent_extent;
826 clone_image->colorspace=image->colorspace;
827 clone_image->alpha_trait=image->alpha_trait;
828 clone_image->channels=image->channels;
829 clone_image->mask_trait=image->mask_trait;
830 clone_image->columns=image->columns;
831 clone_image->rows=image->rows;
832 clone_image->dither=image->dither;
833 clone_image->image_info=CloneImageInfo(image->image_info);
834 (void) CloneImageProfiles(clone_image,image);
835 (void) CloneImageProperties(clone_image,image);
836 (void) CloneImageArtifacts(clone_image,image);
837 GetTimerInfo(&clone_image->timer);
838 if (image->ascii85 != (
void *) NULL)
839 Ascii85Initialize(clone_image);
840 clone_image->extent=image->extent;
841 clone_image->magick_columns=image->magick_columns;
842 clone_image->magick_rows=image->magick_rows;
843 clone_image->type=image->type;
844 clone_image->channel_mask=image->channel_mask;
845 clone_image->channel_map=ClonePixelChannelMap(image->channel_map);
846 (void) CopyMagickString(clone_image->magick_filename,image->magick_filename,
848 (void) CopyMagickString(clone_image->magick,image->magick,MagickPathExtent);
849 (void) CopyMagickString(clone_image->filename,image->filename,
851 clone_image->progress_monitor=image->progress_monitor;
852 clone_image->client_data=image->client_data;
853 clone_image->reference_count=1;
854 clone_image->next=image->next;
855 clone_image->previous=image->previous;
856 clone_image->list=NewImageList();
857 if (detach == MagickFalse)
858 clone_image->blob=ReferenceBlob(image->blob);
861 clone_image->next=NewImageList();
862 clone_image->previous=NewImageList();
863 clone_image->blob=CloneBlobInfo((
BlobInfo *) NULL);
865 clone_image->ping=image->ping;
866 clone_image->timestamp=image->timestamp;
867 clone_image->ttl=image->ttl;
868 clone_image->debug=image->debug;
869 clone_image->semaphore=AcquireSemaphoreInfo();
870 if (image->colormap != (
PixelInfo *) NULL)
875 clone_image->colors=image->colors;
876 length=(size_t) image->colors;
877 clone_image->colormap=(
PixelInfo *) AcquireQuantumMemory(length+1,
878 sizeof(*clone_image->colormap));
879 if (clone_image->colormap == (
PixelInfo *) NULL)
881 clone_image=DestroyImage(clone_image);
882 ThrowImageException(ResourceLimitError,
"MemoryAllocationFailed");
884 (void) memcpy(clone_image->colormap,image->colormap,length*
885 sizeof(*clone_image->colormap));
887 if ((columns == 0) || (rows == 0))
889 if (image->montage != (
char *) NULL)
890 (
void) CloneString(&clone_image->montage,image->montage);
891 if (image->directory != (
char *) NULL)
892 (void) CloneString(&clone_image->directory,image->directory);
893 clone_image->cache=ReferencePixelCache(image->cache);
898 if (image->columns != 0)
899 scale_x=(double) columns/(
double) image->columns;
900 if (image->rows != 0)
901 scale_y=(double) rows/(
double) image->rows;
902 clone_image->page.width=(size_t) CastDoubleToLong(floor(scale_x*
903 image->page.width+0.5));
904 clone_image->page.height=(size_t) CastDoubleToLong(floor(scale_y*
905 image->page.height+0.5));
906 if (MagickAbsoluteValue(scale_x-scale_y) < 2.0)
907 scale_x=scale_y=MagickMin(scale_x,scale_y);
908 clone_image->page.x=CastDoubleToLong(ceil(scale_x*image->page.x-0.5));
909 clone_image->tile_offset.x=CastDoubleToLong(ceil(scale_x*
910 image->tile_offset.x-0.5));
911 clone_image->page.y=CastDoubleToLong(ceil(scale_y*image->page.y-0.5));
912 clone_image->tile_offset.y=CastDoubleToLong(ceil(scale_y*
913 image->tile_offset.y-0.5));
914 clone_image->cache=ClonePixelCache(image->cache);
915 if (SetImageExtent(clone_image,columns,rows,exception) == MagickFalse)
916 clone_image=DestroyImage(clone_image);
949 clone_info=AcquireImageInfo();
952 clone_info->compression=image_info->compression;
953 clone_info->temporary=image_info->temporary;
954 clone_info->adjoin=image_info->adjoin;
955 clone_info->antialias=image_info->antialias;
956 clone_info->scene=image_info->scene;
957 clone_info->number_scenes=image_info->number_scenes;
958 clone_info->depth=image_info->depth;
959 if (image_info->size != (
char *) NULL)
960 (void) CloneString(&clone_info->size,image_info->size);
961 if (image_info->extract != (
char *) NULL)
962 (
void) CloneString(&clone_info->extract,image_info->extract);
963 if (image_info->scenes != (
char *) NULL)
964 (void) CloneString(&clone_info->scenes,image_info->scenes);
965 if (image_info->page != (
char *) NULL)
966 (
void) CloneString(&clone_info->page,image_info->page);
967 clone_info->interlace=image_info->interlace;
968 clone_info->endian=image_info->endian;
969 clone_info->units=image_info->units;
970 clone_info->quality=image_info->quality;
971 if (image_info->sampling_factor != (
char *) NULL)
972 (void) CloneString(&clone_info->sampling_factor,
973 image_info->sampling_factor);
974 if (image_info->server_name != (
char *) NULL)
975 (
void) CloneString(&clone_info->server_name,image_info->server_name);
976 if (image_info->font != (
char *) NULL)
977 (void) CloneString(&clone_info->font,image_info->font);
978 if (image_info->texture != (
char *) NULL)
979 (
void) CloneString(&clone_info->texture,image_info->texture);
980 if (image_info->density != (
char *) NULL)
981 (void) CloneString(&clone_info->density,image_info->density);
982 clone_info->pointsize=image_info->pointsize;
983 clone_info->fuzz=image_info->fuzz;
984 clone_info->matte_color=image_info->matte_color;
985 clone_info->background_color=image_info->background_color;
986 clone_info->border_color=image_info->border_color;
987 clone_info->transparent_color=image_info->transparent_color;
988 clone_info->dither=image_info->dither;
989 clone_info->monochrome=image_info->monochrome;
990 clone_info->colorspace=image_info->colorspace;
991 clone_info->type=image_info->type;
992 clone_info->orientation=image_info->orientation;
993 clone_info->ping=image_info->ping;
994 clone_info->verbose=image_info->verbose;
995 clone_info->progress_monitor=image_info->progress_monitor;
996 clone_info->client_data=image_info->client_data;
997 clone_info->cache=image_info->cache;
998 if (image_info->cache != (
void *) NULL)
999 clone_info->cache=ReferencePixelCache(image_info->cache);
1000 if (image_info->profile != (
void *) NULL)
1001 clone_info->profile=(
void *) CloneStringInfo((
StringInfo *)
1002 image_info->profile);
1003 SetImageInfoFile(clone_info,image_info->file);
1004 SetImageInfoBlob(clone_info,image_info->blob,image_info->length);
1005 clone_info->stream=image_info->stream;
1006 clone_info->custom_stream=image_info->custom_stream;
1007 (void) CopyMagickString(clone_info->magick,image_info->magick,
1009 (void) CopyMagickString(clone_info->unique,image_info->unique,
1011 (void) CopyMagickString(clone_info->filename,image_info->filename,
1013 clone_info->channel=image_info->channel;
1014 (void) CloneImageOptions(clone_info,image_info);
1015 clone_info->debug=image_info->debug;
1016 clone_info->signature=image_info->signature;
1053MagickExport MagickBooleanType CopyImagePixels(
Image *image,
1057#define CopyImageTag "Copy/Image"
1072 assert(image != (
Image *) NULL);
1073 assert(source_image != (
Image *) NULL);
1076 if (IsEventLogging() != MagickFalse)
1077 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
1078 if ((offset->x < 0) || (offset->y < 0) ||
1079 ((offset->x+(ssize_t) geometry->width) > (ssize_t) image->columns) ||
1080 ((offset->y+(ssize_t) geometry->height) > (ssize_t) image->rows))
1081 ThrowBinaryException(OptionError,
"GeometryDoesNotContainImage",
1083 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
1084 return(MagickFalse);
1090 source_view=AcquireVirtualCacheView(source_image,exception);
1091 image_view=AcquireAuthenticCacheView(image,exception);
1092#if defined(MAGICKCORE_OPENMP_SUPPORT)
1093 #pragma omp parallel for schedule(static) shared(progress,status) \
1094 magick_number_threads(image,source_image,geometry->height,2)
1096 for (y=0; y < (ssize_t) geometry->height; y++)
1110 if (status == MagickFalse)
1112 p=GetCacheViewVirtualPixels(source_view,geometry->x,y+geometry->y,
1113 geometry->width,1,exception);
1114 q=QueueCacheViewAuthenticPixels(image_view,offset->x,y+offset->y,
1115 geometry->width,1,exception);
1116 if ((p == (
const Quantum *) NULL) || (q == (Quantum *) NULL))
1121 for (x=0; x < (ssize_t) geometry->width; x++)
1126 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1128 PixelChannel channel = GetPixelChannelChannel(image,i);
1129 PixelTrait traits = GetPixelChannelTraits(image,channel);
1130 PixelTrait source_traits=GetPixelChannelTraits(source_image,channel);
1131 if ((traits == UndefinedPixelTrait) ||
1132 ((traits & UpdatePixelTrait) == 0) ||
1133 (source_traits == UndefinedPixelTrait))
1135 SetPixelChannel(image,channel,p[i],q);
1137 p+=(ptrdiff_t) GetPixelChannels(source_image);
1138 q+=(ptrdiff_t) GetPixelChannels(image);
1140 sync=SyncCacheViewAuthenticPixels(image_view,exception);
1141 if (sync == MagickFalse)
1143 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1148#if defined(MAGICKCORE_OPENMP_SUPPORT)
1152 proceed=SetImageProgress(image,CopyImageTag,progress,image->rows);
1153 if (proceed == MagickFalse)
1157 source_view=DestroyCacheView(source_view);
1158 image_view=DestroyCacheView(image_view);
1185MagickExport
Image *DestroyImage(
Image *image)
1193 assert(image != (
Image *) NULL);
1194 assert(image->signature == MagickCoreSignature);
1195 if (IsEventLogging() != MagickFalse)
1196 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
1197 destroy=MagickFalse;
1198 LockSemaphoreInfo(image->semaphore);
1199 image->reference_count--;
1200 if (image->reference_count == 0)
1202 UnlockSemaphoreInfo(image->semaphore);
1203 if (destroy == MagickFalse)
1204 return((
Image *) NULL);
1208 DestroyImagePixels(image);
1209 image->channel_map=DestroyPixelChannelMap(image->channel_map);
1210 if (image->montage != (
char *) NULL)
1211 image->montage=DestroyString(image->montage);
1212 if (image->directory != (
char *) NULL)
1213 image->directory=DestroyString(image->directory);
1214 if (image->colormap != (
PixelInfo *) NULL)
1215 image->colormap=(
PixelInfo *) RelinquishMagickMemory(image->colormap);
1216 if (image->geometry != (
char *) NULL)
1217 image->geometry=DestroyString(image->geometry);
1218 DestroyImageProfiles(image);
1219 DestroyImageProperties(image);
1220 DestroyImageArtifacts(image);
1222 image->ascii85=(
Ascii85Info *) RelinquishMagickMemory(image->ascii85);
1223 if (image->image_info != (
ImageInfo *) NULL)
1224 image->image_info=DestroyImageInfo(image->image_info);
1227 RelinquishSemaphoreInfo(&image->semaphore);
1228 image->signature=(~MagickCoreSignature);
1229 image=(
Image *) RelinquishMagickMemory(image);
1258 assert(image_info != (
ImageInfo *) NULL);
1259 assert(image_info->signature == MagickCoreSignature);
1260 if (IsEventLogging() != MagickFalse)
1261 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",
1262 image_info->filename);
1263 if (image_info->size != (
char *) NULL)
1264 image_info->size=DestroyString(image_info->size);
1265 if (image_info->extract != (
char *) NULL)
1266 image_info->extract=DestroyString(image_info->extract);
1267 if (image_info->scenes != (
char *) NULL)
1268 image_info->scenes=DestroyString(image_info->scenes);
1269 if (image_info->page != (
char *) NULL)
1270 image_info->page=DestroyString(image_info->page);
1271 if (image_info->sampling_factor != (
char *) NULL)
1272 image_info->sampling_factor=DestroyString(
1273 image_info->sampling_factor);
1274 if (image_info->server_name != (
char *) NULL)
1275 image_info->server_name=DestroyString(
1276 image_info->server_name);
1277 if (image_info->font != (
char *) NULL)
1278 image_info->font=DestroyString(image_info->font);
1279 if (image_info->texture != (
char *) NULL)
1280 image_info->texture=DestroyString(image_info->texture);
1281 if (image_info->density != (
char *) NULL)
1282 image_info->density=DestroyString(image_info->density);
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 DestroyImageOptions(image_info);
1289 image_info->signature=(~MagickCoreSignature);
1290 image_info=(
ImageInfo *) RelinquishMagickMemory(image_info);
1318MagickExport
void DisassociateImageStream(
Image *image)
1320 assert(image != (
Image *) NULL);
1321 assert(image->signature == MagickCoreSignature);
1322 if (IsEventLogging() != MagickFalse)
1323 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
1324 DisassociateBlob(image);
1349MagickExport
void GetImageInfo(
ImageInfo *image_info)
1357 assert(image_info != (
ImageInfo *) NULL);
1358 if (IsEventLogging() != MagickFalse)
1359 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
1360 (void) memset(image_info,0,
sizeof(*image_info));
1361 image_info->adjoin=MagickTrue;
1362 image_info->interlace=NoInterlace;
1363 image_info->channel=AllChannels;
1364 image_info->quality=UndefinedCompressionQuality;
1365 image_info->antialias=MagickTrue;
1366 image_info->dither=MagickTrue;
1367 image_info->depth=0;
1368 synchronize=GetEnvironmentValue(
"MAGICK_SYNCHRONIZE");
1369 if (synchronize != (
const char *) NULL)
1371 image_info->synchronize=IsStringTrue(synchronize);
1372 synchronize=DestroyString(synchronize);
1374 GetPixelInfoRGBA(BackgroundColorRGBA,&image_info->background_color);
1375 GetPixelInfoRGBA(BorderColorRGBA,&image_info->border_color);
1376 GetPixelInfoRGBA(MatteColorRGBA,&image_info->matte_color);
1377 GetPixelInfoRGBA(TransparentColorRGBA,&image_info->transparent_color);
1378 image_info->debug=(GetLogEventMask() & ImageEvent) != 0 ? MagickTrue :
1380 image_info->signature=MagickCoreSignature;
1405MagickExport FILE *GetImageInfoFile(
const ImageInfo *image_info)
1407 return(image_info->file);
1435MagickExport
Image *GetImageMask(
const Image *image,
const PixelMask type,
1454 assert(image != (
Image *) NULL);
1455 assert(image->signature == MagickCoreSignature);
1456 if (IsEventLogging() != MagickFalse)
1457 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
1462 if ((image->channels & ReadMaskChannel) == 0)
1463 return((
Image *) NULL);
1466 case WritePixelMask:
1468 if ((image->channels & WriteMaskChannel) == 0)
1469 return((
Image *) NULL);
1474 if ((image->channels & CompositeMaskChannel) == 0)
1475 return((
Image *) NULL);
1479 mask_image=AcquireImage((
ImageInfo *) NULL,exception);
1480 status=SetImageExtent(mask_image,image->columns,image->rows,exception);
1481 if (status == MagickFalse)
1482 return(DestroyImage(mask_image));
1484 mask_image->alpha_trait=UndefinedPixelTrait;
1485 (void) SetImageColorspace(mask_image,GRAYColorspace,exception);
1486 image_view=AcquireVirtualCacheView(image,exception);
1487 mask_view=AcquireAuthenticCacheView(mask_image,exception);
1488#if defined(MAGICKCORE_OPENMP_SUPPORT)
1489 #pragma omp parallel for schedule(static) shared(status) \
1490 magick_number_threads(image,image,image->rows,2)
1492 for (y=0; y < (ssize_t) image->rows; y++)
1503 if (status == MagickFalse)
1505 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
1506 q=GetCacheViewAuthenticPixels(mask_view,0,y,mask_image->columns,1,
1508 if ((p == (
const Quantum *) NULL) || (q == (Quantum *) NULL))
1513 for (x=0; x < (ssize_t) image->columns; x++)
1519 SetPixelGray(mask_image,GetPixelReadMask(image,p),q);
1522 case WritePixelMask:
1524 SetPixelGray(mask_image,GetPixelWriteMask(image,p),q);
1529 SetPixelGray(mask_image,GetPixelCompositeMask(image,p),q);
1533 p+=(ptrdiff_t) GetPixelChannels(image);
1534 q+=(ptrdiff_t) GetPixelChannels(mask_image);
1536 if (SyncCacheViewAuthenticPixels(mask_view,exception) == MagickFalse)
1539 mask_view=DestroyCacheView(mask_view);
1540 image_view=DestroyCacheView(image_view);
1541 if (status == MagickFalse)
1542 mask_image=DestroyImage(mask_image);
1568MagickExport ssize_t GetImageReferenceCount(
Image *image)
1573 assert(image != (
Image *) NULL);
1574 assert(image->signature == MagickCoreSignature);
1575 if (IsEventLogging() != MagickFalse)
1576 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
1577 LockSemaphoreInfo(image->semaphore);
1578 reference_count=image->reference_count;
1579 UnlockSemaphoreInfo(image->semaphore);
1580 return(reference_count);
1607MagickExport VirtualPixelMethod GetImageVirtualPixelMethod(
const Image *image)
1609 assert(image != (
Image *) NULL);
1610 assert(image->signature == MagickCoreSignature);
1611 if (IsEventLogging() != MagickFalse)
1612 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
1613 return(GetPixelCacheVirtualMethod(image));
1652static inline MagickBooleanType IsValidFormatSpecifier(
const char *start,
1656 specifier = end[-1];
1664 if ((specifier !=
'd') && (specifier !=
'x') && (specifier !=
'o'))
1665 return(MagickFalse);
1666 if ((length == 1) && (*start == specifier))
1675 if ((length >= 3) && (start[1] ==
'0'))
1676 return(MagickFalse);
1679 for ( ; i < (length-1); i++)
1680 if (isdigit((
int) ((
unsigned char) start[i])) == 0)
1681 return(MagickFalse);
1684 return(MagickFalse);
1687MagickExport
size_t InterpretImageFilename(
const ImageInfo *image_info,
1688 Image *image,
const char *format,
int value,
char *filename,
1693 pattern[MagickPathExtent];
1698 assert(format != (
const char *) NULL);
1699 assert(filename != (
char *) NULL);
1700 if (IsStringTrue(GetImageOption(image_info,
"filename:literal")) != MagickFalse)
1702 (void) CopyMagickString(filename,format,MagickPathExtent);
1703 return(strlen(filename));
1705 while ((*cursor !=
'\0') && ((p-filename) < ((ssize_t) MagickPathExtent-1)))
1723 specifier_start=cursor;
1724 while (isdigit((
int) ((
unsigned char) *cursor)) != 0)
1726 if ((*cursor ==
'd') || (*cursor ==
'o') || (*cursor ==
'x'))
1729 *specifier_end = cursor+1;
1731 if (IsValidFormatSpecifier(specifier_start,specifier_end) != MagickFalse)
1734 format_specifier[MagickPathExtent];
1737 length = cursor-specifier_start;
1742 (void) snprintf(format_specifier,
sizeof(format_specifier),
1743 "%%%.*s%c",(int) length,specifier_start,*cursor);
1744 count=FormatLocaleString(pattern,
sizeof(pattern),format_specifier,
1746 if ((count <= 0) || ((p-filename+count) >= MagickPathExtent))
1748 (void) CopyMagickString(p,pattern,MagickPathExtent-(p-filename));
1766 *end = strchr(cursor,
']'),
1767 *option = (
const char *) NULL;
1773 if (end == (
const char *) NULL)
1775 extent=(size_t) (end-cursor-1);
1776 if (extent >=
sizeof(pattern))
1778 (void) CopyMagickString(pattern,cursor+1,extent+1);
1779 pattern[extent]=
'\0';
1782 option=GetImageProperty(image,pattern,exception);
1783 if (option == (
const char *) NULL)
1784 option=GetImageArtifact(image,pattern);
1786 if ((option == (
const char *) NULL) &&
1788 option=GetImageOption(image_info,pattern);
1789 if (option == (
const char *) NULL)
1791 option_length=strlen(option);
1792 if ((p-filename+option_length) >= MagickPathExtent)
1794 (void) CopyMagickString(p,option,MagickPathExtent-(p-filename));
1803 if ((p-filename+1) >= MagickPathExtent)
1808 return(strlen(filename));
1838MagickExport MagickBooleanType IsHighDynamicRangeImage(
const Image *image,
1841#if !defined(MAGICKCORE_HDRI_SUPPORT)
1844 return(MagickFalse);
1855 assert(image != (
Image *) NULL);
1856 assert(image->signature == MagickCoreSignature);
1857 if (IsEventLogging() != MagickFalse)
1858 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
1859 image_view=AcquireVirtualCacheView(image,exception);
1860#if defined(MAGICKCORE_OPENMP_SUPPORT)
1861 #pragma omp parallel for schedule(static) shared(hdri) \
1862 magick_number_threads(image,image,image->rows,2)
1864 for (y=0; y < (ssize_t) image->rows; y++)
1872 if (hdri != MagickFalse)
1874 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
1875 if (p == (
const Quantum *) NULL)
1877 for (x=0; x < (ssize_t) image->columns; x++)
1882 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1890 traits=GetPixelChannelTraits(image,(PixelChannel) i);
1891 if (traits == UndefinedPixelTrait)
1893 pixel=(double) p[i];
1894 if ((pixel < 0.0) || (pixel > (double) QuantumRange) ||
1895 (pixel != (double) ((QuantumAny) pixel)))
1901 if (hdri != MagickFalse)
1903 p+=(ptrdiff_t) GetPixelChannels(image);
1906 image_view=DestroyCacheView(image_view);
1934MagickExport MagickBooleanType IsImageObject(
const Image *image)
1939 assert(image != (
Image *) NULL);
1940 if (IsEventLogging() != MagickFalse)
1941 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
1942 for (p=image; p != (
Image *) NULL; p=GetNextImageInList(p))
1943 if (p->signature != MagickCoreSignature)
1944 return(MagickFalse);
1971MagickExport MagickBooleanType IsTaintImage(
const Image *image)
1974 magick[MagickPathExtent],
1975 filename[MagickPathExtent];
1980 assert(image != (
Image *) NULL);
1981 assert(image->signature == MagickCoreSignature);
1982 if (IsEventLogging() != MagickFalse)
1983 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
1984 (void) CopyMagickString(magick,image->magick,MagickPathExtent);
1985 (void) CopyMagickString(filename,image->filename,MagickPathExtent);
1986 for (p=image; p != (
Image *) NULL; p=GetNextImageInList(p))
1988 if (p->taint != MagickFalse)
1990 if (LocaleCompare(p->magick,magick) != 0)
1992 if (LocaleCompare(p->filename,filename) != 0)
1995 return(MagickFalse);
2024MagickExport MagickBooleanType ModifyImage(
Image **image,
2030 assert(image != (
Image **) NULL);
2031 assert(*image != (
Image *) NULL);
2032 assert((*image)->signature == MagickCoreSignature);
2033 if (IsEventLogging() != MagickFalse)
2034 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",(*image)->filename);
2035 if (GetImageReferenceCount(*image) <= 1)
2037 clone_image=CloneImage(*image,0,0,MagickTrue,exception);
2038 LockSemaphoreInfo((*image)->semaphore);
2039 (*image)->reference_count--;
2040 UnlockSemaphoreInfo((*image)->semaphore);
2079 const size_t width,
const size_t height,
const PixelInfo *background,
2094 assert(image_info != (
const ImageInfo *) NULL);
2095 assert(image_info->signature == MagickCoreSignature);
2096 assert(background != (
const PixelInfo *) NULL);
2097 if (IsEventLogging() != MagickFalse)
2098 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
2099 image=AcquireImage(image_info,exception);
2100 image->columns=width;
2102 image->colorspace=background->colorspace;
2103 image->alpha_trait=background->alpha_trait;
2104 image->fuzz=background->fuzz;
2105 image->depth=background->depth;
2107 image_view=AcquireAuthenticCacheView(image,exception);
2108#if defined(MAGICKCORE_OPENMP_SUPPORT)
2109 #pragma omp parallel for schedule(static) shared(status) \
2110 magick_number_threads(image,image,image->rows,2)
2112 for (y=0; y < (ssize_t) image->rows; y++)
2120 if (status == MagickFalse)
2122 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2123 if (q == (Quantum *) NULL)
2128 for (x=0; x < (ssize_t) image->columns; x++)
2130 SetPixelViaPixelInfo(image,background,q);
2131 q+=(ptrdiff_t) GetPixelChannels(image);
2133 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2136 image_view=DestroyCacheView(image_view);
2137 if (status == MagickFalse)
2138 image=DestroyImage(image);
2165MagickExport
Image *ReferenceImage(
Image *image)
2167 assert(image != (
Image *) NULL);
2168 assert(image->signature == MagickCoreSignature);
2169 if (IsEventLogging() != MagickFalse)
2170 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
2171 LockSemaphoreInfo(image->semaphore);
2172 image->reference_count++;
2173 UnlockSemaphoreInfo(image->semaphore);
2201MagickExport MagickBooleanType ResetImagePage(
Image *image,
const char *page)
2209 assert(image != (
Image *) NULL);
2210 assert(image->signature == MagickCoreSignature);
2211 if (IsEventLogging() != MagickFalse)
2212 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
2213 flags=ParseAbsoluteGeometry(page,&geometry);
2214 if ((flags & WidthValue) != 0)
2216 if ((flags & HeightValue) == 0)
2217 geometry.height=geometry.width;
2218 image->page.width=geometry.width;
2219 image->page.height=geometry.height;
2221 if ((flags & AspectValue) != 0)
2223 if ((flags & XValue) != 0)
2224 image->page.x+=geometry.x;
2225 if ((flags & YValue) != 0)
2226 image->page.y+=geometry.y;
2230 if ((flags & XValue) != 0)
2232 image->page.x=geometry.x;
2233 if ((image->page.width == 0) && (geometry.x > 0))
2234 image->page.width=(size_t) ((ssize_t) image->columns+geometry.x);
2236 if ((flags & YValue) != 0)
2238 image->page.y=geometry.y;
2239 if ((image->page.height == 0) && (geometry.y > 0))
2240 image->page.height=(size_t) ((ssize_t) image->rows+geometry.y);
2272MagickExport MagickBooleanType ResetImagePixels(
Image *image,
2290 assert(image != (
Image *) NULL);
2291 assert(image->signature == MagickCoreSignature);
2292 if (IsEventLogging() != MagickFalse)
2293 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
2294 pixels=AcquirePixelCachePixels(image,&length,exception);
2295 if (pixels != (
void *) NULL)
2300 (void) memset(pixels,0,length);
2307 image_view=AcquireAuthenticCacheView(image,exception);
2308#if defined(MAGICKCORE_OPENMP_SUPPORT)
2309 #pragma omp parallel for schedule(static) shared(status) \
2310 magick_number_threads(image,image,image->rows,2)
2312 for (y=0; y < (ssize_t) image->rows; y++)
2320 if (status == MagickFalse)
2322 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2323 if (q == (Quantum *) NULL)
2328 for (x=0; x < (ssize_t) image->columns; x++)
2330 (void) memset(q,0,GetPixelChannels(image)*
sizeof(Quantum));
2331 q+=(ptrdiff_t) GetPixelChannels(image);
2333 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2336 image_view=DestroyCacheView(image_view);
2368MagickExport MagickBooleanType SetImageAlpha(
Image *image,
const Quantum alpha,
2380 assert(image != (
Image *) NULL);
2381 assert(image->signature == MagickCoreSignature);
2382 if (IsEventLogging() != MagickFalse)
2383 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
2384 image->alpha_trait=BlendPixelTrait;
2386 image_view=AcquireAuthenticCacheView(image,exception);
2387#if defined(MAGICKCORE_OPENMP_SUPPORT)
2388 #pragma omp parallel for schedule(static) shared(status) \
2389 magick_number_threads(image,image,image->rows,2)
2391 for (y=0; y < (ssize_t) image->rows; y++)
2399 if (status == MagickFalse)
2401 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2402 if (q == (Quantum *) NULL)
2407 for (x=0; x < (ssize_t) image->columns; x++)
2409 if (GetPixelWriteMask(image,q) > (QuantumRange/2))
2410 SetPixelAlpha(image,alpha,q);
2411 q+=(ptrdiff_t) GetPixelChannels(image);
2413 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2416 image_view=DestroyCacheView(image_view);
2447MagickExport MagickBooleanType SetImageBackgroundColor(
Image *image,
2462 assert(image != (
Image *) NULL);
2463 assert(image->signature == MagickCoreSignature);
2464 if (IsEventLogging() != MagickFalse)
2465 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
2466 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
2467 return(MagickFalse);
2468 if ((image->background_color.alpha_trait != UndefinedPixelTrait) &&
2469 ((image->alpha_trait & BlendPixelTrait) == 0))
2470 (
void) SetImageAlphaChannel(image,ActivateAlphaChannel,exception);
2471 ConformPixelInfo(image,&image->background_color,&background,exception);
2476 image_view=AcquireAuthenticCacheView(image,exception);
2477#if defined(MAGICKCORE_OPENMP_SUPPORT)
2478 #pragma omp parallel for schedule(static) shared(status) \
2479 magick_number_threads(image,image,image->rows,2)
2481 for (y=0; y < (ssize_t) image->rows; y++)
2489 if (status == MagickFalse)
2491 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2492 if (q == (Quantum *) NULL)
2497 for (x=0; x < (ssize_t) image->columns; x++)
2499 SetPixelViaPixelInfo(image,&background,q);
2500 q+=(ptrdiff_t) GetPixelChannels(image);
2502 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2505 image_view=DestroyCacheView(image_view);
2535MagickExport ChannelType SetImageChannelMask(
Image *image,
2536 const ChannelType channel_mask)
2538 return(SetPixelChannelMask(image,channel_mask));
2568MagickExport MagickBooleanType SetImageColor(
Image *image,
2580 assert(image != (
Image *) NULL);
2581 assert(image->signature == MagickCoreSignature);
2582 assert(color != (
const PixelInfo *) NULL);
2583 if (IsEventLogging() != MagickFalse)
2584 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
2585 image->colorspace=color->colorspace;
2586 image->alpha_trait=color->alpha_trait;
2587 image->fuzz=color->fuzz;
2588 image->depth=color->depth;
2590 image_view=AcquireAuthenticCacheView(image,exception);
2591#if defined(MAGICKCORE_OPENMP_SUPPORT)
2592 #pragma omp parallel for schedule(static) shared(status) \
2593 magick_number_threads(image,image,image->rows,2)
2595 for (y=0; y < (ssize_t) image->rows; y++)
2603 if (status == MagickFalse)
2605 q=QueueCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
2606 if (q == (Quantum *) NULL)
2611 for (x=0; x < (ssize_t) image->columns; x++)
2613 SetPixelViaPixelInfo(image,color,q);
2614 q+=(ptrdiff_t) GetPixelChannels(image);
2616 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
2619 image_view=DestroyCacheView(image_view);
2651MagickExport MagickBooleanType SetImageStorageClass(
Image *image,
2654 assert(image != (
Image *) NULL);
2655 assert(image->signature == MagickCoreSignature);
2657 assert(exception->signature == MagickCoreSignature);
2658 if (IsEventLogging() != MagickFalse)
2659 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
2660 image->storage_class=storage_class;
2661 return(SyncImagePixelCache(image,exception));
2693MagickExport MagickBooleanType SetImageExtent(
Image *image,
const size_t columns,
2696 if ((columns == 0) || (rows == 0))
2697 ThrowBinaryException(ImageError,
"NegativeOrZeroImageSize",image->filename);
2698 image->columns=columns;
2700 if (image->depth == 0)
2703 (void) ThrowMagickException(exception,GetMagickModule(),ImageError,
2704 "ImageDepthNotSupported",
"`%s'",image->filename);
2706 if (image->depth > (8*
sizeof(MagickSizeType)))
2708 image->depth=8*
sizeof(MagickSizeType);
2709 (void) ThrowMagickException(exception,GetMagickModule(),ImageError,
2710 "ImageDepthNotSupported",
"`%s'",image->filename);
2712 return(SyncImagePixelCache(image,exception));
2763 *format_type_formats[] =
2787 (void) CopyMagickString(magic,component,MagickPathExtent);
2792 format_type=UndefinedFormatType;
2793 magick_info=GetMagickInfo(magic,exception);
2794 if ((magick_info != (
const MagickInfo *) NULL) &&
2795 (magick_info->format_type != UndefinedFormatType))
2796 format_type=magick_info->format_type;
2798 while ((format_type == UndefinedFormatType) &&
2799 (format_type_formats[i] != (
char *) NULL))
2801 if ((*magic == *format_type_formats[i]) &&
2802 (LocaleCompare(magic,format_type_formats[i]) == 0))
2803 format_type=ExplicitFormatType;
2806 if (format_type == UndefinedFormatType)
2807 (void) CopyMagickString(image_info->magick,magic,MagickPathExtent);
2809 if (format_type == ExplicitFormatType)
2811 image_info->affirm=MagickTrue;
2812 (void) CopyMagickString(image_info->magick,magic,MagickPathExtent);
2814 if (LocaleCompare(magic,
"RGB") == 0)
2815 image_info->affirm=MagickFalse;
2816 return(magick_info);
2819MagickExport MagickBooleanType SetImageInfo(
ImageInfo *image_info,
2823 component[MagickPathExtent],
2824 magic[MagickPathExtent],
2825 path[MagickPathExtent],
2852 assert(image_info != (
ImageInfo *) NULL);
2853 assert(image_info->signature == MagickCoreSignature);
2854 if (IsEventLogging() != MagickFalse)
2855 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",
2856 image_info->filename);
2858 GetPathComponent(image_info->filename,SubimagePath,component);
2859 if (*component !=
'\0')
2864 if (IsSceneGeometry(component,MagickFalse) == MagickFalse)
2866 if (IsGeometry(component) != MagickFalse)
2867 (void) CloneString(&image_info->extract,component);
2875 (void) CloneString(&image_info->scenes,component);
2876 image_info->scene=StringToUnsignedLong(image_info->scenes);
2877 image_info->number_scenes=image_info->scene;
2878 p=image_info->scenes;
2879 for (q=(
char *) image_info->scenes; *q !=
'\0'; p++)
2881 while ((isspace((
int) ((
unsigned char) *p)) != 0) || (*p ==
','))
2883 first=(size_t) strtol(p,&q,10);
2885 while (isspace((
int) ((
unsigned char) *q)) != 0)
2888 last=(size_t) strtol(q+1,&q,10);
2891 if (first < image_info->scene)
2892 image_info->scene=first;
2893 if (last > image_info->number_scenes)
2894 image_info->number_scenes=last;
2897 image_info->number_scenes-=image_info->scene-1;
2901 if (*image_info->magick ==
'\0')
2902 GetPathComponent(image_info->filename,ExtensionPath,component);
2903 if (*component !=
'\0')
2908 GetPathComponent(image_info->filename,BasePathSansCompressExtension,path);
2909 GetPathComponent(path,ExtensionPath,component);
2911 image_info->affirm=MagickFalse;
2912 sans_exception=AcquireExceptionInfo();
2913 if ((*component !=
'\0') && (IsGlob(component) == MagickFalse))
2914 magick_info=SetImageInfoFromExtension(image_info,component,magic,
2920 GetPathComponent(image_info->filename,MagickPath,magic);
2923 (void) CopyMagickString(magic,image_info->magick,MagickPathExtent);
2924 magick_info=GetMagickInfo(magic,sans_exception);
2925 if ((magick_info != (
const MagickInfo *) NULL) &&
2926 (magick_info->format_type == ExplicitFormatType))
2927 image_info->affirm=MagickTrue;
2929 GetPathComponent(image_info->filename,CanonicalPath,component);
2931 GetPathComponent(image_info->filename,SubcanonicalPath,component);
2932 (void) CopyMagickString(image_info->filename,component,MagickPathExtent);
2943 magick_info=GetMagickInfo(magic,sans_exception);
2945 if (magick_info == (
const MagickInfo *) NULL)
2947 delegate_info=GetDelegateInfo(magic,
"*",sans_exception);
2949 delegate_info=GetDelegateInfo(
"*",magic,sans_exception);
2951 ((*component !=
'\0') && (IsGlob(component) == MagickFalse)))
2956 magick_info=SetImageInfoFromExtension(image_info,component,magic,
2960 if (((magick_info != (
const MagickInfo *) NULL) ||
2962 (IsMagickConflict(magic) == MagickFalse))
2964 image_info->affirm=MagickTrue;
2965 (void) CopyMagickString(image_info->magick,magic,MagickPathExtent);
2966 GetPathComponent(image_info->filename,CanonicalPath,component);
2967 (void) CopyMagickString(image_info->filename,component,
2971 sans_exception=DestroyExceptionInfo(sans_exception);
2972 if ((magick_info == (
const MagickInfo *) NULL) ||
2973 (GetMagickEndianSupport(magick_info) == MagickFalse))
2974 image_info->endian=UndefinedEndian;
2975 if ((image_info->adjoin != MagickFalse) && (frames > 1))
2980 (void) InterpretImageFilename(image_info,(
Image *) NULL,
2981 image_info->filename,(int) image_info->scene,component,exception);
2982 if ((LocaleCompare(component,image_info->filename) != 0) &&
2983 (strchr(component,
'%') == (
char *) NULL))
2984 image_info->adjoin=MagickFalse;
2986 if ((image_info->adjoin != MagickFalse) && (frames > 0))
2991 magick_info=GetMagickInfo(magic,exception);
2992 if (magick_info != (
const MagickInfo *) NULL)
2993 if (GetMagickAdjoin(magick_info) == MagickFalse)
2994 image_info->adjoin=MagickFalse;
2996 if (image_info->affirm != MagickFalse)
3009 magick_size=GetMagicPatternExtent(exception);
3010 if (magick_size == 0)
3011 return(MagickFalse);
3012 image=AcquireImage(image_info,exception);
3013 (void) CopyMagickString(image->filename,image_info->filename,
3015 sans_exception=AcquireExceptionInfo();
3016 status=OpenBlob(image_info,image,ReadBinaryBlobMode,sans_exception);
3017 sans_exception=DestroyExceptionInfo(sans_exception);
3018 if (status == MagickFalse)
3020 image=DestroyImage(image);
3021 return(MagickFalse);
3023 if ((IsBlobSeekable(image) == MagickFalse) ||
3024 (IsBlobExempt(image) != MagickFalse))
3030 status=ImageToFile(image,component,exception);
3031 if (CloseBlob(image) == MagickFalse)
3033 if (status == MagickFalse)
3035 (void) RelinquishUniqueFileResource(component);
3036 image=DestroyImage(image);
3037 return(MagickFalse);
3039 SetImageInfoFile(image_info,(FILE *) NULL);
3040 (void) CopyMagickString(image->filename,component,MagickPathExtent);
3041 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
3042 if (status == MagickFalse)
3044 (void) RelinquishUniqueFileResource(component);
3045 image=DestroyImage(image);
3046 return(MagickFalse);
3048 (void) CopyMagickString(image_info->filename,component,
3050 image_info->temporary=MagickTrue;
3052 magick=(
unsigned char *) AcquireQuantumMemory(1,magick_size);
3053 if (magick == (
unsigned char *) NULL)
3055 (void) CloseBlob(image);
3056 image=DestroyImage(image);
3057 return(MagickFalse);
3059 (void) memset(magick,0,magick_size);
3060 count=ReadBlob(image,magick_size,magick);
3061 (void) SeekBlob(image,-((MagickOffsetType) count),SEEK_CUR);
3062 (void) CloseBlob(image);
3063 image=DestroyImage(image);
3067 sans_exception=AcquireExceptionInfo();
3068 magic_info=GetMagicInfo(magick,(
size_t) count,sans_exception);
3069 magick=(
unsigned char *) RelinquishMagickMemory(magick);
3070 if ((magic_info != (
const MagicInfo *) NULL) &&
3071 (GetMagicName(magic_info) != (
char *) NULL))
3076 if ((magick_info != (
const MagickInfo *) NULL) &&
3077 (GetMagickUseExtension(magick_info) != MagickFalse) &&
3078 (LocaleCompare(magick_info->magick_module,GetMagicName(
3080 (
void) CopyMagickString(image_info->magick,magick_info->name,
3084 (void) CopyMagickString(image_info->magick,GetMagicName(
3085 magic_info),MagickPathExtent);
3086 magick_info=GetMagickInfo(image_info->magick,sans_exception);
3088 if ((magick_info == (
const MagickInfo *) NULL) ||
3089 (GetMagickEndianSupport(magick_info) == MagickFalse))
3090 image_info->endian=UndefinedEndian;
3091 sans_exception=DestroyExceptionInfo(sans_exception);
3094 magick_info=GetMagickInfo(image_info->magick,sans_exception);
3095 if ((magick_info == (
const MagickInfo *) NULL) ||
3096 (GetMagickEndianSupport(magick_info) == MagickFalse))
3097 image_info->endian=UndefinedEndian;
3098 sans_exception=DestroyExceptionInfo(sans_exception);
3130MagickExport
void SetImageInfoBlob(
ImageInfo *image_info,
const void *blob,
3131 const size_t length)
3133 assert(image_info != (
ImageInfo *) NULL);
3134 assert(image_info->signature == MagickCoreSignature);
3135 if (IsEventLogging() != MagickFalse)
3136 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",
3137 image_info->filename);
3138 image_info->blob=(
void *) blob;
3139 image_info->length=length;
3167MagickExport
void SetImageInfoCustomStream(
ImageInfo *image_info,
3170 assert(image_info != (
ImageInfo *) NULL);
3171 assert(image_info->signature == MagickCoreSignature);
3172 if (IsEventLogging() != MagickFalse)
3173 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",
3174 image_info->filename);
3202MagickExport
void SetImageInfoFile(
ImageInfo *image_info,FILE *file)
3204 assert(image_info != (
ImageInfo *) NULL);
3205 assert(image_info->signature == MagickCoreSignature);
3206 if (IsEventLogging() != MagickFalse)
3207 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",
3208 image_info->filename);
3209 image_info->file=file;
3242MagickExport MagickBooleanType SetImageMask(
Image *image,
const PixelMask type,
3258 assert(image != (
Image *) NULL);
3259 if (IsEventLogging() != MagickFalse)
3260 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
3261 assert(image->signature == MagickCoreSignature);
3262 if (mask == (
const Image *) NULL)
3268 image->channels=(ChannelType) ((
unsigned int) image->channels &
3269 (
unsigned int) ~ReadMaskChannel);
3272 case WritePixelMask:
3274 image->channels=(ChannelType) ((
unsigned int) image->channels &
3275 (
unsigned int) ~WriteMaskChannel);
3280 image->channels=(ChannelType) ((
unsigned int) image->channels &
3281 (
unsigned int) ~CompositeMaskChannel);
3285 return(SyncImagePixelCache(image,exception));
3291 image->channels=(ChannelType) (image->channels | ReadMaskChannel);
3294 case WritePixelMask:
3296 image->channels=(ChannelType) (image->channels | WriteMaskChannel);
3301 image->channels=(ChannelType) (image->channels | CompositeMaskChannel);
3305 if (SyncImagePixelCache(image,exception) == MagickFalse)
3306 return(MagickFalse);
3308 image->mask_trait=UpdatePixelTrait;
3309 mask_view=AcquireVirtualCacheView(mask,exception);
3310 image_view=AcquireAuthenticCacheView(image,exception);
3311#if defined(MAGICKCORE_OPENMP_SUPPORT)
3312 #pragma omp parallel for schedule(static) shared(status) \
3313 magick_number_threads(mask,image,image->rows,2)
3315 for (y=0; y < (ssize_t) image->rows; y++)
3326 if (status == MagickFalse)
3328 p=GetCacheViewVirtualPixels(mask_view,0,y,mask->columns,1,exception);
3329 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
3330 if ((p == (
const Quantum *) NULL) || (q == (Quantum *) NULL))
3335 for (x=0; x < (ssize_t) image->columns; x++)
3341 if ((x < (ssize_t) mask->columns) && (y < (ssize_t) mask->rows))
3342 intensity=GetPixelIntensity(mask,p);
3347 SetPixelReadMask(image,ClampToQuantum(intensity),q);
3350 case WritePixelMask:
3352 SetPixelWriteMask(image,ClampToQuantum(intensity),q);
3357 SetPixelCompositeMask(image,ClampToQuantum(intensity),q);
3361 p+=(ptrdiff_t) GetPixelChannels(mask);
3362 q+=(ptrdiff_t) GetPixelChannels(image);
3364 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3367 image->mask_trait=UndefinedPixelTrait;
3368 mask_view=DestroyCacheView(mask_view);
3369 image_view=DestroyCacheView(image_view);
3403MagickExport MagickBooleanType SetImageRegionMask(
Image *image,
3418 assert(image != (
Image *) NULL);
3419 assert(image->signature == MagickCoreSignature);
3420 if (IsEventLogging() != MagickFalse)
3421 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
3428 image->channels=(ChannelType) ((
unsigned int) image->channels &
3429 (
unsigned int) ~ReadMaskChannel);
3432 case WritePixelMask:
3434 image->channels=(ChannelType) ((
unsigned int) image->channels &
3435 (
unsigned int) ~WriteMaskChannel);
3440 image->channels=(ChannelType) ((
unsigned int) image->channels &
3441 (
unsigned int) ~CompositeMaskChannel);
3445 return(SyncImagePixelCache(image,exception));
3451 image->channels=(ChannelType) (image->channels | ReadMaskChannel);
3454 case WritePixelMask:
3456 image->channels=(ChannelType) (image->channels | WriteMaskChannel);
3461 image->channels=(ChannelType) (image->channels | CompositeMaskChannel);
3465 if (SyncImagePixelCache(image,exception) == MagickFalse)
3466 return(MagickFalse);
3468 image->mask_trait=UpdatePixelTrait;
3469 image_view=AcquireAuthenticCacheView(image,exception);
3470#if defined(MAGICKCORE_OPENMP_SUPPORT)
3471 #pragma omp parallel for schedule(static) shared(status) \
3472 magick_number_threads(image,image,image->rows,2)
3474 for (y=0; y < (ssize_t) image->rows; y++)
3482 if (status == MagickFalse)
3484 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
3485 if (q == (Quantum *) NULL)
3490 for (x=0; x < (ssize_t) image->columns; x++)
3496 if (((x >= region->x) && (x < (region->x+(ssize_t) region->width))) &&
3497 ((y >= region->y) && (y < (region->y+(ssize_t) region->height))))
3503 SetPixelReadMask(image,pixel,q);
3506 case WritePixelMask:
3508 SetPixelWriteMask(image,pixel,q);
3513 SetPixelCompositeMask(image,pixel,q);
3517 q+=(ptrdiff_t) GetPixelChannels(image);
3519 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3522 image->mask_trait=UndefinedPixelTrait;
3523 image_view=DestroyCacheView(image_view);
3556MagickExport VirtualPixelMethod SetImageVirtualPixelMethod(
Image *image,
3557 const VirtualPixelMethod virtual_pixel_method,
ExceptionInfo *exception)
3559 assert(image != (
const Image *) NULL);
3560 assert(image->signature == MagickCoreSignature);
3561 if (IsEventLogging() != MagickFalse)
3562 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
3563 return(SetPixelCacheVirtualMethod(image,virtual_pixel_method,exception));
3601static ssize_t SmushXGap(
const Image *smush_image,
const Image *images,
3629 if (images->previous == (
Image *) NULL)
3632 SetGeometry(smush_image,&right_geometry);
3633 GravityAdjustGeometry(right_image->columns,right_image->rows,
3634 right_image->gravity,&right_geometry);
3635 left_image=images->previous;
3636 SetGeometry(smush_image,&left_geometry);
3637 GravityAdjustGeometry(left_image->columns,left_image->rows,
3638 left_image->gravity,&left_geometry);
3639 gap=right_image->columns;
3640 left_view=AcquireVirtualCacheView(left_image,exception);
3641 right_view=AcquireVirtualCacheView(right_image,exception);
3642 for (y=0; y < (ssize_t) smush_image->rows; y++)
3644 for (x=(ssize_t) left_image->columns-1; x > 0; x--)
3646 p=GetCacheViewVirtualPixels(left_view,x,left_geometry.y+y,1,1,exception);
3647 if ((p == (
const Quantum *) NULL) ||
3648 (GetPixelAlpha(left_image,p) != TransparentAlpha) ||
3649 (((ssize_t) left_image->columns-x-1) >= (ssize_t) gap))
3652 i=(ssize_t) left_image->columns-x-1;
3653 for (x=0; x < (ssize_t) right_image->columns; x++)
3655 p=GetCacheViewVirtualPixels(right_view,x,right_geometry.y+y,1,1,
3657 if ((p == (
const Quantum *) NULL) ||
3658 (GetPixelAlpha(right_image,p) != TransparentAlpha) ||
3659 ((x+i) >= (ssize_t) gap))
3662 if ((x+i) < (ssize_t) gap)
3665 right_view=DestroyCacheView(right_view);
3666 left_view=DestroyCacheView(left_view);
3667 if (y < (ssize_t) smush_image->rows)
3669 return((ssize_t) gap-offset);
3672static ssize_t SmushYGap(
const Image *smush_image,
const Image *images,
3700 if (images->previous == (
Image *) NULL)
3702 bottom_image=images;
3703 SetGeometry(smush_image,&bottom_geometry);
3704 GravityAdjustGeometry(bottom_image->columns,bottom_image->rows,
3705 bottom_image->gravity,&bottom_geometry);
3706 top_image=images->previous;
3707 SetGeometry(smush_image,&top_geometry);
3708 GravityAdjustGeometry(top_image->columns,top_image->rows,top_image->gravity,
3710 gap=bottom_image->rows;
3711 top_view=AcquireVirtualCacheView(top_image,exception);
3712 bottom_view=AcquireVirtualCacheView(bottom_image,exception);
3713 for (x=0; x < (ssize_t) smush_image->columns; x++)
3715 for (y=(ssize_t) top_image->rows-1; y > 0; y--)
3717 p=GetCacheViewVirtualPixels(top_view,top_geometry.x+x,y,1,1,exception);
3718 if ((p == (
const Quantum *) NULL) ||
3719 (GetPixelAlpha(top_image,p) != TransparentAlpha) ||
3720 (((ssize_t) top_image->rows-y-1) >= (ssize_t) gap))
3723 i=(ssize_t) top_image->rows-y-1;
3724 for (y=0; y < (ssize_t) bottom_image->rows; y++)
3726 p=GetCacheViewVirtualPixels(bottom_view,bottom_geometry.x+x,y,1,1,
3728 if ((p == (
const Quantum *) NULL) ||
3729 (GetPixelAlpha(bottom_image,p) != TransparentAlpha) ||
3730 ((y+i) >= (ssize_t) gap))
3733 if ((y+i) < (ssize_t) gap)
3736 bottom_view=DestroyCacheView(bottom_view);
3737 top_view=DestroyCacheView(top_view);
3738 if (x < (ssize_t) smush_image->columns)
3740 return((ssize_t) gap-offset);
3743MagickExport
Image *SmushImages(
const Image *images,
3744 const MagickBooleanType stack,
const ssize_t offset,
ExceptionInfo *exception)
3746#define SmushImageTag "Smush/Image"
3782 assert(images != (
Image *) NULL);
3783 assert(images->signature == MagickCoreSignature);
3785 assert(exception->signature == MagickCoreSignature);
3786 if (IsEventLogging() != MagickFalse)
3787 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",images->filename);
3789 alpha_trait=image->alpha_trait;
3791 width=image->columns;
3793 next=GetNextImageInList(image);
3794 for ( ; next != (
Image *) NULL; next=GetNextImageInList(next))
3796 if (next->alpha_trait != UndefinedPixelTrait)
3797 alpha_trait=BlendPixelTrait;
3799 if (stack != MagickFalse)
3801 if (next->columns > width)
3802 width=next->columns;
3804 if (next->previous != (
Image *) NULL)
3805 height=(
size_t) MagickMax((ssize_t) height+offset,0U);
3808 width+=next->columns;
3809 if (next->previous != (
Image *) NULL)
3810 width=(size_t) MagickMax((ssize_t) width+offset,0U);
3811 if (next->rows > height)
3817 smush_image=CloneImage(image,width,height,MagickTrue,exception);
3818 if (smush_image == (
Image *) NULL)
3819 return((
Image *) NULL);
3820 if (SetImageStorageClass(smush_image,DirectClass,exception) == MagickFalse)
3822 smush_image=DestroyImage(smush_image);
3823 return((
Image *) NULL);
3825 smush_image->alpha_trait=alpha_trait;
3826 (void) SetImageBackgroundColor(smush_image,exception);
3830 for (n=0; n < (MagickOffsetType) number_images; n++)
3832 SetGeometry(smush_image,&geometry);
3833 GravityAdjustGeometry(image->columns,image->rows,image->gravity,&geometry);
3834 if (stack != MagickFalse)
3836 x_offset-=geometry.x;
3837 y_offset-=SmushYGap(smush_image,image,offset,exception);
3841 x_offset-=SmushXGap(smush_image,image,offset,exception);
3842 y_offset-=geometry.y;
3844 status=CompositeImage(smush_image,image,OverCompositeOp,MagickTrue,x_offset,
3845 y_offset,exception);
3846 proceed=SetImageProgress(image,SmushImageTag,n,number_images);
3847 if (proceed == MagickFalse)
3849 if (stack == MagickFalse)
3851 x_offset+=(ssize_t) image->columns;
3857 y_offset+=(ssize_t) image->rows;
3859 image=GetNextImageInList(image);
3861 if (stack == MagickFalse)
3862 smush_image->columns=(size_t) x_offset;
3864 smush_image->rows=(size_t) y_offset;
3865 if (status == MagickFalse)
3866 smush_image=DestroyImage(smush_image);
3867 return(smush_image);
3894MagickExport MagickBooleanType StripImage(
Image *image,
3900 magick_unreferenced(exception);
3901 assert(image != (
Image *) NULL);
3902 if (IsEventLogging() != MagickFalse)
3903 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
3904 DestroyImageProfiles(image);
3905 (void) DeleteImageProperty(image,
"comment");
3906 (void) DeleteImageProperty(image,
"date:create");
3907 (void) DeleteImageProperty(image,
"date:modify");
3908 (void) DeleteImageProperty(image,
"date:timestamp");
3909 status=SetImageArtifact(image,
"png:exclude-chunk",
3910 "bKGD,caNv,cHRM,eXIf,gAMA,iCCP,iTXt,pHYs,sRGB,tEXt,zCCP,zTXt,date");
3940static inline Quantum PushColormapIndex(
Image *image,
const Quantum index,
3941 MagickBooleanType *range_exception)
3943 if ((
size_t) index < image->colors)
3945 *range_exception=MagickTrue;
3946 return((Quantum) 0);
3962 assert(image != (
Image *) NULL);
3963 assert(image->signature == MagickCoreSignature);
3964 if (IsEventLogging() != MagickFalse)
3965 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"...");
3966 if (image->ping != MagickFalse)
3968 if (image->storage_class != PseudoClass)
3969 return(MagickFalse);
3970 assert(image->colormap != (
PixelInfo *) NULL);
3971 range_exception=MagickFalse;
3974 image_view=AcquireAuthenticCacheView(image,exception);
3975#if defined(MAGICKCORE_OPENMP_SUPPORT)
3976 #pragma omp parallel for schedule(static) shared(range_exception,status) \
3977 magick_number_threads(image,image,image->rows,2)
3979 for (y=0; y < (ssize_t) image->rows; y++)
3990 if (status == MagickFalse)
3992 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
3993 if (q == (Quantum *) NULL)
3998 for (x=0; x < (ssize_t) image->columns; x++)
4000 index=PushColormapIndex(image,GetPixelIndex(image,q),&range_exception);
4001 SetPixelViaPixelInfo(image,image->colormap+(ssize_t) index,q);
4002 q+=(ptrdiff_t) GetPixelChannels(image);
4004 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
4007 image_view=DestroyCacheView(image_view);
4009 if ((image->ping == MagickFalse) && (range_exception != MagickFalse))
4010 (void) ThrowMagickException(exception,GetMagickModule(),
4011 CorruptImageWarning,
"InvalidColormapIndex",
"`%s'",image->filename);
4052MagickExport MagickBooleanType SyncImagesSettings(
ImageInfo *image_info,
4058 assert(image_info != (
const ImageInfo *) NULL);
4059 assert(image_info->signature == MagickCoreSignature);
4060 assert(images != (
Image *) NULL);
4061 assert(images->signature == MagickCoreSignature);
4062 if (IsEventLogging() != MagickFalse)
4063 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",images->filename);
4065 for ( ; image != (
Image *) NULL; image=GetNextImageInList(image))
4066 (
void) SyncImageSettings(image_info,image,exception);
4067 (void) DeleteImageOption(image_info,
"page");
4071MagickExport MagickBooleanType SyncImageSettings(
const ImageInfo *image_info,
4089 assert(image_info != (
const ImageInfo *) NULL);
4090 assert(image_info->signature == MagickCoreSignature);
4091 assert(image != (
Image *) NULL);
4092 assert(image->signature == MagickCoreSignature);
4093 if (IsEventLogging() != MagickFalse)
4094 (void) LogMagickEvent(TraceEvent,GetMagickModule(),
"%s",image->filename);
4095 option=GetImageOption(image_info,
"background");
4096 if (option != (
const char *) NULL)
4097 (void) QueryColorCompliance(option,AllCompliance,&image->background_color,
4099 option=GetImageOption(image_info,
"black-point-compensation");
4100 if (option != (
const char *) NULL)
4101 image->black_point_compensation=(MagickBooleanType) ParseCommandOption(
4102 MagickBooleanOptions,MagickFalse,option);
4103 option=GetImageOption(image_info,
"blue-primary");
4104 if (option != (
const char *) NULL)
4106 flags=ParseGeometry(option,&geometry_info);
4107 if ((flags & RhoValue) != 0)
4108 image->chromaticity.blue_primary.x=geometry_info.rho;
4109 image->chromaticity.blue_primary.y=image->chromaticity.blue_primary.x;
4110 if ((flags & SigmaValue) != 0)
4111 image->chromaticity.blue_primary.y=geometry_info.sigma;
4113 option=GetImageOption(image_info,
"bordercolor");
4114 if (option != (
const char *) NULL)
4115 (void) QueryColorCompliance(option,AllCompliance,&image->border_color,
4118 option=GetImageOption(image_info,
"compose");
4119 if (option != (
const char *) NULL)
4120 image->compose=(CompositeOperator) ParseCommandOption(MagickComposeOptions,
4121 MagickFalse,option);
4123 option=GetImageOption(image_info,
"compress");
4124 if (option != (
const char *) NULL)
4125 image->compression=(CompressionType) ParseCommandOption(
4126 MagickCompressOptions,MagickFalse,option);
4127 option=GetImageOption(image_info,
"debug");
4128 if (option != (
const char *) NULL)
4129 image->debug=(MagickBooleanType) ParseCommandOption(MagickBooleanOptions,
4130 MagickFalse,option);
4131 option=GetImageOption(image_info,
"density");
4132 if (option != (
const char *) NULL)
4134 flags=ParseGeometry(option,&geometry_info);
4135 if ((flags & RhoValue) != 0)
4136 image->resolution.x=geometry_info.rho;
4137 image->resolution.y=image->resolution.x;
4138 if ((flags & SigmaValue) != 0)
4139 image->resolution.y=geometry_info.sigma;
4141 option=GetImageOption(image_info,
"depth");
4142 if (option != (
const char *) NULL)
4143 image->depth=StringToUnsignedLong(option);
4144 option=GetImageOption(image_info,
"endian");
4145 if (option != (
const char *) NULL)
4146 image->endian=(EndianType) ParseCommandOption(MagickEndianOptions,
4147 MagickFalse,option);
4148 option=GetImageOption(image_info,
"filter");
4149 if (option != (
const char *) NULL)
4150 image->filter=(FilterType) ParseCommandOption(MagickFilterOptions,
4151 MagickFalse,option);
4152 option=GetImageOption(image_info,
"fuzz");
4153 if (option != (
const char *) NULL)
4154 image->fuzz=StringToDoubleInterval(option,(
double) QuantumRange+1.0);
4155 option=GetImageOption(image_info,
"gravity");
4156 if (option != (
const char *) NULL)
4157 image->gravity=(GravityType) ParseCommandOption(MagickGravityOptions,
4158 MagickFalse,option);
4159 option=GetImageOption(image_info,
"green-primary");
4160 if (option != (
const char *) NULL)
4162 flags=ParseGeometry(option,&geometry_info);
4163 if ((flags & RhoValue) != 0)
4164 image->chromaticity.green_primary.x=geometry_info.rho;
4165 image->chromaticity.green_primary.y=image->chromaticity.green_primary.x;
4166 if ((flags & SigmaValue) != 0)
4167 image->chromaticity.green_primary.y=geometry_info.sigma;
4169 option=GetImageOption(image_info,
"intent");
4170 if (option != (
const char *) NULL)
4171 image->rendering_intent=(RenderingIntent) ParseCommandOption(
4172 MagickIntentOptions,MagickFalse,option);
4173 option=GetImageOption(image_info,
"intensity");
4174 if (option != (
const char *) NULL)
4175 image->intensity=(PixelIntensityMethod) ParseCommandOption(
4176 MagickPixelIntensityOptions,MagickFalse,option);
4177 option=GetImageOption(image_info,
"interlace");
4178 if (option != (
const char *) NULL)
4179 image->interlace=(InterlaceType) ParseCommandOption(MagickInterlaceOptions,
4180 MagickFalse,option);
4181 option=GetImageOption(image_info,
"interpolate");
4182 if (option != (
const char *) NULL)
4183 image->interpolate=(PixelInterpolateMethod) ParseCommandOption(
4184 MagickInterpolateOptions,MagickFalse,option);
4185 option=GetImageOption(image_info,
"loop");
4186 if (option != (
const char *) NULL)
4187 image->iterations=StringToUnsignedLong(option);
4188 option=GetImageOption(image_info,
"mattecolor");
4189 if (option != (
const char *) NULL)
4190 (void) QueryColorCompliance(option,AllCompliance,&image->matte_color,
4192 option=GetImageOption(image_info,
"orient");
4193 if (option != (
const char *) NULL)
4194 image->orientation=(OrientationType) ParseCommandOption(
4195 MagickOrientationOptions,MagickFalse,option);
4196 option=GetImageOption(image_info,
"page");
4197 if (option != (
const char *) NULL)
4202 geometry=GetPageGeometry(option);
4203 flags=ParseAbsoluteGeometry(geometry,&image->page);
4204 geometry=DestroyString(geometry);
4206 option=GetImageOption(image_info,
"quality");
4207 if (option != (
const char *) NULL)
4208 image->quality=StringToUnsignedLong(option);
4209 option=GetImageOption(image_info,
"red-primary");
4210 if (option != (
const char *) NULL)
4212 flags=ParseGeometry(option,&geometry_info);
4213 if ((flags & RhoValue) != 0)
4214 image->chromaticity.red_primary.x=geometry_info.rho;
4215 image->chromaticity.red_primary.y=image->chromaticity.red_primary.x;
4216 if ((flags & SigmaValue) != 0)
4217 image->chromaticity.red_primary.y=geometry_info.sigma;
4219 if (image_info->quality != UndefinedCompressionQuality)
4220 image->quality=image_info->quality;
4221 option=GetImageOption(image_info,
"scene");
4222 if (option != (
const char *) NULL)
4223 image->scene=StringToUnsignedLong(option);
4224 option=GetImageOption(image_info,
"taint");
4225 if (option != (
const char *) NULL)
4226 image->taint=(MagickBooleanType) ParseCommandOption(MagickBooleanOptions,
4227 MagickFalse,option);
4228 option=GetImageOption(image_info,
"tile-offset");
4229 if (option != (
const char *) NULL)
4234 geometry=GetPageGeometry(option);
4235 flags=ParseAbsoluteGeometry(geometry,&image->tile_offset);
4236 geometry=DestroyString(geometry);
4238 option=GetImageOption(image_info,
"transparent-color");
4239 if (option != (
const char *) NULL)
4240 (void) QueryColorCompliance(option,AllCompliance,&image->transparent_color,
4242 option=GetImageOption(image_info,
"type");
4243 if (option != (
const char *) NULL)
4244 image->type=(ImageType) ParseCommandOption(MagickTypeOptions,MagickFalse,
4246 option=GetImageOption(image_info,
"units");
4247 units=image_info->units;
4248 if (option != (
const char *) NULL)
4249 units=(ResolutionType) ParseCommandOption(MagickResolutionOptions,
4250 MagickFalse,option);
4251 if (units != UndefinedResolution)
4253 if (image->units != units)
4254 switch (image->units)
4256 case PixelsPerInchResolution:
4258 if (units == PixelsPerCentimeterResolution)
4260 image->resolution.x/=2.54;
4261 image->resolution.y/=2.54;
4265 case PixelsPerCentimeterResolution:
4267 if (units == PixelsPerInchResolution)
4269 image->resolution.x=(double) ((
size_t) (100.0*2.54*
4270 image->resolution.x+0.5))/100.0;
4271 image->resolution.y=(double) ((
size_t) (100.0*2.54*
4272 image->resolution.y+0.5))/100.0;
4280 option=GetImageOption(image_info,
"density");
4281 if (option != (
const char *) NULL)
4283 flags=ParseGeometry(option,&geometry_info);
4284 if ((flags & RhoValue) != 0)
4285 image->resolution.x=geometry_info.rho;
4286 image->resolution.y=image->resolution.x;
4287 if ((flags & SigmaValue) != 0)
4288 image->resolution.y=geometry_info.sigma;
4291 option=GetImageOption(image_info,
"virtual-pixel");
4292 if (option != (
const char *) NULL)
4293 (void) SetImageVirtualPixelMethod(image,(VirtualPixelMethod)
4294 ParseCommandOption(MagickVirtualPixelOptions,MagickFalse,option),
4296 option=GetImageOption(image_info,
"white-point");
4297 if (option != (
const char *) NULL)
4299 flags=ParseGeometry(option,&geometry_info);
4300 if ((flags & RhoValue) != 0)
4301 image->chromaticity.white_point.x=geometry_info.rho;
4302 image->chromaticity.white_point.y=image->chromaticity.white_point.x;
4303 if ((flags & SigmaValue) != 0)
4304 image->chromaticity.white_point.y=geometry_info.sigma;
4312 if (image->image_info != (
ImageInfo *) NULL)
4313 image->image_info=DestroyImageInfo(image->image_info);
4314 image->image_info=CloneImageInfo(image_info);