Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

barcode.php - Generate barcodes from a single PHP file. MIT license.

License

NotificationsYou must be signed in to change notification settings

viliammojsky/barcode

 
 

Repository files navigation

Generate barcodes from a single PHP file. MIT license.

  • Output to PNG, GIF, JPEG, or SVG.
  • Generates UPC-A, UPC-E, EAN-13, EAN-8, Code 39, Code 93, Code 128, GS1 128, Codabar, ITF, QR Code, GS1 QR Code, DataMatrix and GS1 DataMatrix.

Use from a PHP script:

include 'barcode.php';$generator = new barcode_generator();/* Output directly to standard output. */$generator->output_image($format, $symbology, $data, $options);/* Create bitmap image. */$image = $generator->render_image($symbology, $data, $options);imagepng($image);imagedestroy($image);/* Generate SVG markup. */$svg = $generator->render_svg($symbology, $data, $options);echo $svg;

Use with GET or POST:

barcode.php?f={format}&s={symbology}&d={data}&{options}

e.g.

barcode.php?f=png&s=upc-e&d=06543217barcode.php?f=svg&s=qr&d=HELLO%20WORLD&sf=8&ms=r&md=0.8

Options:

f - Format. One of:

    png    gif    jpeg    svg

s - Symbology (type of barcode). One of:

    upc-a          code-39         qr         gs1-qr-q     gs1-dmtx-r    upc-e          code-39-ascii   qr-l       gs1-qr-h    ean-8          code-93         qr-m       dmtx    ean-13         code-93-ascii   qr-q       dmtx-s    ean-13-pad     code-128        qr-h       dmtx-r    ean-13-nopad   codabar         gs1-qr-l   gs1-dmtx    ean-128        itf             gs1-qr-m   gs1-dmtx-s

d - Data. For UPC or EAN, use* for missing digit. For Codabar, useABCD orENT* for start and stop characters. For QR, encode in Shift-JIS for kanji mode.

w - Width of image. Overridessf orsx.

h - Height of image. Overridessf orsy.

sf - Scale factor. Default is 1 for linear barcodes or 4 for matrix barcodes.

sx - Horizontal scale factor. Overridessf.

sy - Vertical scale factor. Overridessf.

p - Padding. Default is 10 for linear barcodes or 0 for matrix barcodes.

pv - Top and bottom padding. Default is value ofp.

ph - Left and right padding. Default is value ofp.

pt - Top padding. Default is value ofpv.

pl - Left padding. Default is value ofph.

pr - Right padding. Default is value ofph.

pb - Bottom padding. Default is value ofpv.

bc - Background color in#RRGGBB format.

cs - Color of spaces in#RRGGBB format.

cm - Color of modules in#RRGGBB format.

tc - Text color in#RRGGBB format. Applies to linear barcodes only.

tf - Text font for SVG output. Default is monospace. Applies to linear barcodes only.

ts - Text size. For SVG output, this is in points and the default is 10. For PNG, GIF, or JPEG output, this is the GD library built-in font number from 1 to 5 and the default is 1. Applies to linear barcodes only.

th - Distance from text baseline to bottom of modules. Default is 10. Applies to linear barcodes only.

ms - Module shape. One of:s for square,r for round, orx for X-shaped. Default iss. Applies to matrix barcodes only.

md - Module density. A number between 0 and 1. Default is 1. Applies to matrix barcodes only.

wq - Width of quiet area units. Default is 1. Use 0 to suppress quiet area.

wm - Width of narrow modules and spaces. Default is 1.

ww - Width of wide modules and spaces. Applies to Code 39, Codabar, and ITF only. Default is 3.

wn - Width of narrow space between characters. Applies to Code 39 and Codabar only. Default is 1.

Keywords:

\FNC1

  • used ind - Data option as a part of the data string.
  • when used, it is replaced with a Group separator <GS> ASCII char 29 in encoded data string.
  • it should be used to terminate variable length GS1 Application Identifiers in GS1 128 and GS1 DataMatrix barcodes.
  • if needed, you can replace\FNC1 keyword withyourKeyword in barcode.php file, the functionality will remain. Do not forget to replace all occurrences.
  • available in barcode symbologies:
    ean-128     gs1-dmtx-s    gs1-qr-l   gs1-qr-q    gs1-dmtx    gs1-dmtx-r    gs1-qr-m   gs1-qr-h
  • Do not confuse this with <FNC1> character. Initially, it was intended to use the <FNC1> character as a separator character, but since according tothis stackoverflow answer by Terry Burton, FNC1 is a non-data character that requires special treatment. And I dont want to fizzle around this when it is not necessary. Instead, I decided to use the <GS> character. According to theGS1 General Specifications, the <FNC1> and <GS> characters are in the role of a separator character substitutes. The\FNC1 remained as a keyword for its uniqueness. If you need, you can replace it with\GS or any other keyword you consider unique.

Releases

No releases published

Packages

No packages published

Languages

  • HTML73.6%
  • PHP26.4%

[8]ページ先頭

©2009-2025 Movatter.jp