GD Library

This will test if ImageCopyResampled is installed on the server.

Result

ImageCopyResampled already installed.

PHP:

<?php
if (function_exists('ImageCopyResampled'))
echo "ImageCopyResampled already installed.<br>";
else
echo "ImageCopyResampled NOT installed.<br>";
?>