EasySVG for PHP

Generate SVG images from SVG font easily.

The SVG data produced here is directly extracted from the font .svg file. This does not use the <text> tag.

Simple usage

require 'easySVG.php'; $svg = new EasySVG(); $svg->setFont("om_telolet_om-webfont.svg", 100, '#000000'); $svg->addText("Simple text display"); $svg->addAttribute("width", "800px"); $svg->addAttribute("height", "120px"); echo $svg->asXML();

Advanced usage

require 'easySVG.php'; $text = "Simple text displaynetc."; $svg = new EasySVG(); $svg->setFontSVG("om_telolet_om-webfont.svg"); $svg->setFontSize(100); $svg->setFontColor('#000000'); $svg->setLineHeight(1.2); $svg->setLetterSpacing(.1); $svg->setUseKerning(true); $svg->addText($text); // set width/height according to text list($textWidth, $textHeight) = $svg->textDimensions($text); $svg->addAttribute("width", $textWidth."px"); $svg->addAttribute("height", $textHeight."px"); echo $svg->asXML();

This will output inline SVG for you to play with. You can echo it, save it to a file or whatever.

Method reference

setFont($path, $size, $color = null)

Sets the font attributes. This is a shortcut for :

$this->setFontSVG($path); $this->setFontSize($size); $this->setFontColor($color);

These 3 methods are explicit enough, I won't go through these in here.

setUseKerning($bool)

Use SVG font kerning pairs. Default is false.

setLineHeight($value)

Adds a CSS-like line-height value. A numeric value (float) where 1 is the line height defined by the font itself.

setLetterSpacing($value)

Adds a CSS-like letter-spacing value. A numeric value (float) expressed in em where 1 is the width of the m character.

addText($text, $x, $y, $attributes=array())

Add text to the SVG (will be converted to simple path)

$text : String UTF-8 encoded $x : X position of the text (starting from left), can be center to center the text horizontally $y : Y position of the text (starting from top), can be center to center the text vertically $attributes (optional) : list of tag attributes

asXML()

Return XML string of the whole SVG.

addAttribute($key, $value)

Add an attribute to the main SVG.

SVG data manipulation methods

You may need these to play around with SVG definitions.

defTranslate($def, $x=0, $y=0)

Applies a translate transformation to a definition. This basically applies matrix calculation to a definition.

defRotate($def, $angle, $x=0, $y=0)

Applies a translate transformation to definition. This basically applies matrix calculation to a definition.

defScale($def, $x=1, $y=1)

Applies a scale transformation to definition. This basically applies matrix calculation to a definition.

textDef($text)

Returns a SVG-formatted definition of a string. This method is used by addText method.

$text : String UTF-8 encoded

textDimensions($text)

Returns the width and height of a string. This method is also used to set the width/height of the SVG (if none specified).

$text : String UTF-8 encoded

unicodeDef($code)

Returns a SVG-formatted definition of an unicode character.

$code : Unicode definition (in hex format)

characterWidth($char, $is_unicode=false)

Returns the width of a character.

$char : Character $is_unicode : Boolean that tells if the character is a unicode string or a UTF-8 character.

addPath($def, $attributes=array())

Add a path to the SVG data

$def : SVG definition $attributes (optional) : list of tag attributes

Utility methods

clearSVG()

Resets the SVG data. Used to start a new SVG without creating a new instance.

defApplyMatrix($def, $matrix)

Apply a matrix to a definition. Used to apply any kind of transformations, you shouldn't need this, but it is available so you may play with it.

License

MIT. Please feel free to pull, fork, and so on.

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。
3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考学习用!
4、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。