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

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

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

GIF creation with PHP

   <source lang="html4strict">

<?php

   Header("Content-type: image/gif");
   $string=implode($argv," ");
   $im = imagecreatefromgif("images/button1.gif");
   $orange = ImageColorAllocate($im, 220, 210, 60);
   $px = (imagesx($im)-7.5*strlen($string))/2;
   ImageString($im,3,$px,9,$string,$orange);
   ImageGif($im);
   ImageDestroy($im);

?>

 </source>