You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
698 B
20 lines
698 B
#!/usr/bin/env node
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const { createWorker } = require('../../');
|
|
|
|
const [,, imagePath] = process.argv;
|
|
const image = path.resolve(__dirname, (imagePath || '../../tests/assets/images/cosmic.png'));
|
|
|
|
console.log(`Recognizing ${image}`);
|
|
|
|
(async () => {
|
|
const worker = await createWorker();
|
|
await worker.loadLanguage('eng');
|
|
await worker.initialize('eng');
|
|
const { data: { text, pdf } } = await worker.recognize(image, {pdfTitle: "Example PDF"}, {pdf: true});
|
|
console.log(text);
|
|
fs.writeFileSync('tesseract-ocr-result.pdf', Buffer.from(pdf));
|
|
console.log('Generate PDF: tesseract-ocr-result.pdf');
|
|
await worker.terminate();
|
|
})();
|
|
|