I have created a wrapper to use fontforge in nodejs
index.ts
const exec = require('child_process').exec;
export const convert = (src, dst, options, callback) => {
if(typeof options === 'function') {
callback = options;
options = {};
}
const forgeScriptPath = './src/fontforge/forge.sh';
console.log('dirr--', forgeScriptPath);
const command = 'fontforge -script "' + forgeScriptPath + '" "' + src + '" "' + dst + '"';
exec(command, callback);
};
forge.sh
#!/usr/local/bin/fontforge
Open($1);
Generate($2);
Quit(0);
My actual code which will take broken ttf as input and return correct ttf
convert('src/received/test3.ttf', 'src/destination/test3.ttf', {}, function (err: any) {
if (err) {
response.status(500).json({ message: err.message });
return;
}
response.json({ message: 'success' });
});
The above code is working great, I need to achieve these below points while converting the font to web ready ttf
- The system should fix Truetype Hinting
- The system should fix the GASP table of fonts
- The system should fix missing glyphs (spaces and hyphens)
- The system should auto-adjust vertical vetrics
- The system should be able to subset fonts based on character input
Any help would be appreciated.