Guest User

Untitled

a guest
Jul 18th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $image_width=imagesx($im);//get width of image
  2. $increment=5;//get increment of text scroll
  3. for($i=0;$i<$image_width;$i+=$increment){//loops the image pixels
  4. text(0,$i);//calls the function text which should draw text to $im at the given coordinates
  5. }
Add Comment
Please, Sign In to add comment