2014-03-24 15:52:11 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-07-08 12:44:37 +02:00
|
|
|
import fs from "fs";
|
2023-10-29 19:43:32 +01:00
|
|
|
import os from "os";
|
2023-07-08 12:44:37 +02:00
|
|
|
import path from "path";
|
|
|
|
import { spawn } from "child_process";
|
2014-03-24 15:52:11 -05:00
|
|
|
|
2023-10-29 19:43:32 +01:00
|
|
|
let ttxTaskId = Date.now();
|
2014-03-24 15:52:11 -05:00
|
|
|
|
2024-04-05 13:03:22 +02:00
|
|
|
function runTtx(fontPath) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const ttx = spawn("ttx", [fontPath], { stdio: "ignore" });
|
|
|
|
ttx.on("error", () => {
|
|
|
|
reject(
|
|
|
|
new Error(
|
|
|
|
"Unable to execute `ttx`; make sure the `fonttools` dependency is installed"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
ttx.on("close", () => {
|
|
|
|
resolve();
|
|
|
|
});
|
2014-03-24 15:52:11 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-04-05 13:03:22 +02:00
|
|
|
async function translateFont(content) {
|
2020-10-26 12:20:03 +01:00
|
|
|
const buffer = Buffer.from(content, "base64");
|
2023-10-29 19:43:32 +01:00
|
|
|
const taskId = (ttxTaskId++).toString();
|
|
|
|
const fontPath = path.join(os.tmpdir(), `pdfjs-font-test-${taskId}.otf`);
|
|
|
|
const resultPath = path.join(os.tmpdir(), `pdfjs-font-test-${taskId}.ttx`);
|
2014-03-24 15:52:11 -05:00
|
|
|
|
2024-04-05 13:03:22 +02:00
|
|
|
// Write the font data to a temporary file on disk (because TTX only accepts
|
|
|
|
// files as input).
|
2014-03-24 15:52:11 -05:00
|
|
|
fs.writeFileSync(fontPath, buffer);
|
2024-04-05 13:03:22 +02:00
|
|
|
|
|
|
|
// Run TTX on the temporary font file.
|
|
|
|
let ttxError;
|
|
|
|
try {
|
|
|
|
await runTtx(fontPath);
|
|
|
|
} catch (error) {
|
|
|
|
ttxError = error;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the temporary font/result files and report on the outcome.
|
|
|
|
fs.unlinkSync(fontPath);
|
|
|
|
if (ttxError) {
|
|
|
|
throw ttxError;
|
|
|
|
}
|
|
|
|
if (!fs.existsSync(resultPath)) {
|
|
|
|
throw new Error("TTX did not generate output");
|
|
|
|
}
|
|
|
|
const xml = fs.readFileSync(resultPath);
|
|
|
|
fs.unlinkSync(resultPath);
|
|
|
|
return xml;
|
2023-07-08 12:44:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export { translateFont };
|