UNPKG

fonteditor-core

Version:

fonts (ttf, woff, woff2, eot, svg, otf) parse, write, transform, glyph adjust.

39 lines (35 loc) 972 B
/** * @file woff2 to ttf * @author mengke01(kekee000@gmail.com) */ import woff2 from '../../woff2/index'; /** * ttf格式转换成woff2字体格式 * * @param {ArrayBuffer} woff2Buffer ttf缓冲数组 * @param {Object} options 选项 * * @return {ArrayBuffer} woff格式byte流 */ // eslint-disable-next-line no-unused-vars export default function woff2tottf(woff2Buffer, options = {}) { if (!woff2.isInited()) { throw new Error('use woff2.init() to init woff2 module!'); } const result = woff2.decode(woff2Buffer); return result.buffer; } /** * ttf格式转换成woff2字体格式 * * @param {ArrayBuffer} woff2Buffer ttf缓冲数组 * @param {Object} options 选项 * * @return {Promise.<ArrayBuffer>} woff格式byte流 */ export function woff2tottfasync(woff2Buffer, options = {}) { return woff2.init(options.wasmUrl).then(() => { const result = woff2.decode(woff2Buffer); return result.buffer; }); }