Advertisement
Guest User

Cross

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