MopaBarcodeBundle integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig. I did include phpqrcode form http://sourceforge.net/projects/phpqrcode/ due to changes in its config. Is just a shot and shouldnt be considered to be perfect. Feel free to fork and PR.
- Add this bundle to your composer.json:
{
"require": {
// ...
"mopa/barcode-bundle": "dev-master",
"imagine/Imagine": "dev-master",
"avalanche123/imagine-bundle": "dev-master",
// if you want to use the zend barcodes
"zf2/zf2": "dev-master",
// optionally for playground
"mopa/bootstrap-sandbox-bundle": "dev-master"
// also read the readme:
// https://github.com/phiamo/MopaBootstrapSandboxBundle
}
}
- Add this bundle to your app/AppKernel.php:
// application/ApplicationKernel.php
public function registerBundles()
{
return array(
// ...
new Avalanche\Bundle\ImagineBundle\AvalancheImagineBundle(),
new Mopa\Bundle\BarcodeBundle\MopaBarcodeBundle(),
);
}
Include MopaBoostrapBundle in your app: https://github.com/phiamo/MopaBootstrapBundle
Include this snipplet in your routing.yml
my_barcode_playground:
resource: "@MopaBarcodeBundle/Resources/config/routing/barcode_playground.yml"
prefix: /
Add this to your config.yml:
imports:
- { resource: @MopaBootstrapSandboxBundle/Resources/config/examples/example_menu.yml }
- { resource: @MopaBootstrapSandboxBundle/Resources/config/examples/example_navbar.yml }
And try http://{yoursymfonyapp}/barcode/playground
Have a look into the https://github.com/phiamo/MopaBarcodeBundle/blob/master/Controller/BarcodeController.php to see it in action
Supported Barcode Types depend on your Zend2 installation
If you installed it have a look into https://github.com/phiamo/MopaBarcodeBundle/blob/master/Model/BarcodeTypes.php The Type given to the service is either the int or the string defined in the types arrays keys and values
To get the service in your controllers etc you can use
$bmanager = $this->container->get('mopa_barcode.barcode_service');
$bmanager->saveAs($type, $text, $file); to save a Barcode of $type with $text as $file or
$bmanager->get($type, $enctext, $absolute = false); to get the url to the file where $enctext is urlencoded and $absolute is an boolean to get either the absolute or the relative path (default)
There is also a twig helper registered:
<p><img alt="[barcode]" src="{{ mopa_barcode_url('code128', '123456789') }}"></p>
To Make usage e.g. of the Playground in your app, just copy the playground.html.twig to app/Resources/MopaBootstrapBundle/views/Barcode/playground.html.twig and modify as you like
If you would like to generate the barcodes on the fly include in your routing.yml
my_barcode_display:
resource: "@MopaBarcodeBundle/Resources/config/routing/barcode_display.yml"
prefix: /
And just use Urls to generate your barcodes:
http://{yoursymfonyapp}/barcode/send/{type}/{enctext}
- Load the different Barcode Libs in a different way. should't be done by ints :(
- Nothing what could not be done in another way, probably some will arise as soon as its published
So make issues!
- There are probably things missing, so make PR's