PHP/Graphics Image/imagetypes
Версия от 10:37, 26 мая 2010; (обсуждение)
Test whether JPEGs are supported
<?php
$supported = imagetypes();
if($supported & IMG_JPG) {
echo "Jpegs are supported in this GD version";
} else {
echo "Jpegs are not supported.";
}
?>