Posted: 2003-07-17T07:39:10-07:00
I run the ImageMagick Studio web site at http://enigma.es.dupont.com/MagickStudi ... Studio.cgi which accepts images from users and they can convert, edit, or composite them. I have seen no significant slow-down on our 1.2 GHZ Linux box with 1GB of memory and 50GB of disk.
The PerlMagick script prevents users from taxing the system by limiting the number of bytes that can be uploaded, limiting the maximum size of the image, forcing images larger than 2048x2048 to cache to disk, etc. All these options are available in ImageMagick/PerlMagick. One example is
The PerlMagick script prevents users from taxing the system by limiting the number of bytes that can be uploaded, limiting the maximum size of the image, forcing images larger than 2048x2048 to cache to disk, etc. All these options are available in ImageMagick/PerlMagick. One example is
Code: Select all
$image->Set('disk-limit'=>512); # 512mb disk limit