Implement OCR

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 23:02:40 -05:00
parent 5f77c74e4a
commit 90f3bbb037

View File

@ -208,10 +208,10 @@ function getMatchingPhrase(inputString, targetCharacter) {
checkLoop(message, checkString);
(async () => {
// Does the message have an attachment? Check the attachment with OCR
console.log(message.attachment);
if (message.attachment.contentType.contains("image")) {
console.log(message.attachments);
if (message.attachments.contentType.contains("image")) {
const worker = await createWorker('eng');
const ret = await worker.recognize(message.attachment.proxyURL);
const ret = await worker.recognize(message.attachments.proxyURL);
console.log("OCR Results: " + ret.data.text);
checkString = ret.data.text;
await worker.terminate();