New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@anytestforpm/ocr

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anytestforpm/ocr

npm i @anytestforpm/ocr # Language Support 支持地區為: VN IN ID BR MM PK TH PH NG # Usage Example 1.初始化OCR的辨識語系及API路由設定,就會自動取得后台設定檔 ```javascript import { initOCR } from '@anytestforpm/ocr';

  • 1.3.6
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Install

npm i @anytestforpm/ocr

Language Support

支持地區為: VN IN ID BR MM PK TH PH NG

Usage Example

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 {
  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 action

FAQs

Package last updated on 30 Nov 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc