1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
if not modules then modules = { } end modules ['mtx-fonts'] = {
version = 1.001,
comment = "companion to mtxrun.lua",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
if not fontloader then fontloader = fontforge end
dofile(resolvers.find_file("font-otp.lua","tex"))
dofile(resolvers.find_file("font-syn.lua","tex"))
dofile(resolvers.find_file("font-mis.lua","tex"))
scripts = scripts or { }
scripts.fonts = scripts.fonts or { }
function scripts.fonts.reload(verbose)
fonts.names.load(true,verbose)
end
function scripts.fonts.names(name)
name = name or "luatex-fonts-names.lua"
fonts.names.identify(true)
local data = fonts.names.data
if data then
data.fallback_mapping = nil
logs.report("fontnames","saving names in '%s'",name)
io.savedata(name,table.serialize(data,true))
elseif lfs.isfile(name) then
os.remove(name)
end
end
local function showfeatures(v,n,f,s,t)
logs.simple("fontname: %s",v)
logs.simple("fullname: %s",n)
logs.simple("filename: %s",f)
local features = fonts.get_features(f,t)
if features then
for what, v in table.sortedpairs(features) do
local data = features[what]
if data and next(data) then
logs.simple()
logs.simple("%s features:",what)
logs.simple()
logs.simple("feature script languages")
logs.simple()
for f,ff in table.sortedpairs(data) do
local done = false
for s, ss in table.sortedpairs(ff) do
if s == "*" then s = "all" end
if ss ["*"] then ss["*"] = nil ss.all = true end
if done then
f = ""
else
done = true
end
logs.simple("% -8s % -8s % -8s",f,s,table.concat(table.sortedkeys(ss), " "))
end
end
end
end
end
logs.reportline()
end
function scripts.fonts.list(pattern,reload,all,info)
if reload then
logs.simple("fontnames, reloading font database")
end
-- make a function for this
pattern = pattern:lower()
pattern = pattern:gsub("%-","%%-")
pattern = pattern:gsub("%.","%%.")
pattern = pattern:gsub("%*",".*")
pattern = pattern:gsub("%?",".?")
if pattern == "" then
pattern = ".*"
else
pattern = "^" .. pattern .. "$"
end
--
local t = fonts.names.list(pattern,reload)
if reload then
logs.simple("fontnames, done\n\n")
end
if t then
local s, w = table.sortedkeys(t), { 0, 0, 0 }
local function action(f)
for k,v in ipairs(s) do
local type, name, file, sub = unpack(t[v])
f(v,name,file,sub,type)
end
end
action(function(v,n,f,s,t)
if #v > w[1] then w[1] = #v end
if #n > w[2] then w[2] = #n end
if #f > w[3] then w[3] = #f end
end)
action(function(v,n,f,s,t)
if s then s = "(sub)" else s = "" end
if info then
showfeatures(v,n,f,s,t)
else
local str = string.format("%s %s %s %s",v:padd(w[1]," "),n:padd(w[2]," "),f:padd(w[3]," "), s)
print(str:strip())
end
end)
end
end
function scripts.fonts.save(name,sub)
local function save(savename,fontblob)
if fontblob then
savename = savename:lower() .. ".lua"
logs.simple("fontsave, saving data in %s",savename)
table.tofile(savename,fontloader.to_table(fontblob),"return")
fontloader.close(fontblob)
end
end
if name and name ~= "" then
local filename = resolvers.find_file(name) -- maybe also search for opentype
if filename and filename ~= "" then
local suffix = file.extname(filename)
if suffix == 'ttf' or suffix == 'otf' or suffix == 'ttc' or suffix == "dfont" then
local fontinfo = fontloader.info(filename)
if fontinfo then
logs.simple("font: %s located as %s",name,filename)
if fontinfo[1] then
for _, v in ipairs(fontinfo) do
save(v.fontname,fontloader.open(filename,v.fullname))
end
else
save(fontinfo.fullname,fontloader.open(filename))
end
end
else
logs.simple("font: %s not saved",filename)
end
else
logs.simple("font: %s not found",name)
end
end
end
logs.extendbanner("Font Tools 0.20",true)
messages.help = [[
--reload generate new font database
--list [--info] list installed fonts (show info)
--save save open type font in raw table
--names generate 'luatex-fonts-names.lua' (not for context!)
--pattern=str filter files
--all provide alternatives
]]
if environment.argument("reload") then
scripts.fonts.reload(true)
elseif environment.argument("names") then
scripts.fonts.names()
elseif environment.argument("list") then
local pattern = environment.argument("pattern") or environment.files[1] or ""
local all = environment.argument("all")
local info = environment.argument("info")
local reload = environment.argument("reload")
scripts.fonts.list(pattern,reload,all,info)
elseif environment.argument("save") then
local name = environment.files[1] or ""
local sub = environment.files[2] or ""
scripts.fonts.save(name,sub)
else
logs.help(messages.help)
end
|