vote up 1 vote down star

What is the nest PHP thumbnailer/resizer class that preferably works on most shared hosts?

Clarification: I'm looking for a PHP class/wrapper (eg. phpThumb(), Asido), so I don't have to run GD or ImageMagick functions directly. I'm specifically looking for resizing and framing functions.

flag
Why use a wrapper when the original tools are more powerful? – ceejayoz Sep 15 '08 at 17:43
it's much simpler than using the GD image functions directly – xtimesninety Sep 15 '08 at 17:59
If you want to stick within that wrapper's intended use cases, sure. If you want to do something they didn't anticipate, though, you'll be SOL and have to delve into the inner workings of GD again. Learn the underlying functions once and you'll be in better shape. – ceejayoz Sep 15 '08 at 18:11

9 Answers

vote up 2 vote down

I have good experiences with both phpThumb and Wideimage. Wideimage is the more modern PHP5 approach while phpThumb has much more features.

link|flag
thanks! it's the first time i heard of wideimage ;) i'll check it out – xtimesninety Sep 15 '08 at 17:51
btw i've had some problems when I use phpThumb on some shared hosts – xtimesninety Sep 15 '08 at 17:51
vote up 0 vote down

GD is supported on many hosts http://uk3.php.net/manual/en/book.image.php

link|flag
vote up 0 vote down

I guess the best two (and by far the most common) are either GD or ImageMagick. I've had a lot of joy with the second.

link|flag
vote up 0 vote down

Imagemagick is good, and has two APIs for PHP:

http://www.imagemagick.org/script/api.php#php

http://www.imagemagick.org/script/api.php#php

link|flag
vote up 0 vote down

I've found that both ImageMagick and GD are too slow for creating un-cacheable dynamic images on the fly if you have more than one request per second. I had to serve dozens of requests per second, and found that I could get around 50 times speed improvement by writing the routine as FastCGI with C & jpeglib.

link|flag
not the answer that i'm looking for, but certainly good information! ;) – xtimesninety Sep 15 '08 at 17:57
vote up 0 vote down

I use Greg_Photo as an accessor to the underlying GD commands. For pretty basic resizing it works great.

link|flag
Dude, your link just crashed my chrome (malware alert). – Huppie Sep 15 '08 at 18:19
vote up 0 vote down

Asido works great with some modifications ;) It supports most features that I need (resizing, framing), has drivers for both GD and Imagemagick, nice simple API, and organized codebase.

link|flag
vote up 0 vote down

ImageMagick will definitely produce really sharp images, but it's not easy to install or manage. ImageMagick itself needs to be installed on the server, and then a compatinble version of MagickWand needs to be installed.

I've also found that it has a habit of creating massive temporary files of up to a GB or more and then dumping them into your /tmp directory, which you need to be careful of. It will also eat up a massive amount of memory unpredictably.

For these reasons, I would not recommend ImageMagick if you are on a shared host.

link|flag
vote up 0 vote down

Imagick is a native PHP extension to create and modify images using the ImageMagick API. It is used on many shared hosts:

http://pecl.php.net/package/imagick

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.