Advertisement
Guest User

Circle

a guest
Apr 15th, 2010
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 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. imagearc($img, 15, 15, 20, 20, 0, 360, $black);
  10.  
  11. header("Content-Type: image/png");
  12. imagepng($img);
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement