Home Backend Development PHP Tutorial Method implementation of php ID card identification ORC

Method implementation of php ID card identification ORC

Jul 05, 2018 pm 04:20 PM
ID card recognition

This article mainly introduces the implementation of the ORC method for php ID card identification. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

Create an html first, and use Transfer the json format to a php file

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>身份证识别</title> 
<style> 
</style> 
<script> 
    window.onload = function(){ 
        var input = document.getElementById("demo_input"); 
        var result= document.getElementById("result"); 
        var img_area = document.getElementById("img_area"); 
        if ( typeof(FileReader) === &#39;undefined&#39; ){
            result.innerHTML = "抱歉,你的浏览器不支持 FileReader,请使用现代浏览器操作!"; 
            input.setAttribute(&#39;disabled&#39;,&#39;disabled&#39;); 
        }else{
            input.addEventListener(&#39;change&#39;,readFile,false);
        } 
    }
    function readFile(){
        var file = this.files[0]; 
        //这里我们判断下类型如果不是图片就返回 去掉就可以上传任意文件   
        if(!/image\/\w+/.test(file.type)){
            alert("请确保文件为图像类型"); 
            return false; 
        }
        var reader = new FileReader(); 
        reader.readAsDataURL(file); 
        console.log();
        reader.onload = function(e){ 
                result.innerHTML = this.result; 
                img_area.innerHTML = &#39;<p class="sitetip">图片img标签展示:</p><img src="&#39;+this.result+&#39;" alt=""/>&#39;; 
        }
    } 
</script> 
</head>


<body> 
    <form action="upload.php" method="post">
    <input type="file" value="sdgsdg" id="demo_input" /> 
    <textarea style=&#39;display: none;&#39; name="img" id="result" rows=30 cols=300></textarea> 
    <p id="img_area"></p> 
    <input type="submit" value="提交">
</form>
</body> 
</html>
Copy after login

Create an upload.php

<?php
header("Content-Type: text/html; charset=UTF-8");
/**
 * base64图片上传
 * @param $base64_img
 * @return array
 */
$base64_img = trim($_POST[&#39;img&#39;]);
$up_dir = &#39;upload/&#39;;//存放在当前目录的upload文件夹下
$fi_dir = &#39;ok_upload/&#39;;//存放在当前目录的upload文件夹下
if(!file_exists($up_dir)){
    mkdir($up_dir,0777);
}
if(preg_match(&#39;/^(data:\s*image\/(\w+);base64,)/&#39;, $base64_img, $result)){
    $type = $result[2];
    if(in_array($type,array(&#39;pjpeg&#39;,&#39;jpeg&#39;,&#39;jpg&#39;,&#39;gif&#39;,&#39;bmp&#39;,&#39;png&#39;))){
        $new_file = $up_dir.date(&#39;YmdHis_&#39;).&#39;.&#39;.$type;
        if(file_put_contents($new_file, base64_decode(str_replace($result[1], &#39;&#39;, $base64_img)))){
 $img_path = str_replace(&#39;../../..&#39;, &#39;&#39;, $new_file);
$path   = &#39;upload/&#39;;
$data   = file_get_contents($img_path);
$base64 = base64_encode($data);
$appkey = &#39;LzJu1grfwH6UaDX2&#39;;
$params = array(
    &#39;app_id&#39;     => &#39;1106920947&#39;,
                &#39;image&#39;      => $base64,
                &#39;card_type&#39;  => &#39;0&#39;,
                &#39;time_stamp&#39; => strval(time()),
                &#39;nonce_str&#39;  => strval(rand()),
                &#39;sign&#39;       => &#39;&#39;,
);
$params[&#39;sign&#39;] = getReqSign($params, $appkey);
// 执行API调用
$url = &#39;https://api.ai.qq.com/fcgi-bin/ocr/ocr_idcardocr&#39;;//身份证识别OCR
$response = doHttpPost($url, $params);
            echo $response;die;
$arr = json_decode($response,true);
$photo = base64_decode($arr[&#39;data&#39;][&#39;image&#39;]);
if(!file_exists($fi_dir)){
    mkdir($fi_dir,0777);
}
$type = &#39;jpg&#39;;
    if(in_array($type,array(&#39;pjpeg&#39;,&#39;jpeg&#39;,&#39;jpg&#39;,&#39;gif&#39;,&#39;bmp&#39;,&#39;png&#39;))){
        $new_file = $fi_dir.date(&#39;YmdHis_&#39;).&#39;.&#39;.$type;
        if(file_put_contents($new_file, str_replace($result[1], &#39;&#39;, $photo))){
            $img_paths = str_replace(&#39;../../..&#39;, &#39;&#39;, $new_file);
            echo &#39;图片处理成功</br><img src="&#39; .$img_paths. &#39;">&#39;;
        }else{
            echo &#39;图片处理失败</br>&#39;;
        }
    }
        }else{
                    echo &#39;图片上传失败</br>&#39;;
        }
    }else{
        //文件类型错误
    echo &#39;图片上传类型错误&#39;;
    }
}else{
    //文件错误
    echo &#39;文件错误&#39;;
}
Copy after login
// getReqSign :根据 接口请求参数 和 应用密钥 计算 请求签名
// 参数说明
//   - $params:接口请求参数(特别注意:不同的接口,参数对一般不一样,请以具体接口要求为准)
//   - $appkey:应用密钥
// 返回数据
//   - 签名结果
function getReqSign($params /* 关联数组 */, $appkey /* 字符串*/)
{
    // 1. 字典升序排序
    ksort($params);
    // 2. 拼按URL键值对
    $str = &#39;&#39;;
    foreach ($params as $key => $value)
    {
        if ($value !== &#39;&#39;)
        {
            $str .= $key . &#39;=&#39; . urlencode($value) . &#39;&&#39;;
        }
    }
    // 3. 拼接app_key
    $str .= &#39;app_key=&#39; . $appkey;
    // 4. MD5运算+转换大写,得到请求签名
    $sign = strtoupper(md5($str));
    return $sign;
}
Copy after login
// doHttpPost :执行POST请求,并取回响应结果
// 参数说明
//   - $url   :接口请求地址
//   - $params:完整接口请求参数(特别注意:不同的接口,参数对一般不一样,请以具体接口要求为准)
// 返回数据
//   - 返回false表示失败,否则表示API成功返回的HTTP BODY部分
function doHttpPost($url, $params)
{
    $curl = curl_init();


    $response = false;
    do
    {
        // 1. 设置HTTP URL (API地址)
        curl_setopt($curl, CURLOPT_URL, $url);


        // 2. 设置HTTP HEADER (表单POST)
        $head = array(
            &#39;Content-Type: application/x-www-form-urlencoded&#39;
        );
        curl_setopt($curl, CURLOPT_HTTPHEADER, $head);


        // 3. 设置HTTP BODY (URL键值对)
        $body = http_build_query($params);
        curl_setopt($curl, CURLOPT_POST, true);
        curl_setopt($curl, CURLOPT_POSTFIELDS, $body);


        // 4. 调用API,获取响应结果
        curl_setopt($curl, CURLOPT_HEADER, false);
        curl_setopt($curl, CURLOPT_NOBODY, false);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, true);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
        $response = curl_exec($curl);
        if ($response === false)
        {
            $response = false;
            break;
        }


        $code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
        if ($code != 200)
        {
            $response = false;
            break;
        }
    } while (0);


    curl_close($curl);
    return $response;
}
Copy after login

This way you can identify the information on the ID card

The above is the entire article Content, I hope it will be helpful to everyone’s learning. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

php Completes excel download function through html-table form to realize

PHP’s Reflection reflection mechanism Introduction

The above is the detailed content of Method implementation of php ID card identification ORC. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Golang connects to Baidu AI interface to realize ID card recognition function and gets started quickly Golang connects to Baidu AI interface to realize ID card recognition function and gets started quickly Aug 26, 2023 pm 04:31 PM

Golang connects to Baidu AI interface to implement ID card recognition function. Quick Start Preface With the development of artificial intelligence, AI interfaces are increasingly used in various fields. Baidu AI open platform provides a rich AI interface and provides developers with a convenient way to implement various functions. This article will introduce how to use Golang to connect to Baidu AI interface to realize the ID card recognition function. 1. Register a Baidu AI open platform account First, we need to register an account on the Baidu AI open platform and create an application. Open

How does the uniapp application realize ID card recognition and document authentication? How does the uniapp application realize ID card recognition and document authentication? Oct 20, 2023 am 08:49 AM

UniApp is a cross-platform application development framework based on Vue.js. By using UniApp, you can quickly develop applications for multiple platforms (including iOS, Android, H5, etc.). In practical applications, ID card recognition and document authentication are very common requirements. This article will introduce how to implement ID card recognition and document authentication in UniApp applications, and give specific code examples. 1. ID card recognition ID card recognition refers to extracting the information from the ID card photo taken by the user, which usually includes

How to use PHP to call the camera for ID card recognition How to use PHP to call the camera for ID card recognition Aug 01, 2023 am 11:09 AM

How to use PHP to call the camera for ID card recognition. With the continuous development of technology, ID card recognition has become a common requirement in many application fields. In the past, we usually needed to manually enter information such as ID numbers, but now, using cameras to identify ID cards has become a more convenient and efficient way. This article will introduce how to use PHP to call the camera for ID card recognition, and attach the corresponding code examples. First, we need to make sure that PHP is installed on our system. Before we start, we also need to install a

How to use uniapp to develop ID card recognition function How to use uniapp to develop ID card recognition function Jul 04, 2023 am 10:16 AM

How to use uniapp to develop ID card recognition function Introduction: ID card recognition is a very important function in the field of mobile applications. It can automatically parse the information on the ID card after the user takes a photo of the ID card. This article will introduce how to use uniapp to develop ID card recognition function, and attach code examples to help developers quickly implement this function. 1. Preparation work: Before using uniapp to develop the ID card recognition function, we need to complete the following preparation work: ID card recognition API: We can choose some third-party

How to use PHP and Alibaba Cloud OCR to identify ID card information that has not been updated for a long time? How to use PHP and Alibaba Cloud OCR to identify ID card information that has not been updated for a long time? Jul 19, 2023 am 09:19 AM

How to use PHP and Alibaba Cloud OCR to identify ID card information that has not been updated for a long time? Introduction: With the rapid development of science and technology and the arrival of the digital era, more and more people are paying attention to how to use technical means to improve the identification efficiency and accuracy of ID card information. Alibaba Cloud OCR (Optical Character Recognition) is a powerful artificial intelligence service that can convert the content of paper documents such as ID cards into digital text through image recognition technology, greatly improving the speed and accuracy of data processing.

Golang connects to Baidu AI interface to implement ID card recognition function, making it easy to get started Golang connects to Baidu AI interface to implement ID card recognition function, making it easy to get started Aug 26, 2023 am 09:07 AM

Golang connects to Baidu AI interface to implement ID card recognition function, making it easy to get started. With the rapid development of artificial intelligence, more and more developers are beginning to pay attention to and utilize AI services. Baidu AI open platform provides a variety of powerful interfaces, including ID card recognition functions. This article will introduce how to use Golang language to connect to Baidu AI interface to implement ID card recognition function, and provide relevant sample code. First, we need to register an account on Baidu AI open platform and create an application, obtain APIKey and Sec

How to open a digital currency account How to open a digital currency account Apr 10, 2024 am 11:58 AM

1. The first step to open a digital currency account is to choose a suitable exchange to open an account. Users need to consider factors such as transaction fees, popularity, and security. It is recommended to use well-known exchanges such as Binance, Huobi, and OKEx. 2. Go to the official website of the exchange, click the [Register] button, and fill in personal information (such as email address, username and password). 3. Identity verification: Most exchanges provide two identity verification methods: ID card recognition and face recognition. Users can follow the prompts to complete identity verification. 4. Bind bank card: It is recommended that users carefully check the relevant information.

Use Slim framework middleware to realize the functions of ID card recognition and reading information Use Slim framework middleware to realize the functions of ID card recognition and reading information Jul 31, 2023 pm 02:36 PM

Use the Slim framework middleware to realize the functions of ID card recognition and reading information. The ID card is an important identity certificate for Chinese citizens, and it carries the citizen's personal information. In many application scenarios, the user's ID card needs to be identified and read. This article will use the middleware of the Slim framework to implement such a functional module. First, we need to install the Slim framework. Execute the following command in the project directory: composerrequireslim/slim Next, we create a file called IdCard

See all articles