Optimizing performance

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Optimizing performance

Post by magick »

Setting the quantum depth to 8 as you have done is about the only optimization you need. You could set the MAGICK_DEBUG environment variable to CACHE to track if ImageMagick is pushing pixels to disk rather than memory. Keeping pixels in memory is important for speed.
Post Reply