Guest User

Untitled

a guest
Jun 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL);
  3. $width = 120;
  4. $height = 120;
  5. $im = @imagecreatetruecolor(120, 120);
  6. $text_color = imagecolorallocate($im, rand(0, 255), rand(0, 255), rand(0, 255));
  7. $maxrnd = 120;
  8. for($y=0;$y<$maxrnd;$y++) {
  9. imagestring($im, 10+$y*2, 0+$y*2, 0+$y*2, 'CITRUSLEAF', $text_color);
  10. };
  11. header('Content-type: image/png');
  12. imagepng($im);
  13. ?>
Add Comment
Please, Sign In to add comment