Skip Menu |

This queue is for tickets about the Image-Magick-Brand CPAN distribution.

Report information
The Basics
Id: 14171
Status: new
Priority: 0/
Queue: Image-Magick-Brand

People
Owner: Nobody in particular
Requestors: claco [...] chrislaco.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.01
Fixed in: (no value)



Subject: Composite option not being passed
It appears that the composite option to Brand was not being passed and it should be passed as compose instead of composite. Patch attached.
--- Brand.pm.orig Tue May 03 19:06:14 2005 +++ Brand.pm Mon Aug 15 10:54:09 2005 @@ -80,7 +80,7 @@ $im_t->Set( quality => $quality ); $im_t->Composite( image => $im_s, - composite => 'over', + compose => $composite, gravity => $gravity ); $im_t->Write("$format:$output");