Created
March 2, 2017 10:48
-
-
Save sunsgs/2bd4206648030d7fdd1d7a2ca1caa183 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 | |
$text = "text text"; | |
$svg = new EasySVG(); | |
$svg->setFontSVG("om_telolet_om-webfont.svg"); | |
$svg->setFontSize(80); | |
$svg->setFontColor('#000000'); | |
$svg->setLineHeight(1.2); | |
$svg->setLetterSpacing(.1); | |
$svg->addAttribute("width", "600px"); | |
$svg->addAttribute("height", "400px"); | |
$svg->addText($text,"center","center"); | |
// set width/height according to text | |
list($textWidth, $textHeight) = $svg->textDimensions($text); | |
echo $svg->asXML(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment