Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <?php
  2. header("Content-type: image/png");
  3. $rysunek = imagecreate (300,300);
  4.  
  5. $kolorbialy = imagecolorallocate ($rysunek, 255, 255, 255);
  6. $kolorczerwony = imagecolorallocate ($rysunek, 255, 0, 0);
  7. $kolorczarny = imagecolorallocate ($rysunek, 0, 0, 0);
  8. imagefill ($rysunek, 0, 0, $kolorbialy);
  9.  
  10.  
  11.  
  12. for ($i=1; $i<=300; $i++) {
  13. imagesetpixel ($rysunek, rand()%200-1, rand()%200-1, $kolorczerwony);
  14. imagesetpixel ($rysunek, rand()%200-1, rand()%200-1, $kolorczarny);
  15.  
  16. }
  17.  
  18. imagepng ($rysunek);
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement