Advertisement
Guest User

Square

a guest
Apr 15th, 2010
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. $img = imagecreatetruecolor(50, 50);
  3.  
  4. $black = imagecolorallocate($img, 0, 0, 0);
  5. $white = imagecolorallocate($img, 255, 255, 255);
  6.  
  7. imagefill($img, 0, 0, $white);
  8.  
  9. imagerectangle($img, 0, 0, 49, 49, $black);
  10.  
  11. header("Content-Type: image/png");
  12. imagepng($img);
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement