Home Backend Development PHP Tutorial 透过 PHP 生成 一维码

透过 PHP 生成 一维码

Jun 13, 2016 am 10:30 AM
code height lt width

通过 PHP 生成 一维码
此代码来自  http://www.nixiaofeng.com/110.html

<?php$code = $_GET['code'];if ($code != "") {    if (!is_numeric($code)) die('输入的不是数字');    if (strlen($code) < 12 || strlen($code) > 13) die('条码长度不正确');    if (strlen($code) == 12) {        // 计算校验位        $lsum = 0;        $rsum = 0;        for($i=1; $i<=strlen($code); $i++) {            if($i % 2) {                $lsum += (int)$code[$i-1];            }else{                $rsum += (int)$code[$i-1];            }        }        $tsum = $lsum + $rsum * 3;        $chkdig = 10 - ($tsum % 10);        if ($chkdig == 10) $chkdig = 0;        $code .= $chkdig;    }    // 定义起始付    $start = '101';    // 定义中止符    $end = '101';    // 定义中间分隔符    $center = '01010';    // 定义左资料码    $Guide = array(0=>'AAAAAA','AABABB','AABBAB','AABBBA','ABAABB','ABBAAB','ABBBAA','ABABAB','ABABBA','ABBABA');    // 定义左侧码,分为“A”、“B”两种    $Lencode = array("A" => array('0001101','0011001','0010011','0111101','0100011','0110001','0101111','0111011','0110111','0001011'),    "B" => array('0100111','0110011','0011011','0100001','0011101','0111001','0000101','0010001','0001001','0010111'));    // 定义右侧码,统一为“C”编码    $Rencode = array('1110010','1100110','1101100','1000010','1011100','1001110','1010000','1000100','1001000','1110100');         // 编码起始符    $barcode = $start;    // 编码左资料位    for($i=1; $i<=6; $i++) {        $barcode .= $Lencode[$Guide[$code[0]][($i-1)]][$code[$i]];    }         // 编码中间分隔符    $barcode .= $center;         // 编码右资料位    for($i=7; $i<13; $i++) {        $barcode .= $Rencode[$code[($i)]];    }         // 编码中止符    $barcode .= $end;    // 定义每个条码单元的宽度和高度,单位是像素    $width = 2;    $height = 40;         // 定义起始符、中止符、中间分隔符的高度增量    $increment = 10;         // 创建方形(×95是因为整个条码共95个单元,+60和+30是给条码图片周围留空白边框)    $img = ImageCreate($width*95+60,$height+30);  // 目前这个方形是透明的         // “1”的颜色(黑)与“0”的颜色(白)    $fg = ImageColorAllocate($img, 0, 0, 0);    $bg = ImageColorAllocate($img, 255, 255, 255);         // 以“0”的颜色(白色),填充整个方形    ImageFilledRectangle($img, 0, 0, $width*95+60, $height+30, $bg);         // 循环编码后的每一个单元,输出条码图形    for ($x=0; $x<strlen($barcode); $x++) {        // ($x<4) 为起始符,($x>=92)为中止符,($x>=45 && $x<50)为中间分隔符        // 这3个需要将高度增加        if (($x<4) || ($x>=45 && $x<50) || ($x>=92)) {            $increment = 10;        } else {            $increment = 0;        }        // 当编码值为“1”时,输出黑色;当编码值为“0”时,输出白色        if ($barcode[$x] == '1') {            $color = $fg;        } else {            $color = $bg;        }        ImageFilledRectangle($img, ($x*$width)+30,5,($x+1)*$width+29,$height+$increment,$color);    }    ImageString($img, 5, 20, $height+5, $code[0], $fg);    for ($x=0; $x<6; $x++) {        // 左侧识别码        ImageString($img, 5, $width*(8+$x*6)+30, $height+5, $code[$x+1], $fg);        // 右侧识别码        ImageString($img, 5, $width*(53+$x*6)+30, $height+5, $code[$x+7], $fg);    }    header("Content-Type: image/jpeg");    ImageJPEG($img, "", 100);}?><form action="?">输入EAN-13条形码(如果输入12位长度,将自动计算校验位)<input type="text" name="code"> <input type="submit" value="生成条码图片"></form>
Copy after login


透过 PHP 生成 一维码

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)

What does the width of html mean? What does the width of html mean? Jun 03, 2021 pm 02:15 PM

In HTML5, width means width. The width attribute defines the width of the element's content area. You can add inner margins, borders, and outer margins outside the content area. You only need to set "element {width: value}" to the element.

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Edit your Unity project in Visual Studio Code and you are now ready to go Edit your Unity project in Visual Studio Code and you are now ready to go Aug 08, 2023 am 10:21 AM

Microsoft has released a preview version of the Unity extension for Visual Studio Code. This new Unity extension will allow you to write and debug Unity games. This new Unity extension brings some popular features already available in Visual Studio and Visual Studio Tools for Unity, making C# in Visual Studio Code better for Unity development. Currently, the Unity extension for VSCode provides the following: A Unity debugger for debugging your Unity editor and Unity player. Unity-specific C# analyzer and refactoring. Uni

Detailed explanation of CSS dimension properties: height and width Detailed explanation of CSS dimension properties: height and width Oct 21, 2023 pm 12:42 PM

Detailed explanation of CSS dimension properties: height and width In front-end development, CSS is a powerful style definition language. Among them, height and width are the two most basic dimension attributes, used to define the height and width of the element. This article will analyze these two properties in detail and provide specific code examples. 1. Height attribute The height attribute is used to define the height of an element. You can use pixel, percentage or

What are the methods for expressing width value in css? What are the methods for expressing width value in css? Nov 13, 2023 pm 05:47 PM

Methods include pixel value, percentage, em unit, rem unit, vw/vh unit, auto, fit-content, min-content, max-content. Detailed introduction: 1. Pixel value (px): The pixel value is fixed, and its width remains unchanged no matter how the screen resolution changes. For example: width: 300px; 2. Percent (%): The percentage width is relative to the width of the parent element. For example: width: 50%; 3, em unit, etc.

Microsoft is rolling out Windows 11 23H2 build to the release preview channel with Copilot Microsoft is rolling out Windows 11 23H2 build to the release preview channel with Copilot Sep 28, 2023 pm 07:17 PM

Everyone is looking forward to today's Windows 1123H2 release. In fact, Microsoft has just launched updates to the release preview, which is the closest channel before the official release stage. Known as Build 22631, Microsoft said they are rolling out the new rebranded chat app, phone link, and play together widgets that have been tested on other internal channels over the past few months. "This new update will have the same servicing branch and codebase as Windows 11 version 22H2 and will be cumulative with all newly announced features, including Copilot in Windows (preview)," Microsoft promises. Redmond officials further

What does width mean in iframe What does width mean in iframe Sep 19, 2023 pm 12:00 PM

Width in iframe means the width of the specified frame, which can control the width of the iframe displayed on the page. Acceptable values ​​for width: 1. Fixed pixel value, width="300px", the frame width will always remain unchanged, no matter how the size of the browser window changes; 2. Percentage value, width="50%", the width of the frame It will be adaptively adjusted according to the width of its parent element; 3. Automatic value, width="auto", the width of the frame will be adaptively adjusted according to the width of its content.

How to remove the height attribute of an element in jQuery? How to remove the height attribute of an element in jQuery? Feb 27, 2024 pm 01:24 PM

How to remove the height attribute of an element in jQuery? In front-end development, we often need to manipulate the style attributes of elements. Among them, the height attribute is a commonly used attribute used to control the height of an element. In some cases, we may need to remove the height attribute of an element to restore it to its original state or allow it to automatically expand its height based on the content. In jQuery, you can remove the height attribute of an element through some methods. Method 1: Use the removeAttr() method

See all articles