The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Imager::Image::Xbm - load X11 bitmap files into Imager objects

SYNOPSIS

   $imager_object = Imager::Image::Xpm->new(file => $xbm_filename);

DESCRIPTION

Load a XBM (X11 bitmap) file into an Imager object using Image::Xbm.

EXAMPLE

Convert an XBM file to a PNG file:

   use Imager::Image::Xbm;
   Imager::Image::Xbm->new(file => $xbm_file)->write(file => $png_file, type => 'png');

AUTHOR

Slaven Rezic

SEE ALSO

Image::Xbm, Imager, Imager::Image::Base.