当前位置:   article > 正文

Tesseract OCR for PHP验证码图片识别ocr安装流程以及使用_tesseract-ocr-for-php

tesseract-ocr-for-php

Tesseract OCR for PHP安装流程以及使用

github地址

Tesseract OCR for PHP下载地址.

centos安装

yum -y install tesseract

composer安装Tesseract OCR for PHP

composer require thiagoalessio/tesseract_ocr

使用

use thiagoalessio\TesseractOCR\TesseractOCR;

 echo (new TesseractOCR($this->getlocalPath().'/public/static/images/8055.png'))
            ->allowlist(range('0', '9'))
            ->run();
  • 1
  • 2
  • 3

在这里插入图片描述

显示:
在这里插入图片描述

识别中文

$tes = (new TesseractOCR($imgPath))->lang('chi_sim');
 echo $tes->run();
  • 1
  • 2

中文包下载

将中文包放到/usr/share/tesseract/tessdata/

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/571561
推荐阅读
相关标签
  

闽ICP备14008679号