Skip to content

Instantly share code, notes, and snippets.

@SeanJA
Created November 28, 2012 23:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SeanJA/4165467 to your computer and use it in GitHub Desktop.
Save SeanJA/4165467 to your computer and use it in GitHub Desktop.
put the characters in the right places
<?php
//made up x start positions... obviously, I think they are a pixel offset?
//days
$text = $interval->format('%D');
imagettftext ($image , $font['size'] , $font['angle'] , 10 , $font['y-offset'] , $font['color'] , $font['file'], $text );
//separator
$text = $interval->format(':');
imagettftext ($image , $font['size'] , $font['angle'] , 20 , $font['y-offset'] , $font['color'] , $font['file'], $text );
//hours
$text = $interval->format('%H');
imagettftext ($image , $font['size'] , $font['angle'] , 30 , $font['y-offset'] , $font['color'] , $font['file'], $text );
//separator
$text = $interval->format(':');
imagettftext ($image , $font['size'] , $font['angle'] , 40 , $font['y-offset'] , $font['color'] , $font['file'], $text );
//minutes
$text = $interval->format('%I');
imagettftext ($image , $font['size'] , $font['angle'] , 50 , $font['y-offset'] , $font['color'] , $font['file'], $text );
//separator
$text = $interval->format(':');
imagettftext ($image , $font['size'] , $font['angle'] , 60 , $font['y-offset'] , $font['color'] , $font['file'], $text );
//seconds
$text = $interval->format('%S');
imagettftext ($image , $font['size'] , $font['angle'] , 70 , $font['y-offset'] , $font['color'] , $font['file'], $text );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment