1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00

Add convert+gifsicle

This commit is contained in:
Michael Foster 2013-08-01 03:58:44 -04:00
parent 7aae4df443
commit 8709b3fdfd

View File

@ -47,6 +47,10 @@ function benchmark($method) {
}
benchmark('gd');
benchmark('imagick');
if (extension_loaded('imagick')) {
benchmark('imagick');
} else {
echo "Imagick extension not loaded... skipping.\n";
}
benchmark('convert');
benchmark('convert+gifsicle');