Download a trial of our 1D Package.

This version is a trial for commercial use (business & organizational users) and can also be used for free for personal use (a single user on a private server). If you wish to use this software publicly or commercially, you must purchase a license.

PHP

Our latest release for PHP7.4 & PHP 8+:
version 7.0.4 (10/18/2021)

.NET

Our latest release for .NET Standard 2.0:
version 3.0.1 (5/19/2021)

Node v14+

Our latest release for Node.js:
version 2.0.1 (4/17/2022)

Log in to download purchased files:

If you've purchased a license, premium files are available for download by logging in into your account.

Log in

How to test other barcodes:

Our 2D libraries like QRCode, Aztec, and PDF417 use the same calls as our 1D Package.
Testing our library is easy:

  1. Download the 1D package to test.
  2. Purchase a license to download a 2D library.
  3. Change a couple lines of code to swap from 1D to 2D.

<?php
use BarcodeBakery\Common\BCGColor;
use BarcodeBakery\Common\BCGDrawing;
use BarcodeBakery\Barcode\

$colorBlack = new BCGColor(0, 0, 0);
$colorWhite = new BCGColor(255, 255, 255);

// Barcode Part
$code = new
$code->parse('Hello');

var colorBlack = new BCGColor(Color.Black);
var colorWhite = new BCGColor(Color.White);

var code = new
code.Parse("Hello");

var http = require('http');
var barcodeBakeryCode = require('@barcode-bakery/barcode-');

http.createServer(function (request, response) {
    var code = new barcodeBakeryCode.
    code.parse('Hello');
    // ...
});