WhiteOctoberTCPDFBundle icon indicating copy to clipboard operation
WhiteOctoberTCPDFBundle copied to clipboard

A bundle to facilitate using TCPDF for PDF generation in Symfony applications

Results 7 WhiteOctoberTCPDFBundle issues
Sort by recently updated
recently updated
newest added

Hi all, Im trying to config the fork Qipsius but it's not possible. I've done all step in doc: 1. Install and register the bundle 2. Create service `Qipsius\TCPDFBundle\Controller\TCPDFController: '@qipsius.tcpdf'`...

Can you tell me how shoudl be make services.yaml, i put : "WhiteOctober\TCPDFBundle\Controller\TCPDFController: '@white_october.tcpdf'" but its not enough becouse all the time I get > Cannot autowire service "App\Controller\BarCodeController": argument...

Service "white_october.tcpdf" not found: even though it exists in the app's container, the container inside

I would like to change the header and footer functions

After upgrading to Symfony 2.3 and the current WhiteOctoberTCPDFBundle release (0e82ad14ad19ad752e7d35656a252100c8578e8b) my PDF throw the following error during the rendering in Symfony: ``` TCPDF ERROR: [Image] Unable to get image:...

After the the fix https://github.com/symfony/symfony/pull/10937 all trailing slashes are deleted in the cache/(dev|prod)/app(Dev|Prod)ProjectContainer.php so the fonts-Path is invalid TCPDF ERROR: Could not include font definition file: helvetica

In my not-small project I have in **composer.json**: ``` "require": { "whiteoctober/tcpdf-bundle": "dev-master", ``` and in AppKernel.php only: ``` $bundles = array( new WhiteOctober\TCPDFBundle\WhiteOctoberTCPDFBundle(), // ... ``` but unfortunately the...