-
-
Save fhferreira/a3455520a38d9791d3ebbb31c098793b to your computer and use it in GitHub Desktop.
put the characters in the right places
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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