Imager::Install - installation notes for Imager
perl Makefile.PL make make test make install
Assuming you have all of your required libraries in the places Imager looks, you should be able to use the standard mantra:
perl Makefile.PL make make test make install
to install Imager.
If you've installed libraries in places Imager doesn't look, you can supply extra locations either with command-line options:
perl Makefile.PL --libpath=/home/tony/local/lib --incpath=/home/tony/local/include
or with environment variables:
export IM_LIBPATH=/home/tony/local/lib IM_INCPATH=/home/tony/local/include perl Makefile.PL
Imager's Makefile.PL produces an epilogue indicating which libraries have and haven't been found, for example:
Libraries found: FT2 GIF JPEG PNG T1 TIFF Libraries *not* found: Win32
If a library you expect to be found isn't on this list, use the --verbose
or -v
option to produce way too much information from Imager's search for the libraries:
perl Makefile.PL -v
If you can't resolve this, then run
perl errep.perl
and include the (large) generated report.txt in your email to:
bug-Imager@rt.cpan.org
There are other options used to configure how Imager is built:
--nolog
build Imager without logging support. This will speed up Imager a little. You can also remove logging by setting the IMAGER_NOLOG
environment variable to a true value.
--coverage
used to build Imager for gcov
coverage testing. This is intended for development and also requires options supplied to make
.
--assert
build Imager with assertions enabled.
--tracecontext
build Imager to trace context object management to stderr
for debugging.
IMAGER_NOLOG
- build Imager with logging disabled.IMAGER_DEBUG_MALLOC
- build Imager with it's debug malloc wrappers. This is not compatible with threaded code.IM_INCPATH
- equivalent to --incpath
.IM_LIBPATH
- equivalent to --libpath
.IM_VERBOSE
- equivalent to --verbose
IM_CFLAGS
- extra C compiler flags.IM_LFLAGS
- extra linker flags.IM_DFLAGS
- extra preprocessor flags.Some of the file format and font modules included with Imager use external libraries, which should be installed before you try to install Imager itself.
If you don't have the libraries installed then Imager itself will install successfully, but the file format or font support module won't be.
Preferably the latest version of each library should be used, simple because it has the latest security fixes.
Imager::File::PNG uses libpng for PNG image file support.
Debian: libpng12-dev
Redhat: libpng-devel
Imager::File::TIFF uses libtiff for GIF image file support.
Version 3.6.0 or later is required to avoid an exploit with infinite IFD loops, though it's possible some distrubutions have applied the fix to older versions as a security fix.
Version 3.9.0 is rejected during the probe process due to a serious bug, fixed in 3.9.1.
Debian package: libtiff4-dev
Redhat package: libtiff-devel
Imager::File::GIF uses libgif for GIF image file support.
libgif
releases 4.2.0 and 5.0.0 are specifically not supported, due to bugs in those versions.
Release 4.1.4 or later should be used.
giflib 3 is no longer supported.
libungif
is no longer supported as an alternative.
Debian package: libgif-dev
Redhat package: giflib-devel
Imager::File::JPEG uses libjpeg for JPEG image file support.
You may also use libjpeg-turbo.
To install older releases of libjpeg
from source, you'll need to run:
make install-lib
to install the libraries. make install
only installs the program binaries.
Redhat package: libjpeg-devel
Debian package: libjpeg8-dev
Imager::Font::FT2 uses Freetype 2 (libfreetype) for font support, supporting too many font formats to mention here.
This is the recommended library to use for font support.
Debian: libfreetype6-dev
Redhat: freetype-devel
Imager::Font::T1 uses t1lib for font support, supporting Postscript Type 1 fonts only.
Debian: libt1-dev
Redhat: t1lib-devel
Imager uses Freetype 1 (libttf) if available for font support, supporting TTF fonts only.
Freetype 1.x is essentially unsupported and shouldn't be used for new code.
Several distributions include an Imager package, but they are typically several releases behind due to the nature of release cycles.
Imager typically supports the external libraries as packaged with any supported release of Linux.
To install the libraries used by Imager under Debian (or Ubuntu), run as root (or with sudo):
apt-get install libgif-dev libjpeg8-dev libtiff4-dev libpng12-dev libfreetype6-dev
You may also need to install development tools:
apt-get install build-essential
To install the libraries used by Imager under Redhat and related Linux distributions, run as root (or sudo):
yum install giflib-devel libjpeg-devel libtiff-devel libpng-devel freetype-devel
To install the development tools needed:
yum install gcc
(which appears to be enough on a base Redhat-like install) or the more commonly recommended recipe:
yum groupinstall "Development Tools"
which is massive overkill.
The default perl build in Snow Leopard and Lion is a fat binary, and default builds of giflib, libpng and libjpeg (and maybe other libraries) will produce link failures.
To avoid this you need to supply a CFLAGS parameter to the library's configure script, but since the -arch flag conflicts with the options used to build the dependency files, you need to supply another flag to disable dependency tracking.
Snow Leopard fat binaries include i386, x86_64 and PPC objects, hence you would run configure like:
./configure --disable-dependency-tracking CFLAGS='-arch x86_64 -arch i386 -arch ppc'
Lion doesn't support PPC, so there you run configure like:
./configure --disable-dependency-tracking CFLAGS='-arch x86_64 -arch i386'
For libgif you might also want to supply the --without-x
option:
./configure --disable-dependency-tracking --without-x CFLAGS='-arch x86_64 -arch i386'
If you copy library files into place manually, you may need to run ranlib
on them in their new location:
ranlib /usr/local/lib/libgif.a
Through Freetype 2.1, Imager can use Macintosh DFON (.dfont) fonts and suitcase font files.
If you want to be able to use more than just the first face in the font file though, you will need to configure freetype2 with the --with-old-mac-fonts option:
./configure --with-old-mac-fonts
You can use the index option to get to the other font faces in the file:
# get the second face from $file my $font = Imager::Font->new(file=>$file, index=>1) or die Imager->errstr;
If you're using a suitcase font, you will also need to force the use of freetype 2 with the type argument:
my $font = Imager::Font->new(file=>$suitcase, type=>'ft2', index=>$index) or die Imager->errstr;
The simplest way to install the libraries used by Imager is to install Strawberry perl.
You can then use either the bundled Imager, or install from CPAN.
If you get errors from your make tool, make sure you're using the same make that was used to build your perl - nmake
for Visual C/C++ and dmake
for MinGW, run:
perl -V:make
to see which make was used to build your perl.
To build Imager with as much library support as possible on Cygwin, install the following packages:
libjpeg-devel libpng-devel libgif-devel libtiff-devel libfreetype-devel t1lib-devel w32api-headers w32api-runtime
If you see an error under cygwin during testing along the lines of:
C:\cygwin\bin\perl.exe: *** unable to remap C:\cygwin\...some dll to the same address as parent (0x...) != 0x....
you will need to install the cygwin rebase package and run:
$ rebaseall -v
or possibly, just:
$ perlrebase
will fix the problem.
Freetype 1.x is no longer recommended, is no longer supported upstream, and receives only limited updates in Imager.
These two libraries have some conflicting include file names, but as long as you don't put the Freetype 2.x freetype.h directory in the include path it should all work.
Put the directory containing ft2build.h in the include path, but not the directory containing the freetype 2.x freetype.h.
If you see compilation errors from font.c you've probably made the mistake of putting the Freetype 2.x freetype.h directory into the include path.
To see which directories should be in the include path, try:
freetype-config --cflags
Ideally, freetype-config should be in the PATH when building Imager with freetype 2.x support, in which case Imager::Font::FT2 can configure itself.