All Projects → barnhill → Barcodelib

barnhill / Barcodelib

Licence: apache-2.0
C# Barcode Image Generation Library

Programming Languages

csharp
926 projects

Labels

Projects that are alternatives of or similar to Barcodelib

barcoder
Lightweight Barcode Encoding Library for .NET Framework, .NET Standard and .NET Core.
Stars: ✭ 76 (-81.33%)
Mutual labels:  barcode
pheniqs
Fast and accurate sequence demultiplexing
Stars: ✭ 14 (-96.56%)
Mutual labels:  barcode
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (-28.01%)
Mutual labels:  barcode
golang-pdf417
Port of pdf417-php by ihabunek in Golang
Stars: ✭ 18 (-95.58%)
Mutual labels:  barcode
garden.zbarcam
Migrated to https://github.com/kivy-garden/zbarcam
Stars: ✭ 49 (-87.96%)
Mutual labels:  barcode
Roundcode
Custom rounded QR code with lots of customization.
Stars: ✭ 267 (-34.4%)
Mutual labels:  barcode
koder
QR/bar code scanner for the Browser
Stars: ✭ 73 (-82.06%)
Mutual labels:  barcode
Jsbarcode
Barcode generation library written in JavaScript that works in both the browser and on Node.js
Stars: ✭ 4,198 (+931.45%)
Mutual labels:  barcode
quickie
📷🔍 Android QR code scanning library
Stars: ✭ 163 (-59.95%)
Mutual labels:  barcode
Zbar
ZBar is an open source software suite for reading bar codes from various sources, including webcams. As its development stopped in 2012, I took the task of keeping it updated with the V4L2 API. This is the main repository for it. There's a clone at at LinuxTV.org, and another one at gitlab.
Stars: ✭ 291 (-28.5%)
Mutual labels:  barcode
pt1230
Brother P-Touch 1230PC Linux interface
Stars: ✭ 25 (-93.86%)
Mutual labels:  barcode
scanbot-sdk-example-ionic
Scanbot scanner SDK example app for Ionic with Cordova.
Stars: ✭ 24 (-94.1%)
Mutual labels:  barcode
Nativescript Barcodescanner
🔎 NativeScript QR / barcode (bulk)scanner plugin
Stars: ✭ 280 (-31.2%)
Mutual labels:  barcode
StarBarcode
一个基于Zxing封装的条形码扫描库。支持多种条形码,可生成、解析带logo的二维码,自动放大镜头,设备移动时自动对焦、连续对焦,扫描UI自定义。
Stars: ✭ 52 (-87.22%)
Mutual labels:  barcode
Stegastamp
Invisible Hyperlinks in Physical Photographs
Stars: ✭ 306 (-24.82%)
Mutual labels:  barcode
browser
ZXing for JS's browser layer with decoding implementations for browser.
Stars: ✭ 88 (-78.38%)
Mutual labels:  barcode
scanner-overlay
📹 AVCaptureVideoPreviewLayer with a masked overlay
Stars: ✭ 21 (-94.84%)
Mutual labels:  barcode
Qzxing
Qt/QML wrapper library for the ZXing library. 1D/2D barcode image processing library
Stars: ✭ 401 (-1.47%)
Mutual labels:  barcode
Postscriptbarcode
Barcode Writer in Pure PostScript
Stars: ✭ 316 (-22.36%)
Mutual labels:  barcode
Imagedetect
✂️ Detect and crop faces, barcodes and texts in image with iOS 11 Vision api.
Stars: ✭ 286 (-29.73%)
Mutual labels:  barcode

barcodelib Barcode CI NuGet

Overview

This library was designed to give an easy class for developers to use when they need to generate barcode images from a string of data.

Supported Symbology List
Code 128 Code 93 Code 39 (Extended / Full ASCII)
Code11 EAN-8 FIM (Facing Identification Mark)
UPC-A UPC-E Pharmacode
MSI PostNet Standard 2 of 5
ISBN Codabar Interleaved 2 of 5
ITF-14 Telepen UPC Supplemental 2
JAN-13 EAN-13 UPC Supplemental 5

Usage

The library contains a class called BarcodeLib with three constructors:

Barcode();
Barcode(string);
Barcode(string, BarcodeLib.TYPE);

If you decide to create an instance with parameters, the parameters are as follows: the string is the data to be encoded into the barcode, and BarcodeLib.TYPE is the symbology to encode the data with. If you do not choose to specify the data and type at the time the instance is created, you may specify them through the appropriate property later on (but before you encode).

Example

BarcodeLib.Barcode b = new BarcodeLib.Barcode();
Image img = b.Encode(BarcodeLib.TYPE.UPCA, "038000356216", Color.Black, Color.White, 290, 120);

Alt text

Support

If you find this or any of my software useful and decide its worth supporting. You can do so here: Donate

Copyright and license

Copyright 2007-2020 Brad Barnhill. Code released under the Apache License, Version 2.0.

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].