-
-
Save clifgriffin/bcae056f28615c11ba34 to your computer and use it in GitHub Desktop.
This file contains 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 | |
// autofit_text_to_image() example | |
// http://cgd.io/2014/auto-fit-text-to-an-image-with-php-and-wordpress | |
$canvas_image_filename = 'quote_canvas.png'; | |
$dest_filename = 'quote.jpg'; | |
$text = 'I believe in pink. I believe that laughing is the best calorie burner. I believe in kissing, kissing a lot.'; | |
$font_file = 'Cedarville-Cursive.ttf'; | |
autofit_text_to_image($canvas_image_filename, $dest_filename, $text, 60, 500, 400, 40, 400, $font_file); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment