
|
View Full Version : HowTo: Install ImageMagick
Frion 03-15-2006, 08:21 AM ImageMagickTM 6.0.0 is a robust collection of tools and libraries offered under a usage license to read, write, and manipulate an image in many image formats (over 89 major formats) including popular formats like TIFF, JPEG, PNG, PDF, PhotoCD, and GIF. With ImageMagick you can create images dynamically, making it suitable for Web applications, etc.
Type: mkdir /home/src
Type: cd /home/src
Type: wget ftp://ftp.fifi.org/pub/ImageMagick/I...6.2.4-6.tar.gz
Type: tar xvzf ImageMagick-6.2.4-6.tar.gz
Type: cd ImageMagick-6.2.4
Type: ./configure
Type: make
Type: make install
Type: cd PerlMagick
Type: perl Makefile.PL
Type: make
Type: make install
Thanks
three-point-o.com 03-24-2006, 02:30 AM thanks for that. was very helpful.
relajo 04-12-2006, 04:05 PM I'm getting this message.....
can anyone help?
no such file I...6.2.4-6.tar.gz
layer0 04-12-2006, 04:18 PM #!/bin/bash
cd /usr/local/src
wget -q http://internap.dl.sourceforge.net/sourceforge/imagemagick/ImageMagick-6.2.6-3.tar.gz -O ImageMagick-6.2.6-3.tar.gz
tar zfx ImageMagick-6.2.6-3.tar.gz
cd ImageMagick*
./configure
make
make install
cd PerlMagick
perl Makefile.PL
make
make install
Try that.
relajo 04-12-2006, 08:09 PM somehow it is not working...this is my first time using ssh though....any other suggestions?
JP
relajo 04-12-2006, 08:31 PM never mind I got it...
THANKS!!!
layer0 04-12-2006, 09:45 PM Good to hear, no problem :)
diggleblop 05-17-2006, 05:55 PM this is the newest version
ftp://ftp.fifi.org/pub/ImageMagick-6.2.7-6.tar.gz (ftp://ftp.fifi/pub/ImageMagick-6.2.7-6.tar.gz)
So just replace that link above with this one
bubazoo 05-27-2006, 11:49 PM I tried following this to install ImageMagick on my hosting providers
centOS 3.7, and I must not have done something right, because I can run
/usr/bin/mogrify
from the command line, but regular user accounts can't run it for some reason, either that or its not compiled right or something, have no idea what I did wrong, I cut/pasted it exactally like u guys said to do?
any way I can test it?
bubazoo 05-28-2006, 02:20 PM nevermind, my hosting provider figured it out for me, all they did was recompile it they said (shrugs) oh well
anyway, to test your imageMagick install to see if its working,
from a SSH command line, type
convert imagefilename.jpg -resize 300x300 newimagefilename.jpg
(or you can use mogrify to rotate and crop images as well)
replacing "imagefilename.jpg" and "newimagefilename.jpg" with your image you want to manipulate with imagemagick :)
and it should create a new image... If it doesn't, check your file permissions first.
imageMagick should then be installed at path: /usr/bin
imageMagick uses 2 main commands mostly, /usr/bin/mogrify and /usr/bin/convert, depending upon if you want to resize, crop, flip rotate, etc, see man ImageMagick for more information :)
easybeau 06-10-2006, 03:52 PM Hello,
I have just downloaded ImageMagick-6.2.8-0-Q16-windows-dll with PerlMagick options, etc...
The installation made successfully, I can acceed the IMDisplay panel.
I'd like to use Mogrify to create thumbnails for my store (OsCommerce).
I'm not a developer and at this point, I'm a bit lost!
I'm not sure which file I have to modify, where create the path (PATH="$HOME/ImageMagick/bin:$PATH")
and how acceed to the VisualMagick Configuration Tool.
I need some help,
Thanks very much
Isabelle
tical 06-10-2006, 04:32 PM If you run CentOS, Fedora, RHEL, or anything else that uses yum..
'yum -y install ImageMagick'
easybeau 06-10-2006, 05:12 PM Hi,
I installed dummy-3.8.1 with typo3.
|