PHP/Graphics Image/imagegif — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 10:37, 26 мая 2010

Working with GIFs

 
<?php
    $animage = imagecreate (200, 200);
    $red = imagecolorallocate ($animage, 255, 0, 0);
    imagerectangle ($animage, 0, 0, 200, 200, $red);
    $white = imagecolorallocate ($animage, 255, 255, 255);
    imagestring($animage, 5, 45, 50, "Hello World!", $white);
    imagegif ($animage);
    header ("Content-type: image/gif");
    imagedestroy ($animage);
?>