NAME
Image::Base::Imager -- draw images using Imager
SYNOPSIS
use Image::Base::Imager;
my $image = Image::Base::Imager->new (-width => 100,
-height => 100);
$image->rectangle (0,0, 99,99, 'white');
$image->xy (20,20, 'black');
$image->line (50,50, 70,70, '#FF00FF');
$image->line (50,50, 70,70, '#0000AAAA9999');
$image->save ('/some/filename.png');
CLASS HIERARCHY
Image::Base::Imager is a subclass of Image::Base,
Image::Base
Image::Base::Imager
DESCRIPTION
Image::Base::Imager extends Image::Base to create or update image files using the Imager module.
As of Imager 0.80 the supported file formats for read and write include PNG, JPEG, TIFF, PNM, GIF, BMP, and ICO (including CUR). See Imager::Files for the full list.
Colour names are anything recognised by Imager::Color. As of Imager 0.80 this means the GIMP Named_Colors if you have the GIMP installed, the X11 rgb.txt, hex "#RGB", "#RRGGBB", etc. The system rgb.txt is used if available, otherwise a copy in Imager::Color::Table. An Imager::Color object can also be given.
Paletted Images
For a paletted image, if Imager is given a colour not already in the palette then it converts the whole image to RGB. Image::Base::Imager doesn't try do anything about that yet. An add_colours can pre-load the palette.
The Image::Base intention is just to throw colour names at drawing functions, so perhaps Image::Base::Imager should extend the palette when necessary, or choose a close colour if full. But an $imager->to_paletted after all drawing might come out better than colours as drawing proceeds.
FUNCTIONS
$image = Image::Base::Imager->new (key=>value,...)-
Create and return a new image object. A new image can be started with
-widthand-height,$image = Image::Base::Imager->new (-width => 200, -height => 100);Or an existing file can be read,
$image = Image::Base::Imager->new (-file => '/some/filename.png');Or an
Imagerobject can be given,$image = Image::Base::Imager->new (-imager => $iobj); $image->ellipse ($x1,$y1, $x2,$y2, $colour, $fill)-
Draw an ellipse within the rectangle with top-left corner
$x1,$y1and bottom-right$x2,$y2. Optional$filltrue means a filled ellipse.In the current implementation circles (width==height) drawn with Imager and ellipses as such go to
Image::Base. This is a bit inconsistent but uses the features of Imager as far as possible and its drawing should be faster. $image->save$image->save ($filename)-
Save to
-file, or with a$filenameargument set-filethen save to that.The file format is taken from the
-file_format(see below) if that was set by aloador explicitset, otherwise Imager follows the filename extension. In both cases if format or extension is unrecognised thensave()croaks. $image->add_colours ($name, $name, ...)-
Add colours to the image palette. Colour names are the same as to the drawing functions.
$image->add_colours ('red', 'green', '#FF00FF');For a non-paletted image
add_coloursdoes nothing since in that case each pixel has RGB component values, rather than an index into a palette.
ATTRIBUTES
-width(integer)-height(integer)-
Setting these changes the size of the image.
-imager-
The underlying
Imagerobject. -file_format(string orundef)-
The file format as a string like "png" or "jpeg", or
undefif unknown or never set.After
loadthe-file_formatis the format read. Setting-file_formatcan change the format for a subsequentsave.This is held in the imager "i_format" tag and passed as the
typewhen saving. Ifundefwhen saving, Imager will look at the filename extension.There's no attempt to check or validate the
-file_formatvalue, since it's possible to add new formats to Imager at run time. Expectsave()to croak if the format is unknown. -hotx(integer or undef, default undef)-hoty(integer or undef, default undef)-
The cursor hotspot in CUR images (variant of ICO). These are the
cur_hotspotxandcur_hotspotytags in the Imager object. -ncolours(integer, read-only)-
The number of colours allocated in the palette, or
undefon a non-paletted image. (The Imagercolorcount.)This is similar to the
-ncoloursofImage::Xpm.
SEE ALSO
Image::Base::GD, Image::Base::PNGwriter, Image::Base::Prima, Image::Xbm, Image::Xpm, Image::Pbm
HOME PAGE
http://user42.tuxfamily.org/image-base-imager/index.html
LICENSE
Image-Base-Imager is Copyright 2010, 2011 Kevin Ryde
Image-Base-Imager is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
Image-Base-Imager is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Image-Base-Imager. If not, see <http://www.gnu.org/licenses/>.