Image::Magick::Brand - Perl extension for creating branded images with ImageMagick.
  use Image::Magick::Brand;
  my $b = new Image::Magick::Brand;
  
  $b->debug(1); # debugging statements on
  
  # Required parameters
  $b->brand( source => 'brand.png',
             target => 'photo.jpg',
             output => 'branded.jpg' );
   
  # Required and optional parameters
  $b->brand( source    => 'brand.png',
             target    => 'photo.jpg',
             output    => 'branded.jpg',
             gravity   => 'SouthWest',
             format    => 'jpg',
             composite => 'over',
             quality   => 75 );
Create branded images by composing one image on top of another. For optimal results, use a transparent png (or gif...if you must) as the source image. Note: You must have the appropriate system libraries installed to use certain image formats (ie: lipjpeg, libpng). ImageMagick will complain if you don't.
Source + Target = Branded Image
       +---------+   +---------+
       |         |   |         |
       |         |   |         |
       |         |   | +--+    |
+--+   |         |   | |  |    |
|  | + |         | = | +--+    |
+--+   +---------+   +---------+
Image::Magick
+---------+ | 1 2 3 | | 4 | | 5 6 7 | +---------- 1 = NorthWest 2 = North 3 = NorthEast 4 = Center 5 = SouthWest (default) 6 = South 7 = SouthEast
None by default.
Version 0.01 (03 May 2005): Initial Revision
the Image::Magick::Thumbnail::Fixed manpage
http://imagemagick.org/script/perl-magick.php
Adam Roth, <aroth@cpan.org>
Originally developed for http://www.fetishcyclesfanclub.com. Let me know if you find this module useful.
Copyright 2005 by Adam Roth
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.