search
HomeBackend DevelopmentPHP ProblemHow to generate different barcodes in php

How to generate different barcodes in php: 1. Install the required code library through the "composer require codeitnowin/barcode" statement; 2. Write the data flow file into the content of the created file; 3. Output the picture Just file.

How to generate different barcodes in php

The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.

php How to generate different barcodes?

php Generate barcode:

Barcode (barcode) is to arrange multiple black bars and blanks with different widths according to certain encoding rules. Use A graphical identifier that expresses a set of information.

This is implemented using PHP and supports most coding systems.

Barcode length

Code128, Code39 Extended, Code93 Extended supports all ASCII codes.

Code128 has three character sets: A, B, and C. Each character set supports part of it, roughly like this.

A character set supports AZ 26 uppercase letters, 09 9 Numbers and some special characters;

B character set supports AZ 26 uppercase and lowercase letters, 09 9 numbers and some special characters;

C character set supports pure numeric characters and 0` 9 9 numbers, and it is an even number. If it is an odd number, 0 will be automatically added in front when generating the barcode; the maximum length of pure characters is 32 bits, and pure characters plus special symbols are 44 bits. EAN/UCC 128 is the same as Code 128.

CODE128 code is a barcode system widely used in enterprise internal management, production processes, and logistics control systems. Due to its excellent characteristics, it is widely used in the design of management information systems. Use, CODE128 code is one of the most widely used barcode coding systems.

CODE128 code is a high-density barcode introduced in 1981. CODE128 code can represent a total of 128 characters from ASCII 0 to ASCII 127, so it is called 128 code. It contains numbers, letters and symbolic characters.

 Code 128 code and Code 39 code have many similarities, and both are widely used in corporate internal management, production processes, and logistics control systems. The difference is that Code 128 can represent more characters than Code 39, and the coding density per unit length is higher. When Code 39 encoding cannot be accommodated in the unit length or the encoded characters exceed the limits of Code 39, Code 128 can be selected for encoding.

Code39, Code93 support the range of 09 numeric characters and AZ uppercase letters and '/', ' ', '%', '$', '-', '.' and spaces, the length is theoretically unlimited limit.

Code39 Extended, Code93 Extended does not support ‘-’, ‘.’, others are the same as 39 93.

EAN8,EAN13,EAN Ext,UPC A,UPC E,UPC Ext supports the range of 0`9 numeric characters, the length of EAN8 is 8, the length of EAN13 is 13, the length of EAN8 Ext is 10 or 13, EAN13 The Ext length is 15 or 18, the UPCA length is 12, the UPCE length is 8, the UPCE Ext length is 10 or 13, and the UPCA Ext length is 14 or 17.

Bookland, ISSN, ISSN may support characters other than numbers. For support of this middleware, please refer to the description in the "About Bookland (ISBN) and ISSN" section.

Code11 supports the range of 0`9 numeric characters and ‘-’, and the length is theoretically unlimited.

Codabar supports the range of 0`9 numeric characters and 'A', 'B', 'C', 'D', '-', '.', '/', ':', ' ', '$', the starting and ending characters must be characters in 'A', 'B', 'C', 'D', and the length is theoretically not limited.

MSI, Code 2of5 supports a range of 0`9 numeric characters, and the length is theoretically unlimited.

PostNet supports a range of 0`9 numeric characters, with a length of 5, 9, or 11 digits. This development kit supports formats with non-numeric characters, such as 12345-8012, which is more convenient to use.

Matrix 25 (matrix 25 code) supports a range of 0`9 numeric characters and a length of 13 digits.

Install the required code libraries

composer require codeitnowin/barcode

Baidu Cloud address: https://pan.baidu.com/s/1-hFWYfed4y3YkWKLz2o75g

Related code (specifically shown below)

<?php
 
namespace App\Http\Controllers;
 
use Illuminate\Http\Request;
 
 
use CodeItNow\BarcodeBundle\Utils\BarcodeGenerator;
use CodeItNow\BarcodeBundle\Utils\QrCode;
 
class BarCodeController extends Controller
{
    public function index()
    {
 
        echo &#39;<p>Example - QrCode</p>&#39;;
        $qrCode = new QrCode();
        $qrCode
            ->setText(&#39;https://www.php.net/manual/zh/&#39;)
            ->setSize(300)
            ->setPadding(10)
            ->setErrorCorrection(&#39;high&#39;)
            ->setForegroundColor(array(&#39;r&#39; => 0, &#39;g&#39; => 0, &#39;b&#39; => 0, &#39;a&#39; => 0))
            ->setBackgroundColor(array(&#39;r&#39; => 255, &#39;g&#39; => 255, &#39;b&#39; => 255, &#39;a&#39; => 0))
            ->setLabel(&#39;https://www.php.net/&#39;)
            ->setLabelFontSize(16)
            ->setImageType(QrCode::IMAGE_TYPE_PNG);
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="data:&#39; . $qrCode- alt="How to generate different barcodes in php" >getContentType() . &#39;;base64,&#39; . $qrCode->generate() . &#39;"  class="lazy"   />&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Code128</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("0123456789");
        $barcode->setType(BarcodeGenerator::Code128);
        $barcode->setScale(2);
        $barcode->setThickness(25);
        $barcode->setFontSize(10);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Code11</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("0123456789");
        $barcode->setType(BarcodeGenerator::Code11);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Code39</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("0123456789");
        $barcode->setType(BarcodeGenerator::Code39);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Code39Extended</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("0123456789");
        $barcode->setType(BarcodeGenerator::Code39Extended);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Ean128</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("00123456789012345675");
        $barcode->setType(BarcodeGenerator::Ean128);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Gs1128</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("00123456789012345675");
        $barcode->setType(BarcodeGenerator::Gs1128);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Gs1128</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("4157707266014651802001012603068039000000006377069620171215");
        $barcode->setType(BarcodeGenerator::Gs1128);
        $barcode->setNoLengthLimit(true);
        $barcode->setAllowsUnknownIdentifier(true);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - I25</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("00123456789012345675");
        $barcode->setType(BarcodeGenerator::I25);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Isbn</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("0012345678901");
        $barcode->setType(BarcodeGenerator::Isbn);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Msi</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("0012345678901");
        $barcode->setType(BarcodeGenerator::Msi);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Postnet</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("01234567890");
        $barcode->setType(BarcodeGenerator::Postnet);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - S25</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("012345678901");
        $barcode->setType(BarcodeGenerator::S25);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Upca</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("012345678901");
        $barcode->setType(BarcodeGenerator::Upca);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
        echo &#39;<hr>&#39;;
        echo &#39;<p>Example - Upce</p>&#39;;
        $barcode = new BarcodeGenerator();
        $barcode->setText("012345");
        $barcode->setType(BarcodeGenerator::Upce);
        $code = $barcode->generate();
        echo &#39;<img  src="/static/imghwm/default1.png"  data-src="https://img-blog.csdnimg.cn/2022010611514192897.png&#39; . $code . &#39;"  class="lazy"   / alt="How to generate different barcodes in php" >&#39;;
 
    }
}

How to generate different barcodes in php

How to convert image data in base64 format into images

// $base_img是获取到前端传递的值
            $base_img = str_replace(&#39;data:image/jpg;base64,&#39;, &#39;&#39;, $code);
//  设置文件路径和命名文件名称
            $path = "D:/Uploads/Bar/2019-12-11/";
            $output_file = time().rand(100,999).&#39;.jpg&#39;;
            $path = $path.$output_file;
//  创建将数据流文件写入我们创建的文件内容中
            file_put_contents($path, base64_decode($base_img));
// 输出文件
            print_r($output_file);
Buy me a cup of coffee :)

Recommended learning: " PHP video tutorial

The above is the detailed content of How to generate different barcodes in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php 怎么生成不同的条形码php 怎么生成不同的条形码Oct 31, 2022 am 09:53 AM

php生成不同的条形码的方法:1、通过“composer require codeitnowin/barcode”语句安装所需的代码库;2、将数据流文件写入创建的文件内容中;3、输出图片文件即可。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version