code ing
This commit is contained in:
parent
30e20cb683
commit
dde7cecf43
@ -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",
|
||||
|
@ -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();
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user