A very old Saturday Night Live skit had a product that was both a
dessert topping and a floor wax.  We had a similar problem with the
composite mask.  It was treated as an image mask and as a clip mask which
caused problems with certain compositing operations.  To fix we choose
that the mask is forever more a clip mask (as was originally indended).
To produce an image mask instead replace

  $corners->Composite(image=>$corners, mask=>$mask);

with

  $mask->Set(matte=>'false');
  $corners->Composite(image=>$mask, compose=>'CopyOpacity');
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to