forked fromihabunek/pdf417-php
- Notifications
You must be signed in to change notification settings - Fork2
leongrdic/php-pdf417
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is a fork ofpdf417-php library by ihabunek, attempting to keep it's legacy alive as it appears to be the only open source PDF417 generation library for PHP.You can see themain differences below.It has been updated a bit mainly fixing a PHP 8.2 incompatibility issue and merging a few PRs.The idea is to eventually refactor all components and optimize the encoding algorithm.Thus, any contributions are more than welcome!
- PHP 8.0+
- Extensions:
- fileinfo
- bcmath
- dom
- gd
- simplexml (for running tests)
composer require leongrdic/pdf417
$pdf417 =new \Le\PDF417\PDF417;$pdf417->setColumns(15);// optionally set the number of columns$pdf417->setSecurityLevel(4);// optionally set the security level$pdf417->setForceBinary();// optionally force binary encoding$content ='Lorem ipsum dolor sit amet.';$data =$pdf417->encode($content);$imageRenderer =new \Le\PDF417\Renderer\ImageRenderer([// below are default values'format' =>'png',// jpg, png, gif, tif, bmp or data-url'quality' =>90,// jpeg quality 1-100'scale' =>3,// elements scale 1-20'ratio' =>3,// height to width aspect 1-10'padding' =>20,// padding in px 0-50'color' =>'#000000',// elements color hex code'bgColor' =>'#ffffff',// background color hex code]);$image = ->render($data)->render($data);$imageinstanceof \Intervention\Image\Image;// true$svgRenderer =new \Le\PDF417\Renderer\SvgRenderer([// below are default values'scale' =>3,// elements scale 1-20'ratio' =>3,// height to width aspect 1-10'color' =>'black',// elements color]);$svg =$svgRenderer->render($data);
Migration fromihabunek/pdf417-php
- Notable namespace changes
BigFish\PDF417\PDF417 => Le\PDF417\PDF417BigFish\PDF417\Renderers\ImageRenderer => Le\PDF417\Renderer\ImageRendererBigFish\PDF417\Renderers\SvgRenderer => Le\PDF417\Renderer\SvgRenderer
- Added types to all properties and method parameters and returns
Please help this library by testing it and submitting PRs for any fixes or improvement. Thank you!
About
PDF417 barcode generation PHP library
Topics
Resources
Stars
Watchers
Forks
Languages
- PHP100.0%