Advertisement
garfield

[COD]: Criador de imagem

May 8th, 2011
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.    
  3.   //            @Author: [iPs]SuYaNw
  4.  
  5.   $im = imagecreate(200, 20);
  6.   $bg = imagecolorallocate($im, 255, 255, 255);
  7.   $textcolor = imagecolorallocate($im, 0, 0, 255);
  8.   imagestring($im, 5, 10, 0, "Moro Logo Ali Downloads", $textcolor);
  9.   header("Content-type: image/png");
  10.   imagepng($im);
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement