diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-04-22 15:15:22 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-04-22 15:15:22 +0200 |
commit | 4f0774100b6000784cf29bcc8677e63a3169f21a (patch) | |
tree | d44e49e7a820b5cf92ee5733d43af13a6efc70a0 /luaotfload-font-pfb.lua | |
parent | 655ab8e887944e82c48d4d5c1745e00c771dbae0 (diff) | |
download | luaotfload-4f0774100b6000784cf29bcc8677e63a3169f21a.tar.gz |
migrate files from ‘otfl’ to ‘luaotfload’ prefix
Diffstat (limited to 'luaotfload-font-pfb.lua')
-rw-r--r-- | luaotfload-font-pfb.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/luaotfload-font-pfb.lua b/luaotfload-font-pfb.lua new file mode 100644 index 0000000..8ab6b29 --- /dev/null +++ b/luaotfload-font-pfb.lua @@ -0,0 +1,24 @@ +local fonts = fonts + +--- +--- opentype reader (from font-otf.lua): +--- (spec : table) -> (suffix : string) -> (format : string) -> (font : table) +--- + +local pfb_reader = function (specification) + return readers.opentype(specification,"pfb","type1") +end + +local pfa_reader = function (specification) + return readers.opentype(specification,"pfa","type1") +end + +fonts.formats.pfb = "type1" +fonts.readers.pfb = pfb_reader +fonts.handlers.pfb = { } --- empty, as with tfm + +fonts.formats.pfa = "type1" +fonts.readers.pfa = pfa_reader +fonts.handlers.pfa = { } + +-- vim:tw=71:sw=2:ts=2:expandtab |