file:///home/developper/svn/phpcompta/branches/rel510 ........ r3316 | danydb | 2010-06-18 20:20:11 +0200 (Fri, 18 Jun 2010) | 1 line Add the receipt number for the CBC_OL ........ r3317 | danydb | 2010-06-18 20:37:49 +0200 (Fri, 18 Jun 2010) | 1 line truncate the table import_tmp ........ r3318 | danydb | 2010-06-18 20:48:49 +0200 (Fri, 18 Jun 2010) | 2 lines Typo ........ r3319 | danydb | 2010-06-18 21:54:58 +0200 (Fri, 18 Jun 2010) | 2 lines typo ........ r3323 | danydb | 2010-06-19 12:59:28 +0200 (Sat, 19 Jun 2010) | 1 line Card ordered by name ........ r3324 | danydb | 2010-06-19 13:12:36 +0200 (Sat, 19 Jun 2010) | 1 line Card ordered by name, add SQL script ........ r3325 | danydb | 2010-06-19 13:21:11 +0200 (Sat, 19 Jun 2010) | 2 lines Bug sql order when not unlimited size ........ r3326 | danydb | 2010-06-19 21:03:49 +0200 (Sat, 19 Jun 2010) | 1 line Fix bug in the verification of BILAN ........ r3327 | danydb | 2010-06-20 21:52:57 +0200 (Sun, 20 Jun 2010) | 1 line Update PDF class to TFPDF ........
32 lines
1.4 KiB
HTML
32 lines
1.4 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<title>tFPDF</title>
|
|
<style type="text/css">
|
|
body {font-family:"Times New Roman",serif}
|
|
h1 {font:bold 135% Arial,sans-serif; color:#4000A0; margin-bottom:0.9em}
|
|
h2 {font:bold 95% Arial,sans-serif; color:#900000; margin-top:1.5em; margin-bottom:1em}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>tFPDF</h1>
|
|
<h2>Informations</h2>
|
|
Author: <a href="mailto:ian@bpm1.com?subject=tFPDF">Ian Back</a><br>
|
|
License: LGPL
|
|
<h2>Description</h2>
|
|
This class is a modified version of FPDF that adds UTF-8 support. Moreover, it embeds only
|
|
the necessary parts of the fonts that are used in the document, making the file size much
|
|
smaller than if the whole fonts were embedded. These features were originally developed
|
|
for the <a href="http://mpdf.bpm1.com" target="_blank">mPDF</a> project.<br>
|
|
<br>
|
|
To use a Unicode font in your script, pass the font file name as third parameter of
|
|
<code>AddFont()</code> and <code>true</code> as fourth parameter. The font may be located
|
|
either in the font/unifont directory or directly in the system font folder (in case the
|
|
<code>_SYSTEM_TTFONTS</code> constant is defined).
|
|
The package ships with the <a href="http://dejavu-fonts.org" target="_blank">DejaVu</a>
|
|
font family.<br>
|
|
<br>
|
|
<strong>Note:</strong> this class requires the mbstring extension.
|
|
</body>
|
|
</html>
|