GD Library
25 Jul
This will test if ImageCopyResampled is installed on the server.
Result
if (function_exists('ImageCopyResampled'))
echo "ImageCopyResampled already installed.
";
else
echo "ImageCopyResampled NOT installed.
";
?>
PHP:
<?php
if (function_exists('ImageCopyResampled'))
echo "ImageCopyResampled already installed.<br>";
else
echo "ImageCopyResampled NOT installed.<br>";
?>

No comments yet