#!/usr/bin/php resize( $config['thumb_ext'] ? $config['thumb_ext'] : $extension, $config['thumb_width'], $config['thumb_height'] ); $thumb->to($out); $thumb->_destroy(); $image->destroy(); } $end = microtime(true); printf("Took %.2f seconds (%.2f/second; %.2f ms)\n", $end - $start, $rate = ($count / ($end - $start)), 1000 / $rate); unlink($out); } benchmark('gd'); if (extension_loaded('imagick')) { benchmark('imagick'); } else { echo "Imagick extension not loaded... skipping.\n"; } benchmark('convert'); benchmark('gm'); becnhmark('convert+gifsicle');