This commit is contained in:
ThatOneCalculator 2022-08-08 17:43:18 -07:00
parent dde7cecf43
commit 70484a011c
2 changed files with 13 additions and 16 deletions

View file

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

View file

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