85 lines
1.5 KiB
JavaScript
85 lines
1.5 KiB
JavaScript
/**
|
|
* @file ttf2eot
|
|
* @author junmer
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
|
|
var isTtf = require('is-ttf');
|
|
var through = require('through2');
|
|
var ttf2eot = require('fonteditor-core').ttf2eot;
|
|
var b2ab = require('b3b').b2ab;
|
|
var ab2b = require('b3b').ab2b;
|
|
var replaceExt = require('replace-ext');
|
|
var _ = require('lodash');
|
|
|
|
function compileTtf(buffer, cb) {
|
|
var output;
|
|
try {
|
|
output = ab2b(ttf2eot(b2ab(buffer)));
|
|
}
|
|
catch (ex) {
|
|
cb(ex);
|
|
}
|
|
|
|
output && cb(null, output);
|
|
}
|
|
|
|
|
|
/**
|
|
* ttf2eot fontmin plugin
|
|
*
|
|
* @param {Object} opts opts
|
|
* @return {Object} stream.Transform instance
|
|
* @api public
|
|
*/
|
|
module.exports = function (opts) {
|
|
|
|
opts = _.extend({clone: true}, opts);
|
|
|
|
return through.ctor({
|
|
objectMode: true
|
|
}, function (file, enc, cb) {
|
|
|
|
// check null
|
|
if (file.isNull()) {
|
|
cb(null, file);
|
|
return;
|
|
}
|
|
|
|
// check stream
|
|
if (file.isStream()) {
|
|
cb(new Error('Streaming is not supported'));
|
|
return;
|
|
}
|
|
|
|
// check ttf
|
|
if (!isTtf(file.contents)) {
|
|
cb(null, file);
|
|
return;
|
|
}
|
|
|
|
// clone
|
|
if (opts.clone) {
|
|
this.push(file.clone(false));
|
|
}
|
|
|
|
// replace ext
|
|
file.path = replaceExt(file.path, '.eot');
|
|
|
|
compileTtf(file.contents, function (err, buffer) {
|
|
|
|
if (err) {
|
|
cb(err);
|
|
return;
|
|
}
|
|
|
|
file.contents = buffer;
|
|
cb(null, file);
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|