How to use the fonteditor-core/ttf/ttf2eot function in fonteditor-core

To help you get started, we’ve selected a few fonteditor-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ecomfe / fonteditor / src / fonteditor / widget / sync.js View on Github external
throw e;
        }

        if (syncConfig.ttf) {
            fontType.push('ttf');
            syncData.ttf = font.toBase64(buffer);
        }

        if (syncConfig.woff) {
            fontType.push('woff');
            syncData.woff = font.toBase64(ttf2woff(buffer));
        }

        if (syncConfig.eot) {
            fontType.push('eot');
            syncData.eot = font.toBase64(ttf2eot(buffer));
        }

        buffer = null;
    }

    if (syncConfig.svg) {
        fontType.push('svg');
        let svg = font.create(ttf).write({
            type: 'svg'
        });
        syncData.svg = font.toBase64(svg);
    }

    syncData.encode = 'base64';
    syncData.fontName = syncConfig.name;
    syncData.fontType = fontType.join(',');