All Projects → desta88 → Codeigniter-Barcode

desta88 / Codeigniter-Barcode

Licence: MIT license
Create barcode generator for Codeigniter using Zend Library (Support Codeigniter 2 & 3)

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Codeigniter-Barcode

ai barcode
Barcode generation,Barcode scanning,qrcode,qrcode generation,qrcode creator,flutter barcode,flutter qrcode,support android iOS web platform
Stars: ✭ 99 (+312.5%)
Mutual labels:  barcode-generator
angular-barcode
An angular directive for lindell's JsBarcode
Stars: ✭ 25 (+4.17%)
Mutual labels:  barcode-generator
glide-barcode
GlideBarcode is an open-source barcode loading extension for Android Glide that wraps barcode generating and displaying.
Stars: ✭ 24 (+0%)
Mutual labels:  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 (+100%)
Mutual labels:  barcode-generator
barlix
Barcode generator for Elixir
Stars: ✭ 40 (+66.67%)
Mutual labels:  barcode-generator
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 (-41.67%)
Mutual labels:  barcode-generator
ZXingSample
Working sample app for a blog post on barcode scanning and generating with ZXing
Stars: ✭ 20 (-16.67%)
Mutual labels:  barcode-generator
FoxBarcodeQR
FoxBarcodeQR is a supplement of FoxBarcode class only for QR Code barcodes. This class is an alternative solution for all developers who requested QR Code support.
Stars: ✭ 20 (-16.67%)
Mutual labels:  barcode-generator
barcode.flutter
barcode generate library for Flutter
Stars: ✭ 58 (+141.67%)
Mutual labels:  barcode-generator
barcode-java
Java Barcode Image Generation Library
Stars: ✭ 18 (-25%)
Mutual labels:  barcode-generator
zint
A barcode encoding library supporting over 50 symbologies including Code 128, Data Matrix, USPS OneCode, EAN-128, UPC/EAN, ITF, QR Code, Code 16k, PDF417, MicroPDF417, LOGMARS, Maxicode, GS1 DataBar, Aztec, Composite Symbols and more.
Stars: ✭ 228 (+850%)
Mutual labels:  barcode-generator
FoxBarcode
A 100% Visual FoxPro class that provides a tool for generating images with different bar code symbologies to be used in VFP forms and reports, or exported to other applications
Stars: ✭ 31 (+29.17%)
Mutual labels:  barcode-generator
Efqrcode
A better way to operate QR Code in Swift, support iOS, macOS, watchOS and tvOS.
Stars: ✭ 4,121 (+17070.83%)
Mutual labels:  barcode-generator
Jsbarcode
Barcode generation library written in JavaScript that works in both the browser and on Node.js
Stars: ✭ 4,198 (+17391.67%)
Mutual labels:  barcode-generator
barcoder
Lightweight Barcode Encoding Library for .NET Framework, .NET Standard and .NET Core.
Stars: ✭ 76 (+216.67%)
Mutual labels:  barcode-generator
barcoder
A classy package to generate SVG barcodes for the web.
Stars: ✭ 64 (+166.67%)
Mutual labels:  barcode-generator
BarcodeRenderingFramework
A simple framework for rendering barcodes with SSRS integration
Stars: ✭ 55 (+129.17%)
Mutual labels:  barcode-generator

Codeigniter-Barcode

Codeigniter-Barcode by Zend Library - Changelog & Documentation

Maintenance Github all releases HitCount

GitHub forks GitHub stars

Create barcode generator using Zend Library

It's so easy to use, you just extract the library into libraries path and then put library in controller, check it out now!

Installation

  1. Download and extract into libraries path
  2. Include your library in controller

Usage

class Main extends CI_Controller {

	public function index()
	{
		// You can put anything here to generate of barcode
		$string = 'code39';
		$this->set_barcode($string);
	}
	
	private function set_barcode($code)
	{
		// Load library
		$this->load->library('zend');
		// Load in folder Zend
		$this->zend->load('Zend/Barcode');
		// Generate barcode
		Zend_Barcode::render('code128', 'image', array('text'=>$code), array());
	}
	
}

Changelog Update

#v1.0 Release

License

License : MIT License

Authors

Official Authors @desta

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