Guest User

Untitled

a guest
Sep 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $image = imagecreatetruecolor(200, 50);
  2. $background_color = imagecolorallocate($image, 255, 255, 255);
  3. imagefilledrectangle($image,0,0,200,50,$background_color);
  4. $line_color = imagecolorallocate($image, 211,211,211);
  5. for($i=0;$i<40;$i++) {
  6. imageline($image,0,rand()%50,200,rand()%50,$line_color);
  7. }
  8.  
  9. imagepng($image, "image.png");
Add Comment
Please, Sign In to add comment