Skip to content

Commit

Permalink
* Add public domain license notices
Browse files Browse the repository at this point in the history
* Add svg2ttf tool, requires fontforge (http://fontforge.sourceforge.net/)
  • Loading branch information
stamfest committed Mar 28, 2009
1 parent c230b74 commit 357344d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
These files are in the public domain.
3 changes: 3 additions & 0 deletions code128
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/usr/bin/perl
# written by peter stamfest <[email protected]>
#
# this file is in the public domain

use strict;
use utf8;
Expand Down
3 changes: 3 additions & 0 deletions code128-font
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/usr/bin/perl
# written by peter stamfest <[email protected]>
#
# this file is in the public domain

use strict;
use utf8;
Expand Down
5 changes: 5 additions & 0 deletions svg2ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/fontforge -nosplash
import fontforge
import sys
f = fontforge.open(sys.argv[1])
f.generate(sys.argv[2])

0 comments on commit 357344d

Please sign in to comment.