This commit is contained in:
ThatOneCalculator 2022-08-08 17:39:50 -07:00
parent 30e20cb683
commit dde7cecf43
2 changed files with 16 additions and 11 deletions

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.118.1-calc.rc.4.6",
"version": "12.118.1-calc.rc.4.7",
"codename": "aqua",
"repository": {
"type": "git",

View File

@ -146,16 +146,21 @@ export default defineComponent({
caption: async () => {
const img = document.getElementById('imgtocaption') as HTMLImageElement;
const imgurl = img.src;
await worker.load();
await worker.loadLanguage('eng');
await worker.initialize('eng');
const { data: { text } } = await worker.recognize(imgurl);
fetch(img.src)
.then((response) => {
return response.blob();
})
.then((blob) => {
worker.load();
worker.loadLanguage('eng');
worker.initialize('eng');
const { data: { text } } = worker.recognize(blob);
console.log(text);
// document.getElementById('recognized-text').innerText = text;
// const allowedLength = 512 - this.inputValue.length;
// this.inputValue += text.slice(0, allowedLength);
await worker.terminate();
worker.terminate();
});
},
},
});