I have reasearched this a bit but it does not work
Why does it not work and please don't just say, "That is Easy."
| Code: |
| <?php
header("Content-type: image/gif"); $string = $_GET['text']; $im = imagecreatefrompng("http://www.dougie.frih.net/images/files.gif"); $orange = imagecolorallocate($im, 220, 210, 60); $px = (imagesx($im) - 7.5 * strlen($string)) / 2; imagestring($im, 3, $px, 9, $string, $orange); imagepng($im); imagedestroy($im); ?> |
Why does it not work and please don't just say, "That is Easy."
