Project

text2svg

0.02
No commit activity in last 3 years
No release in over 3 years
Build svg path data from font file
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.11
~> 10.0
>= 0

Runtime

>= 0.0.6
 Project Readme

Text2svg

Build Status

Build svg path data from font file and text.

So, This tool can convert text to svg outline by font.

Using by freetype API.

$ text2svg "Hello, World\!" --font="/Library/Fonts/Times New Roman.ttf" > test.svg
$ open test.svg -a /Applications/Google\ Chrome.app

img

Option

$ text2svg --help
Usage: text2svg [options]
    -f, --font FONT                  font file path (require)
        --text-align ALIGN           text align left,right or center (default left)
        --encoding ENCODING          input text encoding (default utf-8)
        --bold                       embolden outline (default false)
        --italic                     oblique outline (default false)
        --attribute STRING           decorate options (default nil)(e.g. fill="red" stroke-width="100")

Feature

  • Support kerning shift
  • Support multi line
  • Support decorated font
  • Support .ttf and .otf font file (using by FreeType)
  • And support text-align, bold and italic effects

Ruby API

require 'text2svg'
puts Text2svg('Hello, World!', font: "/Library/Fonts/Times New Roman.ttf", text_align: :left, bold: true)
#=> "<svg ...>"

Installation

Add this line to your application's Gemfile:

gem 'text2svg'

And then execute:

$ bundle

Or install it yourself as:

$ gem install text2svg

Require

  • libfreetype

see also http://www.freetype.org/

License

The gem is available as open source under the terms of the MIT License.