Programming Languages: PHP
License: GNU Library or Lesser General Public License version 2.0 (LGPLv2)
browse code,
statistics,
last commit on 2012-05-11
git clone git://tcpdf.git.sourceforge.net/gitroot/tcpdf/tcpdf (read-only)
Dear Forum Readers Thank you for a great PHP PDF Lib. Quick question regarding example_014. When the form loads the default selection of "drink" is "Beer".. However when the Reset Button is clicked all form fields are cleared and returned too "DV" value according to the PDF documents PDF32000_2008. (This is 100% correct and should not be changed) But...
2012-05-28 07:22:12 PDT by f1dg3t
Thanks Nicola - that worked! Gaver.
2012-05-28 07:00:12 PDT by Gaver Powers
In the code you sent me via email you wrote: [code] // set array for viewer preferences $preferences = array( 'HideToolbar' => false, 'HideMenubar' => true, 'HideWindowUI' => true, 'FitWindow' => true, 'CenterWindow' => true, 'DisplayDocTitle' => true, 'NonFullScreenPageMode' => 'UseNone', // UseNone, UseOutlines, UseThumbs, UseOC 'ViewArea' =>...
2012-05-28 00:55:51 PDT by nicolaasuni
Some barcode readers are unable to scan all barcode types. For example, seems that the zxing scanner is unable to read the C128 (auto mode) but it can read the C128 A, B and C modes. So, I suggest you to choose a "fixed mode" to improve compatibility. Anyway, you can check your scanner capabilities by scanning the default barcode example...
2012-05-27 01:55:56 PDT by nicolaasuni
A shame all this code for barcode support which doesn't work reliably. Clearly I will have to look for a barcode class which works more effectively.
2012-05-25 20:26:59 PDT by daintree
you can use addTTFfont function for importing what truetype fonts you are using, set it to TrueTypeUnicode and 32 bit values. and use the setFont function get its variable equivalent to you declared addTTFfont function.
2012-05-25 19:44:53 PDT by unknown
Hey guys, Do you have any ideas or codes on how to put an image in every cells. Here's my fragments of code: [code] //set image scale factor $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); //set some language-dependent strings $pdf->setLanguageArray($l); // --------------------------------------------------------- // set font $fontname =...
2012-05-25 19:29:55 PDT by unknown
[code]$fontname = $pdf->addTTFfont('fonts/MyriadPro-Regular.ttf', 'TrueTypeUnicode', '', 32); $pdf->SetFont($fontname, '', 12);[/code] try these codes... put it before you output the text.
2012-05-25 19:14:30 PDT by unknown
I have created a 5 page document on the fly using data stored in db and TCPDF. For some reason though the scroll bar has disappeared from the right side of the document window and the only way to navigate is by using the thumb wheel on the mouse. Here are some of the preferences set in the body of the php page I'm using... $pdf->SetMargins(PDF_MARGIN_LEFT, 1, PDF_MARGIN_RIGHT);...
2012-05-25 03:29:03 PDT by https://www.google.com/accounts
I have to create a pdf from a html source. There are some html elements, i want to hide in the pdf version. Is there a html attribute (like nobr='true') to tell tcpdf not to render the element used in? Any other solutions? thx.
2012-05-24 01:34:07 PDT by syofock