ImageMagick Installation

 

DBI Module

1. Obtain the latest version of the DBI module distribution from a CPAN mirror or download the 1.48 version from our server:
http://www.jmbsoft.com/software/modules/DBI-1.48.tar.gz

2. Extract the archive on your server and change into the created directory:

gunzip DBI-1.48.tar.gz
tar xf DBI-1.48.tar
cd DBI-1.48

3. Configure, compile and install the module:

perl Makefile.PL
make
make install

4. The installation of this module is complete

***************************************************************************************************************************

DBD::mysql Module

1. If the DBI module is not yet installed, you must install that first. See the instructions above.

2. Obtain the latest version of the DBD::mysql module distribution from a CPAN mirror or download the 2.9004 version from our server:
http://www.jmbsoft.com/software/modules/DBD-mysql-2.9004.tar.gz

3. Extract the archive on your server and change into the created directory:

gunzip DBD-mysql-2.9004.tar.gz
tar xf DBD-mysql-2.9004.tar
cd DBD-mysql-2.9004

4. Configure, compile and install the module:

perl Makefile.PL
make
make install

5. The installation of this module is complete

***************************************************************************************************************************

GD Library and Module

1. Before you can install the GD Perl module you must install the GD programming library. This library has some optional components that we recommend you compile it with, so these instructions will include installation of those components as well.

2. Obtain and install the latest version of the JPEG programming library. You can download version 6b from our server:
http://www.jmbsoft.com/software/modules/jpegsrc.v6b.tar.gz

Extract the archive on your server and change into the created directory:

gunzip jpegsrc.v6b.tar.gz
tar xf jpegsrc.v6b.tar
cd jpeg-6b

Configure, compile and install the library:

./configure --enable-shared
make
make install

Installation of this library is complete

3. Obtain and install the latest version of the PNG programming library. You can download the 1.2.8 version from our server:
http://www.jmbsoft.com/software/modules/libpng-1.2.8-config.tar.gz

Extract the archive on your server and change into the created directory:

gunzip libpng-1.2.8-config.tar.gz
tar xf libpng-1.2.8-config.tar
cd libpng-1.2.8-config

Configure, compile and install the library:

./configure
make
make install

Installation of this library is complete

4. Obtain and install the latest version of the Freetype2 programming library. You can download the 2.1.8 version from our server:
http://www.jmbsoft.com/software/modules/freetype-2.1.8.tar.gz

Extract the archive on your server and change into the created directory:

gunzip freetype-2.1.8.tar.gz
tar xf freetype-2.1.8.tar
cd freetype-2.1.8

Configure, compile and install the library:

./configure
make
make install

Installation of this library is complete

5. Obtain and install the latest version of the GD programming library. You can download the 2.0.33 version from our server:
http://www.jmbsoft.com/software/modules/gd-2.0.33.tar.gz

Extract the archive on your server and change into the created directory:

gunzip gd-2.0.33.tar.gz
tar xf gd-2.0.33.tar
cd gd-2.0.33

Configure, compile and install the library:

./configure
make
make install

Installation of this library is complete

6. Obtain the latest version of the GD Perl module distribution from a CPAN mirror or download the 2.23 version from our server:
http://www.jmbsoft.com/software/modules/GD-2.23.tar.gz

Extract the archive on your server and change into the created directory:

gunzip GD-2.23.tar.gz
tar xf GD-2.23.tar
cd GD-2.23

Configure, compile and install the module:

perl Makefile.PL
make
make install

The installation of this module is complete

***************************************************************************************************************************

ImageMagick Library and Module

1. Before you can install ImageMagick and the ImageMagick Perl module you will need to install some other libraries on your server so that ImageMagick works correctly. Follow steps 2 through 4 of the GD Module installation to install these libraries on your server. Once those are installed, continue with the next step.

2. Obtain and install the latest version of ImageMagick. We recommend that you install at least version 6.0.0 on your server. You can find download mirrors at the ImageMagick homepage or you can download version 6.0.8 from our server:
http://www.jmbsoft.com/software/modules/ImageMagick-6.0.8.tar.gz

Extract the archive on your server and change into the created directory:
(these commands may need to be adjusted depending on the version you download)

gunzip ImageMagick-6.0.0.tar.gz
tar xf ImageMagick-6.0.0.tar
cd ImageMagick-6.0.0

Configure, compile and install the library and Perl module:
Note: The library and Perl module are bundled together and will be installed at the same time

./configure --enable-shared
make
make install

Installation of this library and Perl module is complete

***************************************************************************************************************************


details