|
Re: Image manipulation GD/PHP v ImageMagick exec()
I'm not sure on the memory usage difference between ImageMagick and GD, as differing image manipulations can impact memory in various ways depending on the code path taken... Each does their own thing...
As far as exec()'ing out, you should get a memory footprint of 64MB to work with, instead of the 32MB limit that PHP imposes... Each Apache daemon runs under a 64MB ulimit (for safety), however PHP has its own internal memory limit set to 32MB that is controlled by its own emalloc library...
Overall, if you hit a memory limit, then some optimization needs to be done to lessen its usage... If optimization isn't enough, then the site would need to move to a MQS were memory tweaking can be done...
|