]> granicus.if.org Git - imagemagick/blobdiff - MagickWand/magick-image.c
(no commit message)
[imagemagick] / MagickWand / magick-image.c
index 989821825b9f672711f9b61038bf789314025830..ef258a3e178bb42904984a48bfea81ff480e0f65 100644 (file)
@@ -110,7 +110,6 @@ static MagickWand *CloneMagickWandFromImages(const MagickWand *wand,
   clone_wand->exception=AcquireExceptionInfo();
   InheritException(clone_wand->exception,wand->exception);
   clone_wand->image_info=CloneImageInfo(wand->image_info);
-  clone_wand->quantize_info=CloneQuantizeInfo(wand->quantize_info);
   clone_wand->images=images;
   clone_wand->debug=IsEventLogging();
   if (clone_wand->debug != MagickFalse)
@@ -418,7 +417,7 @@ static inline MagickBooleanType InsertImageInWand(MagickWand *wand,
     }
   wand->set_first = MagickFalse; /* flag no longer valid */
 
-  /* Current image was flaged as 'pending' iterative processing. */
+  /* Current image was flagged as 'pending' iterative processing. */
   if (wand->image_pending != MagickFalse)
     {
       /* current pending image is the last, append new images */
@@ -7734,7 +7733,7 @@ WandExport MagickBooleanType MagickRandomThresholdImage(MagickWand *wand,
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
 %  MagickReadImage() reads an image or image sequence.  The images are inserted
-%  at the current image pointer position.
+%  jjust before the current image pointer position.
 %
 %  Use MagickSetFirstIterator(), to insert new images before all the current
 %  images in the wand, MagickSetLastIterator() to append add to the end,
@@ -10147,7 +10146,7 @@ WandExport VirtualPixelMethod MagickSetImageVirtualPixelMethod(MagickWand *wand,
     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
   if (wand->images == (Image *) NULL)
     return(UndefinedVirtualPixelMethod);
-  return(SetImageVirtualPixelMethod(wand->images,method));
+  return(SetImageVirtualPixelMethod(wand->images,method,wand->exception));
 }
 \f
 /*