Цитата(recruit @ 22.3.2006, 19:12 ) | | а есть какой нибудь пример? |
| Код | <a href='http://super-site.ru'> <table width="141" height="155" style='cursor: pointer; background: url(file://E:/Denwer/home/phpTests/www/stuff/1.gif) no-repeat'> <tr align="center"><td>Баннер</td></tr> </table> </a>
|
на PHP:
| Код | <?php header('Content-Type: image/png'); $st = iconv('cp1251', 'utf-8', 'Аффтар жжот :)'); $img = imagecreatefromgif('./1.gif'); $color = imagecolorallocate($img, 0,0,0); imagettftext($img, 15,45, 25,130, $color, 'D:\Windows\Fonts\Arial.ttf', $st); imagegif($img); imagedestroy($img); ?>
|
|