Guest User

Untitled

a guest
Oct 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $im = imagecreatetruecolor ( 200, 60 );
  3.  
  4. $white = imagecolorallocate ( $im, 0xFF, 0xFF, 0xFF );
  5. $red = imagecolorallocate ( $im, 0xC7, 0x14, 0x14 );
  6.  
  7. imagefilledrectangle ( $im, 0, 0, 200, 60, $red );
  8.  
  9. header ( "Content-Type: image/png" );
  10. imagepng ( $im );
  11. imagedestroy ( $im );
  12. ?>
Add Comment
Please, Sign In to add comment