ageekdev / laravel-barcode
laravel barcode generator
Installs: 2 517
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 1
Open Issues: 1
Requires
- php: ^8.1
- ext-bcmath: *
- illuminate/contracts: ^9.0|^10.0|^11.0
- spatie/color: ^1.5
Requires (Dev)
- larastan/larastan: ^2.0
- laravel/pint: ^1.10
- orchestra/testbench: ^7.31|^8.11|^9.0
- pestphp/pest: ^1.0|^2.0
- pestphp/pest-plugin-laravel: ^1.4|^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- roave/security-advisories: dev-latest
Suggests
- ext-gd: For JPG and PNG generators, GD or Imagick is required
- ext-imagick: For JPG and PNG generators, GD or Imagick is required
README
This package can generate SVG, PNG, JPG and HTML images from the most used 1D barcode standards. Here's how you can use it:
Installation
You can install the package via composer:
composer require ageekdev/laravel-barcode
You can publish the config file with:
php artisan vendor:publish --tag="laravel-barcode-config"
Usage
use AgeekDev\Barcode\Facades\Barcode; use AgeekDev\Barcode\Enums\Type; $barcode = Barcode::imageType("svg") ->foregroundColor("#000000") ->height(30) ->widthFactor(2) ->type(Type::TYPE_CODE_128) ->generate("081231723897");
Accepted barcode types
These barcode types are supported. All types support different character sets or have mandatory lengths. Please see wikipedia for supported chars and lengths per type.
Most used types are TYPE_CODE_128 and TYPE_CODE_39. Because of the best scanner support, variable length and most chars supported.
- TYPE_CODE_32 (italian pharmaceutical code 'MINSAN')
- TYPE_CODE_39
- TYPE_CODE_39_CHECKSUM
- TYPE_CODE_39E
- TYPE_CODE_39E_CHECKSUM
- TYPE_CODE_93
- TYPE_STANDARD_2_5
- TYPE_STANDARD_2_5_CHECKSUM
- TYPE_INTERLEAVED_2_5
- TYPE_INTERLEAVED_2_5_CHECKSUM
- TYPE_CODE_128
- TYPE_CODE_128_A
- TYPE_CODE_128_B
- TYPE_CODE_128_C
- TYPE_EAN_2
- TYPE_EAN_5
- TYPE_EAN_8
- TYPE_EAN_13
- TYPE_UPC_A
- TYPE_UPC_E
- TYPE_MSI
- TYPE_MSI_CHECKSUM
- TYPE_POSTNET
- TYPE_PLANET
- TYPE_RMS4CC
- TYPE_KIX
- TYPE_IMB
- TYPE_CODABAR
- TYPE_CODE_11
- TYPE_PHARMA_CODE
- TYPE_PHARMA_CODE_TWO_TRACKS
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
This package contains code copied from PHP Barcode Generator
License
The MIT License (MIT). Please see License File for more information.