second argument to SvPV() must have type STRLEN
[imager.git] / README
CommitLineData
02d1d628 1================================================================
7ad895ee 2Copyright (c) 1999-2001 Arnar M. Hrafnkelsson. All rights reserved.
02d1d628
AMH
3This program is free software; you can redistribute it and/or
4modify it under the same terms as Perl itself.
5================================================================
6
7>> THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY WHATSOEVER <<
b8c2033e
AMH
8If you like or hate Imager, please let us know by sending mail
9to imager@imager.perl.org
02d1d628
AMH
10
11================================================================
12
13
14========================
151. Patent infringements?
16========================
17
18Imager as such contains no patented algorithms. The external
19libraries (which are not written by me) may or may not contain
20patented algorithms. YOU ARE SOLELY RESPONSIBLE FOR OBTAINING
21LICENSE(S) TO USE SUCH LIBRARIES SHOULD YOU NEED ANY.
22
23
24========================
252. Compiling and testing
26========================
27
28Some care has been taken to make the installation as smooth as
29possible. This is rather hard due to the difference between operating
30systems and site setups. To get started just type
31
32$ perl Makefile.PL
33
34It should blurb out a list of which libraries were found and which
35not. If you add a library to the machine after installing Imager it
36does not automatically become available in Imager. It only uses the
37libraries that are found. If the list of found libraries is not what
38you expected, then the Makefile.PL is either not searching in the
39right directories or your box does not have the libraries you think it
40does. For a list of where to get the libraries have a look at
413. External dependencies. To widen the search path for libraries and
42include files set the IM_INCPATH and IM_LIBPATH variables. The
43environment variables that matter when Makefile.PL is run are
44
45IM_INCPATH colon separated list of paths to extra include files
46IM_LIBPATH colon separated list of paths to extra library files
47
48IM_VERBOSE turns on verbose mode for the library scanning and such
49IM_MANUAL to manually select which libraries are used and which not
50IM_NOLOG if true logging will not be compiled into the module
51IM_DEBUG_MALLOC if true malloc debugging will be compiled into the module
52 do not use IM_DEBUG_MALLOC in production - this slows
53 everything down
54
55IM_CFLAGS Extra flags to pass to the compiler
56IM_LFLAGS Extra flags to pass to the linker
57IM_DFLAGS Extra flags to pass to the preprocessor
58
59
60
61When finding the libraries has been sorted out it's time for
62
63$ make
64
65and if that works then do
66
67$ make test
68
69If either fails do take a peek at the file errep.perl. It's creates a
70file report.txt. This is some information which will help me discover
71where the problem is so I can try to fix it in future releases. If
72you find running it ok (just remember - no warranty!) please send the
73report.txt via email to addi@umich.edu .
74
75Troubleshooting tips:
76
77A common problem is that libgif/libungif are sometimes linked to the X
78libraries and then running the tests fails. In that case something
79like:
80
81$ IM_LFLAGS="-L/usr/X11R6/lib -lX11" perl Makefile.PL
82
83Which simply sets the environment variables for the extra libraries
84to include the X libraries (which we do not use at all, but must
85included since libgif has been linked with it).
86
feba68a3
TC
87Otherwise you could just build giflib without any X11 dependencies:
88
89 # must be a clean tree
90 cd giflib-4.1.0
91 ./configure --without-x ...
92
02d1d628
AMH
93Also note that libgif has a few bugs: You can run something like
94
e3ddf807 95$ perl -Iblib/lib -Iblib/arch t/t105gif.t
02d1d628
AMH
96
97This way you can see what comments the test script prints out.
e3ddf807 98t/t105gif.t checks for an bug in libgif and prints out a patch
02d1d628
AMH
99if that bug is present, note that this bug only affects the more
100"advanced" features of libgif.
101
48412c20
AMH
102If for some reason you have libungif-devel package installed but
103not libungif on RedHat then you will probably get lots of errors
104like undefined symbol: FreeSavedImages when running make test.
105Install libungif package to fix it.
106
107
4f337d03
AMH
108Imager needs to have a libtiff version of at least 3.5.5. In the
109future we might consider supporting older libtiff versions. For
110now you can either configure Imager manually (by
02d1d628
AMH
111setting the IM_MANUAL environment variable to 1, in sh:
112
113$ IM_MANUAL=1 perl Makefile.PL
114
115and simply say no to tiff support when asked if you want it, the same thing
116can be used to circumvent problems in gifs to get Imager going.
117
118
119If it worked just continue with the installation as normally
120(with make install).
121
122========================
1233. External dependencies
124========================
125
126Some hints about getting the Imager module to find the libraries it
127needs for specific features. The libraries it uses are:
128
129 jpeg: ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
130
131 png: ftp://ftp.uu.net/graphics/png
132 you also need zlib to use png: ftp://ftp.uu.net/pub/archiving/zip/zlib
ae448e5a 133 We have encountered problems with libpng 1.0.1, which were fixed in 1.0.5
02d1d628
AMH
134
135 gif: http://www.arrakeen.demon.co.uk/giflib/
136or at: http://prtr-13.ucsc.edu/~badger/software/libungif/index.shtml
137
feba68a3
TC
138The default giflib is buggy in rarely used code, you can find a patch
139to fix the worst of the problems at:
140
141 http://www.develop-help.com/imager/giflib.patch
142
02d1d628
AMH
143 tiff: http://www.libtiff.org/
144
145 t1: ftp://ftp.neuroinformatik.ruhr-uni-bochum.de/pub/software/t1lib/
146or at: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/
147
148 tt: http://www.freetype.org/
149
150
151Precompiled versions of some of the libraries might be found at:
152
153AIX:
154 http://www.bull.de/
155 ftp://ftp.rge.com/pub/systems/aix/bull/
156
157
158
159========================
1604. Logging and debugging
161========================
162
163Logging is compiled in by default - if you should want to get of it
164from the binaries you can do so by setting the env IMAGER_NOLOG
165to something. If you want to enable malloc debugging to check for leaks
166then set IMAGER_DEBUG_MALLOC to something. Needless to say it is
167pretty pointless to have malloc debug enabled with no logging since you
168can never see the malloc information that way.
169
170
171========================
1725. Truetype information
173========================
174
175If you enable the truetype part and want it to be TESTED you MUST set
176the environment variable TTFONTTEST to a complete path to a truetype
177font.
178
179
180=================
1816. Win32 Support
182=================
183
184Imager can be installed on Win32 systems. This was ported and tested
faa9b3e7
TC
185with Microsoft Visual C++ 6.0 with build 623 of ActivePerl. You can
186use all of the features of Imager. You can also use Win32 GDI fonts
187directly by supplying the 'face' parameter to Imager::Font->new(...).
188
189I've tested with both MSVC++ 6.0 and cygwin (perl 5.6.1).
02d1d628
AMH
190
191If you have any problems with the Win32 support, please email
192tony@develop-help.com (don't forget to use nmake instead of make).
193
194=======================
1957. General information
196=======================
197
198The Imager module homepage is currently at:
199
200 http://www.eecs.umich.edu/~addi/perl/Imager/
201
202The current docs are rather bad as I've been busy adding features
203but hopefully they will be updated soon. Until then you'll just
204have to use the source. The test scripts might also be a good idea.
205By activating the the #init_log lines in the test script you can get
206rather verbose debugging output from the C code.
207
208
209========================
2108. Thanks
211========================
212
213Thanks go to:
214 Tony Cook ( TonyC )
215 Claes Jacobson ( Claes )
216 Philip Gwyn ( Leolo )
df917a00 217 Michael Slade ( Micksa )
02d1d628
AMH
218 Brad Murray ( HalfJack )
219 Nicholas Dronen ( Veblen )
220 Michael G Schwern ( Schwern )
221 Rocco Caputo ( Dngor )
222 Graham barr ( Gbarr )
223 Mark-Jason Dominus ( Mjd )
224 Jerome
225 Jason Alexander ( Jalex )
226 Randal R. Schwartz ( Merlyn )
227 Tkil ( )
228 Artur Bergman ( Sky )
229 Luc St-Louis ( Lucs )
230 PerlJam ( )
231 Roderick Schertler ( Roderick )
232 Nathan Torkington ( gnat )
233
234(and just to play it safe) all those I forgot to mention.