Extremely large thumbnails?
Posted: 2011-05-23T11:14:09-07:00
I am processing JPGs and other said images into thumbnails of various sizes ... it was working pretty fine until I made my most recent compile ... now every file is coming out at 500k no matter their size including 128x128.
Wondering what I'm doing wrong, here? I'm using several switches to get these processed depending on the type of file, including, in some cases, palette replacement...
I just find it a bit bizarre that all these JPGs are coming out at 500k no matter what. It's creating a bit of lag on the server I've got them installed on. Here's an example of what I execute (in PHP):
$e = ("env TMPDIR=/var/tmp convert -limit area 3072mb " . $fcin . " -strip -profile icc/AdobeRGB1998.icc -colorspace RGB " . ($rotate != 0 ? " -rotate $rotate" : "") . " -thumbnail " . $size[0] . "x $fcout");
exec($e);
Wondering what I'm doing wrong, here? I'm using several switches to get these processed depending on the type of file, including, in some cases, palette replacement...
I just find it a bit bizarre that all these JPGs are coming out at 500k no matter what. It's creating a bit of lag on the server I've got them installed on. Here's an example of what I execute (in PHP):
$e = ("env TMPDIR=/var/tmp convert -limit area 3072mb " . $fcin . " -strip -profile icc/AdobeRGB1998.icc -colorspace RGB " . ($rotate != 0 ? " -rotate $rotate" : "") . " -thumbnail " . $size[0] . "x $fcout");
exec($e);