All Projects → AdamGaskins → barcoder

AdamGaskins / barcoder

Licence: MIT License
A classy package to generate SVG barcodes for the web.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to barcoder

Efqrcode
A better way to operate QR Code in Swift, support iOS, macOS, watchOS and tvOS.
Stars: ✭ 4,121 (+6339.06%)
Mutual labels:  barcode, barcode-generator
barcoder
Lightweight Barcode Encoding Library for .NET Framework, .NET Standard and .NET Core.
Stars: ✭ 76 (+18.75%)
Mutual labels:  barcode, barcode-generator
glide-barcode
GlideBarcode is an open-source barcode loading extension for Android Glide that wraps barcode generating and displaying.
Stars: ✭ 24 (-62.5%)
Mutual labels:  barcode, barcode-generator
Jsbarcode
Barcode generation library written in JavaScript that works in both the browser and on Node.js
Stars: ✭ 4,198 (+6459.38%)
Mutual labels:  barcode, barcode-generator
barcode-java
Java Barcode Image Generation Library
Stars: ✭ 18 (-71.87%)
Mutual labels:  barcode, barcode-generator
barcode.flutter
barcode generate library for Flutter
Stars: ✭ 58 (-9.37%)
Mutual labels:  barcode, barcode-generator
angular-barcode
An angular directive for lindell's JsBarcode
Stars: ✭ 25 (-60.94%)
Mutual labels:  barcode, barcode-generator
Barcode-generator
Desktop app to generate EAN-13, EAN-8 and EAN-5 barcodes (other types are coming soon) automatically and save them as PDF or PNG, JPEG and GIF image files with several sizes
Stars: ✭ 48 (-25%)
Mutual labels:  barcode-generator
escpos-coffee
Java library for ESC/POS printer
Stars: ✭ 172 (+168.75%)
Mutual labels:  barcode
ESCPOS
A ESC/POS Printer Commands Helper
Stars: ✭ 26 (-59.37%)
Mutual labels:  barcode
ZXingSample
Working sample app for a blog post on barcode scanning and generating with ZXing
Stars: ✭ 20 (-68.75%)
Mutual labels:  barcode-generator
ZxingSupport
A Library based on Zxing, make you easy to develop 1D/2D barcode-scan App.
Stars: ✭ 15 (-76.56%)
Mutual labels:  barcode
ai barcode
Barcode generation,Barcode scanning,qrcode,qrcode generation,qrcode creator,flutter barcode,flutter qrcode,support android iOS web platform
Stars: ✭ 99 (+54.69%)
Mutual labels:  barcode-generator
barlix
Barcode generator for Elixir
Stars: ✭ 40 (-37.5%)
Mutual labels:  barcode-generator
ImageCropper
✂️ Detect and crop faces, barcodes, texts or rectangle in image with iOS 11 Vision (iOS 10 Core Image) api.(图片裁剪:支持人脸、二维码/条形码、文本、方框)
Stars: ✭ 17 (-73.44%)
Mutual labels:  barcode
aws-lambda-barcode-generator
This project uses a Node.js wrapper to build a Go Lambda function that generates & returns a barcode when triggered by AWS API Gateway.
Stars: ✭ 14 (-78.12%)
Mutual labels:  barcode-generator
barcode scan2
[reborned barcode_scan] A flutter plugin for reading 2D barcodes and QR codes.
Stars: ✭ 43 (-32.81%)
Mutual labels:  barcode
Codeigniter-Barcode
Create barcode generator for Codeigniter using Zend Library (Support Codeigniter 2 & 3)
Stars: ✭ 24 (-62.5%)
Mutual labels:  barcode-generator
dart barcode
Barcode generation library
Stars: ✭ 79 (+23.44%)
Mutual labels:  barcode
pola-ios
Pola pomoże Ci odnaleźć polskie wyroby. Zabierając Polę na zakupy odnajdujesz produkty “z duszą” i wspierasz polską gospodarkę.
Stars: ✭ 17 (-73.44%)
Mutual labels:  barcode

A classy package to generate SVG barcodes for the web.

Installation

You can install the package via composer:

composer require adamgaskins/barcoder

Usage

See below for a full list of supported barcode types.

QR Code

Barcoder::qrcode('data to encode')->toSvg();

Datamatrix

Barcoder::datamatrix('data to encode')->toSvg();

Code 128

Barcoder::code128('data to encode')->toSvg();

Barcoder::code128('data to encode')->hideLabel()->toSvg();

EAN-8

Barcoder::ean8('12345678')->toSvg();

Barcoder::ean8('12345678')->hideLabel()->toSvg();

EAN-13

Barcoder::ean8('1234567890123')->toSvg();

Barcoder::ean8('1234567890123')->hideLabel()->toSvg();

UPC-A

Barcoder::upca('123456789012')->toSvg();

Barcoder::upca('123456789012')->hideLabel()->toSvg();

UPC-E

Barcoder::upce('123456')->toSvg();

Barcoder::upce('123456')->hideLabel()->toSvg();

Testing

composer test

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].