Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function update($mascot) {
  2. global $status, $server, $room, $font, $mascot, $color, $image, $image_path;
  3.  
  4. Header ("Content-type: image/png");
  5. imagettftext($image, 13, 0,95,63,$color,$font,$status);
  6. imagettftext($image, 12, 0,95,93,$color,$font,$server);
  7. imagettftext($image, 12, 0,95,123,$color,$font,$room);
  8. ImagePNG ($image,$image_path);
  9. ImageDestroy ($image);
  10. pubTweet($mascot);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement