RMagick installation on Fedoras
RMagick requires ImageMagick and ImageMagick-devel libraries.
Your distribution may include at least some of these libraries by default and probably provides pre-built packages for the others. If not, these are available as source code tarballs from http://www.imagemagick.org/pub/delegates/.
Or you can install these using the yum command:
$yum install ImageMagick
$yum install ImageMagick-devel
RMagick also needs Windows TureType font, download the rpm from here:
http://www.zacharywhitley.com/linux/rpms/fedora/core/6/i386/msttcorefonts-2.0-1.noarch.rpm
Install this:
$ rpm -ivh msttcorefonts-2.0-1.noarch.rpm
Make a symbolic link the font dir to the place rmagick expects them:
ln -s /usr/share/fonts/msttcorefonts /usr/share/fonts/default/TrueType
Some applications based on RMagick also requires freeimage header files.
Download freeimage from here
http://freeimage.sourceforge.net/download.html
Unzip the file and cd to the freeimage dir and run following commands
# make
# make install
Now install RMagic using the gem
$ gem install RMagick --include-dependencies
No comments:
Post a Comment