in reply to ImageMagick on the webhost
convert (usually written with lowercase "c") is a binary that uses the ImageMagick libraries. Image::Magick, what you are refering to, is a Perl module. Assuming that you are on some *NIX system, you could always try the following, to see what a file exactly is:
$ file /home/myname/lib/convert
To make sure that Image::Magick -the module- is around, just hit:
$ locate Magick.pm # or $ find / -name Magick.pm
Update: since the ImageMagick libraries are most likely installed on the system, you can put the Image::Magick module in your $HOME or somewhere and call it with use lib;. There are many nodes around that'll show you how to install modules in a non-default place.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: ImageMagick on the webhost
by Anonymous Monk on Mar 11, 2004 at 18:53 UTC | |
by b10m (Vicar) on Mar 11, 2004 at 19:00 UTC | |
by Anonymous Monk on Mar 11, 2004 at 19:23 UTC | |
by b10m (Vicar) on Mar 11, 2004 at 19:41 UTC | |
by Anonymous Monk on Mar 12, 2004 at 02:11 UTC | |
|
Re: Re: ImageMagick on the webhost
by Anonymous Monk on Mar 11, 2004 at 18:41 UTC |