本文要推荐的[TOOLFK]在线OCR图片文字识别工具 ,提供图像文字识别,提取图片文字,OCR图片文字识别,图片转文字,把图片拖拽到上传框中自动上传识别,图片文件最大3M

網站名稱:ToolFk
網站鏈結:https://www.toolfk.com/
工具链接:https://www.toolfk.com/tool-online-ocr

代码教學

本工具[在线OCR图片转文字 ]依赖百度OCR接口

STEP 1 界面

STEP2

请参考第三方库示例

$full_path  =   \App\Helper\ContentHelper::PATH_APK."/".$filename;
$client = new \App\Helper\Baidu\AipOcr("xxxx", "xxxxx", "xxxxxx");
$image  = file_get_contents(storage_path("app/public/".$full_path));

// 调用通用文字识别, 图片参数为本地图片
$res = $client->basicGeneral($image,[
    "detect_language"   => true,
    "detect_direction"  => true,
]);
$lists      = $res["words_result"];
$result     = '';
foreach($lists as $row){
    $result .= $row["words"]."\r\n";
}