1 ================================================================
2 Copyright (c) 1999-2004 Arnar M. Hrafnkelsson. All rights reserved.
3 Copyright (c) 2004 Anthony Cook.
4 This program is free software; you can redistribute it and/or
5 modify it under the same terms as Perl itself.
6 ================================================================
8 >> THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY WHATSOEVER <<
9 If you like or hate Imager, please let us know by sending mail
10 to imager@imager.perl.org
12 ================================================================
15 ========================
16 1. Patent infringements?
17 ========================
19 Imager as such contains no patented algorithms. The external
20 libraries (which are not written by me) may or may not contain
21 patented algorithms. YOU ARE SOLELY RESPONSIBLE FOR OBTAINING
22 LICENSE(S) TO USE SUCH LIBRARIES SHOULD YOU NEED ANY.
25 ========================
26 2. Compiling and testing
27 ========================
29 Some care has been taken to make the installation as smooth as
30 possible. This is rather hard due to the difference between operating
31 systems and site setups. To get started just type
35 It should blurb out a list of which libraries were found and which
36 not. If you add a library to the machine after installing Imager it
37 does not automatically become available in Imager. It only uses the
38 libraries that are found. If the list of found libraries is not what
39 you expected, then the Makefile.PL is either not searching in the
40 right directories or your box does not have the libraries you think it
41 does. For a list of where to get the libraries have a look at
42 3. External dependencies. To widen the search path for libraries and
43 include files set the IM_INCPATH and IM_LIBPATH variables. The
44 environment variables that matter when Makefile.PL is run are
46 IM_INCPATH colon separated list of paths to extra include files
47 IM_LIBPATH colon separated list of paths to extra library files
49 IM_VERBOSE turns on verbose mode for the library scanning and such
50 IM_MANUAL to manually select which libraries are used and which not
51 IM_NOLOG if true logging will not be compiled into the module
52 IM_DEBUG_MALLOC if true malloc debugging will be compiled into the module
53 do not use IM_DEBUG_MALLOC in production - this slows
56 IM_CFLAGS Extra flags to pass to the compiler
57 IM_LFLAGS Extra flags to pass to the linker
58 IM_DFLAGS Extra flags to pass to the preprocessor
62 When finding the libraries has been sorted out it's time for
66 and if that works then do
70 If either fails do take a peek at the file errep.perl. It's creates a
71 file report.txt. This is some information which will help me discover
72 where the problem is so I can try to fix it in future releases. If
73 you find running it ok (just remember - no warranty!) please send the
74 report.txt via email to imager@imager.perl.org.
78 A common problem is that libgif/libungif are sometimes linked to the X
79 libraries and then running the tests fails. In that case something
82 $ IM_LFLAGS="-L/usr/X11R6/lib -lX11" perl Makefile.PL
84 Which simply sets the environment variables for the extra libraries
85 to include the X libraries (which we do not use at all, but must
86 included since libgif has been linked with it).
88 Otherwise you could just build giflib without any X11 dependencies:
90 # must be a clean tree
92 ./configure --without-x ...
94 Also note that libgif has a few bugs: You can run something like
96 $ perl -Iblib/lib -Iblib/arch t/t105gif.t
98 This way you can see what comments the test script prints out.
99 t/t105gif.t checks for an bug in libgif and prints out a patch
100 if that bug is present, note that this bug only affects the more
101 "advanced" features of libgif.
103 If for some reason you have libungif-devel package installed but
104 not libungif on RedHat then you will probably get lots of errors
105 like undefined symbol: FreeSavedImages when running make test.
106 Install libungif package to fix it.
108 Stock libungif 4.1.2 or later seems to fix all of the bugs, if you
109 have a problem that version of linungif (or later), let us know and
112 Imager needs to have a libtiff version of at least 3.5.5. In the
113 future we might consider supporting older libtiff versions. For
114 now you can either configure Imager manually (by
115 setting the IM_MANUAL environment variable to 1, in sh:
117 $ IM_MANUAL=1 perl Makefile.PL
119 and simply say no to tiff support when asked if you want it, the same thing
120 can be used to circumvent problems in gifs to get Imager going.
122 If it worked just continue with the installation as normally
125 Freetype 1.x vs Freetype 2.x
126 ----------------------------
128 These two libraries have some conflicting include file names, but as
129 long as you don't put the Freetype 2.x freetype.h directory in the
130 include path it should all work.
132 Put the directory containing ft2build.h in the include path, but not
133 the directory containing the freetype 2.x freetype.h.
135 If you see compilation errors from font.c you've probably made the
136 mistake of putting the Freetype 2.x freetype.h directory into the
139 To see which directories should be in the include path, try:
141 freetype-config --cflags
144 Macintosh dfont and suitcase font support
145 -----------------------------------------
147 Through Freetype 2.1, Imager can use Macintosh DFON (.dfont) fonts and
150 If you want to be able to use more than just the first face in the
151 font file though, you will need to configure freetype2 with the
152 --with-old-mac-fonts option:
154 ./configure --with-old-mac-fonts
156 You can use the index option to get to the other font faces in the
159 # get the second face from $file
160 my $font = Imager::Font->new(file=>$file, index=>1)
161 or die Imager->errstr;
163 If you're using a suitcase font, you will also need to force the use
164 of freetype 2 with the type argument:
166 my $font = Imager::Font->new(file=>$suitcase, type=>'ft2', index=>$index)
167 or die Imager->errstr;
170 ========================
171 3. External dependencies
172 ========================
174 Some hints about getting the Imager module to find the libraries it
175 needs for specific features. The libraries it uses are:
177 jpeg: http://www.ijg.org/files/
178 ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
180 ftp.uu.net is still linked from many places, including the Independent
181 JPEG Groups's home page, but it is non-functional.
183 png: http://www.libpng.org/pub/png/libpng.html
185 you also need zlib to use png: http://www.gzip.org/zlib/
186 We have encountered problems with libpng 1.0.1, which were fixed in 1.0.5
187 Note: you should probably be using zlib 1.1.4, since 1.1.3 has a
188 potential security problem.
190 gif: http://sourceforge.net/projects/libungif
192 giflib/libungif has come a long way since the buggy versions around
193 when Imager's gif support code was written. Preferably you should get
194 at least version 4.1.3. If you have a recent Linux distribution you
195 should be safe with whatever giflib it provides, but if you're
196 building from source, please try to use the latest version.
198 If you download giflib (as opposed to libungif) 4.1.3 from
199 sourceforge, make sure you apply the patch referenced at:
201 https://sourceforge.net/tracker/index.php?func=detail&aid=981255&group_id=102202&atid=631306
203 libungif 4.1.3 does not need this patch.
205 At the time of writing you will need to manually select to install the
206 4.1.2-1 of cygwin's libungif package.
208 tiff: http://www.libtiff.org/
210 t1: http://www.ibiblio.org/pub/Linux/libs/graphics/
213 tt: http://www.freetype.org/
215 Precompiled versions of some of the libraries might be found at:
218 http://www.bullfreeware.com/
222 ========================
223 4. Logging and debugging
224 ========================
226 Logging is compiled in by default - if you should want to get of it
227 from the binaries you can do so by setting the env IMAGER_NOLOG
228 to something. If you want to enable malloc debugging to check for leaks
229 then set IMAGER_DEBUG_MALLOC to something. Needless to say it is
230 pretty pointless to have malloc debug enabled with no logging since you
231 can never see the malloc information that way.
238 Imager can be installed on Win32 systems. This was ported and tested
239 with Microsoft Visual C++ 6.0 with build 623 of ActivePerl. You can
240 use all of the features of Imager. You can also use Win32 GDI fonts
241 directly by supplying the 'face' parameter to Imager::Font->new(...).
243 I've tested with both MSVC++ 6.0 and cygwin (perl 5.6.1).
245 If you see an error under cygwin during testing along the lines of:
247 C:\cygwin\bin\perl.exe: *** unable to remap C:\cygwin\...some dll to the
248 same address as parent (0x...) != 0x....
250 you will need to install the cygwin rebase package and run:
254 Under cygwin you will need at least libungif 4.1.2 installed to
255 prevent lockups in the gif test scripts. At the time of writing you
256 need to select libungif-4.1.2-1 manually in the setup.exe installation
259 If you get errors from your make tool, make sure you're using the same
260 make that was used to build your perl - generally GNU make for cygwin,
261 nmake for Visual C/C++ and dmake for MinGW.
267 Building Imager under OS X is generally straightforward. There are
268 some exceptions though:
270 a) you may find to need to ranlib library files in place after you've
271 installed them, for example:
273 ranlib /usr/local/lib/libgif.a
275 b) the version of GCC enabled by default on OS X 10.4 generates
276 incorrect code for some functions. To work around this run:
280 before building Imager and:
284 after building Imager.
286 This problem exhibits itself as test failures in t/t20fill.t
288 c) if you want to build GCC 4.0 from scratch and use that you will
289 need to adjust the command-line supplied during the link stage, so
290 that there is some other option before the -bundle option.
294 perl Makefile.PL LDDLFLAGS="`perl -MConfig -e 'print "-g $Config{lddlflags}"'`"
296 =======================
297 7. General information
298 =======================
300 The Imager module homepage is currently at:
302 http://imager.perl.org/
304 The current docs are rather bad as I've been busy adding features
305 but hopefully they will be updated soon. Until then you'll just
306 have to use the source. The test scripts might also be a good idea.
307 By activating the the #init_log lines in the test script you can get
308 rather verbose debugging output from the C code.
310 You can report bugs by pointing your browser at:
312 https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Imager
314 ========================
316 ========================
320 Claes Jacobson ( Claes )
321 Philip Gwyn ( Leolo )
322 Michael Slade ( Micksa )
324 Brad Murray ( HalfJack )
325 Nicholas Dronen ( Veblen )
326 Michael G Schwern ( Schwern )
327 Rocco Caputo ( Dngor )
328 Graham barr ( Gbarr )
329 Mark-Jason Dominus ( Mjd )
331 Jason Alexander ( Jalex )
332 Randal R. Schwartz ( Merlyn )
334 Artur Bergman ( Sky )
335 Luc St-Louis ( Lucs )
337 Roderick Schertler ( Roderick )
338 Nathan Torkington ( gnat )
340 (and just to play it safe) all those I forgot to mention.