sewpafly / post-thumbnail-editor

Wordpress Plugin to manually edit post thumbnails
http://wordpress.org/extend/plugins/post-thumbnail-editor/
32 stars 18 forks source link

PTE should check if GD is installed #105

Open maximejobin opened 9 years ago

maximejobin commented 9 years ago

GD was not installed and no warning or error were raised to let the user know it needed the library.

I had to check the code and to find that out. A simple way to find that out:

<?php
if (extension_loaded('gd') && function_exists('gd_info')) {
    echo "GD library is installed.";
}
else {
    echo "GD library is NOT installed.";
}
?>
sewpafly commented 9 years ago

Thanks, I'll add this to the next version.