]> granicus.if.org Git - imagemagick/commitdiff
...
authorCristy <urban-warrior@imagemagick.org>
Sun, 8 Jul 2018 23:14:08 +0000 (19:14 -0400)
committerCristy <urban-warrior@imagemagick.org>
Sun, 8 Jul 2018 23:14:08 +0000 (19:14 -0400)
MagickWand/composite.c
PerlMagick/Magick.xs
PerlMagick/quantum/quantum.xs.in

index cbd7e2fe4ffff5f885ef50e6edc6f7950b1d50d4..373d6435984214304a771a3228d4a0a500e0b072 100644 (file)
@@ -205,13 +205,11 @@ static MagickBooleanType CompositeImageList(ImageInfo *image_info,Image **image,
               /*
                 Tile the composite image.
               */
-              (void) SetImageArtifact(*image,"compose:outside-overlay","false");
               columns=composite_image->columns;
               for (y=0; y < (ssize_t) (*image)->rows; y+=(ssize_t) composite_image->rows)
                 for (x=0; x < (ssize_t) (*image)->columns; x+=(ssize_t) columns)
                   status&=CompositeImage(*image,composite_image,
-                    composite_options->compose,composite_options->clip_to_self,
-                      x,y,exception);
+                    composite_options->compose,MagickTrue,x,y,exception);
             }
           else
             {
index 1a63976e85a8fdb04051006764fc00e740386514..727369ee756faf5adaa6eab9889729a11109db82 100644 (file)
@@ -8791,10 +8791,10 @@ Mogrify(ref,...)
                 {
                   if (attribute_flag[8] != 0) /* rotate */
                     (void) CompositeImage(image,rotate_image,compose,
-                      clip_to_self,x,y,exception);
+                      MagickTrue,x,y,exception);
                   else
                     (void) CompositeImage(image,composite_image,compose,
-                      clip_to_self,x,y,exception);
+                      MagickTrue,x,y,exception);
                 }
               if (attribute_flag[8] != 0) /* rotate */
                 rotate_image=DestroyImage(rotate_image);
index 5b0a2675f5f18b295c966be50ce04baacc6eba5e..52d4382a30d492c7f119ff72713921af407a2a78 100644 (file)
@@ -8792,10 +8792,10 @@ Mogrify(ref,...)
                 {
                   if (attribute_flag[8] != 0) /* rotate */
                     (void) CompositeImage(image,rotate_image,compose,
-                      clip_to_self,x,y,exception);
+                      MagickTrue,x,y,exception);
                   else
                     (void) CompositeImage(image,composite_image,compose,
-                      clip_to_self,x,y,exception);
+                      MagickTrue,x,y,exception);
                 }
               if (attribute_flag[8] != 0) /* rotate */
                 rotate_image=DestroyImage(rotate_image);