Advertisement
Guest User

Untitled

a guest
May 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.11 KB | None | 0 0
  1. <?php
  2. $fp=file_get_contents("data.txt");
  3. $fp++;
  4. $stream=fopen("data.txt", "w");
  5. fwrite($stream, $fp);
  6. fclose($stream);
  7. $img=imageCreateTrueColor(500, 125);
  8. $color=imageColorAllocate($img, rand(1, 255), rand(1, 255), rand(1, 255));
  9. imagefilledrectangle($img, 0, 0, 500, 125, $color);
  10. $color=imageColorAllocate($img, 0, 0, 0);
  11. imageTTFtext($img, 15, 0, 10, 20, $color, "/membri/miriamc/kaileen.ttf", "Questa è la prova schiacciante che sono una gran pheegona.");
  12. imageTTFtext($img, 15, 0, 10, 40, $color, "/membri/miriamc/kaileen.ttf", "E che so usare le librerie GD di php.");
  13. imageTTFtext($img, 15, 0, 10, 60, $color, "/membri/miriamc/kaileen.ttf", "E che non riesco ad impostare il charset giusto.");
  14. imageTTFtext($img, 15, 0, 10, 80, $color, "/membri/miriamc/kaileen.ttf", "E che non ho un cazzo da fare.");
  15. imageTTFtext($img, 15, 0, 10, 100, $color, "/membri/miriamc/kaileen.ttf", "E che la mia firma e' stata visualizzata $fp volte.");
  16. imageTTFtext($img,
  17.  imageTTFtext($img, 15, 0, 10, 120, $color, "/membri/miriamc/kaileen.ttf", "Èggià.");
  18. header('Content-Type: image/png');
  19. imagePng($img);
  20. imagedestroy($img);
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement