in reply to Re: Image::Magick slowness in CGI
in thread Image::Magick slowness in CGI
ImageMagick is comparatively slower than other Graphics Packages. It is NOT the problem of PerlMagick (Image::Magick).
A possible problem is Environment variables. The CGI has a different environment than that of command-line. The environment variables are set in two ways.
you can workaround this problem by passing environment using PassEnv directive in your httpd.conf ( in your virtual host section ) to pass the named environment variables to CGI scripts instead of suppressing them.
Try using
and its value, will become available to CGI scripts.PassEnv MAGICK_HOME
check with your /ImageMagick/im-faq.tgz or /ImageMagick/im-faq.zip. for more details.
The zip file contains im-faq.pod and .html, im-faq-1.cgi and env.cgi.
Updates:
This FAQ is available here
Cheers !
--VC
|
|---|