![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@anytestforpm/ocr
Advanced tools
npm i @anytestforpm/ocr # Language Support 支持地區為: VN IN ID BR MM PK TH PH NG BD TR US # Usage Example 1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔 ```javascript import { initOCR } from '@anytestforpm/ocr';
npm i @anytestforpm/ocr
支持地區為: VN IN ID BR MM PK TH PH NG BD TR US
1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔
import { initOCR } from '@anytestforpm/ocr';
mounted() {
//initOCR
//@param {String} VN IN ID BR MM ...
//@param {String} API URL
if (process.env.NODE_ENV === 'production') {
initOCR('VN','https://your-api-domain/api/xxx');
} else {
initOCR('VN','https://your-api-domain/api/xxx');
}
},
2.執行OCR圖片辨識
import { recognizeOCR, RESULT_TYPE } from '@anytestforpm/ocr';
try {
//代入要辨識的img url
let ocrResData = await recognizeOCR(imgUrl);
//取得后台設定檔失敗
if (ocrResData.type === RESULT_TYPE.CONFIG_INVALID) {
//do something
}
//圖片辨識功能已停用
if (ocrResData.type === RESULT_TYPE.CONFIG_DISABLED) {
//do something
}
//驗證成功
if (ocrResData.type === RESULT_TYPE.KEYWORDS_SUCCESS) {
//do something
}
//驗證不合格 - 關鍵字匹配不合格
if (ocrResData.type === RESULT_TYPE.KEYWORDS_NOT_FOUND) {
//do something
}
//驗證不合格 - 不合法的關鍵字
if (ocrResData.type === RESULT_TYPE.KEYWORDS_INVALID) {
//do something
}
//驗證超時
if (ocrResData.type === RESULT_TYPE.KEYWORDS_TIMEOUT) {
//do something
}
} catch (execption) {
//do something
}
3.recognizeOCR(imgUrl) ,入參imgUrl
let ocrResData = await recognizeOCR(imgUrl);
mixins.js
FAQs
npm i @anytestforpm/ocr # Language Support 支持地區為: VN IN ID BR MM PK TH PH NG BD TR US # Usage Example 1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔 ```javascript import { initOCR } from '@anytestforpm/ocr';
The npm package @anytestforpm/ocr receives a total of 0 weekly downloads. As such, @anytestforpm/ocr popularity was classified as not popular.
We found that @anytestforpm/ocr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.