Space to separate "&&" so that all "&$var" can be made into "$var" later
[openemr.git] / library / html2pdf / _fpdf / histo.htm
blobbe15851bf1bfeb8d22ccdc89028b7952cc5385e4
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5 <title>History</title>
6 <link type="text/css" rel="stylesheet" href="fpdf.css">
7 <style type="text/css">
8 dd {margin-top:1em; margin-bottom:1em}
9 </style>
10 </head>
11 <body>
12 <h1>History</h1>
13 <dl>
14 <dt><strong>v1.6</strong> (2008-08-03)</dt>
15 <dd>
16 - GIF image support.<br>
17 - Images can now trigger page breaks.<br>
18 - Possibility to have different page formats in a single document.<br>
19 - Document properties (author, creator, keywords, subject and title) can now be specified in UTF-8.<br>
20 - Fixed a bug: when a PNG was inserted through a URL, an error sometimes occurred.<br>
21 - An automatic page break in Header() doesn't cause an infinite loop any more.<br>
22 - Removed some warning messages appearing with recent PHP versions.<br>
23 - Added HTTP headers to reduce problems with IE.<br>
24 </dd>
25 <dt><strong>v1.53</strong> (2004-12-31)</dt>
26 <dd>
27 - When the font subdirectory is in the same directory as fpdf.php, it is no longer necessary to define the FPDF_FONTPATH constant.<br>
28 - The array $HTTP_SERVER_VARS is no longer used. It could cause trouble on PHP5-based configurations with the register_long_arrays option disabled.<br>
29 - Fixed a problem related to Type1 font embedding which caused trouble to some PDF processors.<br>
30 - The file name sent to the browser could not contain a space character.<br>
31 - The Cell() method could not print the number 0 (you had to pass the string '0').<br>
32 </dd>
33 <dt><strong>v1.52</strong> (2003-12-30)</dt>
34 <dd>
35 - Image() now displays the image at 72 dpi if no dimension is given.<br>
36 - Output() takes a string as second parameter to indicate destination.<br>
37 - Open() is now called automatically by AddPage().<br>
38 - Inserting remote JPEG images doesn't generate an error any longer.<br>
39 - Decimal separator is forced to dot in the constructor.<br>
40 - Added several encodings (Turkish, Thai, Hebrew, Ukrainian and Vietnamese).<br>
41 - The last line of a right-aligned MultiCell() was not correctly aligned if it was terminated by a carriage return.<br>
42 - No more error message about already sent headers when outputting the PDF to the standard output from the command line.<br>
43 - The underlining was going too far for text containing characters \, ( or ).<br>
44 - $HTTP_ENV_VARS has been replaced by $HTTP_SERVER_VARS.<br>
45 </dd>
46 <dt><strong>v1.51</strong> (2002-08-03)</dt>
47 <dd>
48 - Type1 font support.<br>
49 - Added Baltic encoding.<br>
50 - The class now works internally in points with the origin at the bottom in order to avoid two bugs occurring with Acrobat 5 :<br>&nbsp;&nbsp;* The line thickness was too large when printed under Windows 98 SE and ME.<br>&nbsp;&nbsp;* TrueType fonts didn't appear immediately inside the plug-in (a substitution font was used), one had to cause a window refresh to make them show up.<br>
51 - It is no longer necessary to set the decimal separator as dot to produce valid documents.<br>
52 - The clickable area in a cell was always on the left independently from the text alignment.<br>
53 - JPEG images in CMYK mode appeared in inverted colors.<br>
54 - Transparent PNG images in grayscale or true color mode were incorrectly handled.<br>
55 - Adding new fonts now works correctly even with the magic_quotes_runtime option set to on.<br>
56 </dd>
57 <dt><strong>v1.5</strong> (2002-05-28)</dt>
58 <dd>
59 - TrueType font (AddFont()) and encoding support (Western and Eastern Europe, Cyrillic and Greek).<br>
60 - Added Write() method.<br>
61 - Added underlined style.<br>
62 - Internal and external link support (AddLink(), SetLink(), Link()).<br>
63 - Added right margin management and methods SetRightMargin(), SetTopMargin().<br>
64 - Modification of SetDisplayMode() to select page layout.<br>
65 - The border parameter of MultiCell() now lets choose borders to draw as Cell().<br>
66 - When a document contains no page, Close() now calls AddPage() instead of causing a fatal error.<br>
67 </dd>
68 <dt><strong>v1.41</strong> (2002-03-13)</dt>
69 <dd>
70 - Fixed SetDisplayMode() which no longer worked (the PDF viewer used its default display).<br>
71 </dd>
72 <dt><strong>v1.4</strong> (2002-03-02)</dt>
73 <dd>
74 - PHP3 is no longer supported.<br>
75 - Page compression (SetCompression()).<br>
76 - Choice of page format and possibility to change orientation inside document.<br>
77 - Added AcceptPageBreak() method.<br>
78 - Ability to print the total number of pages (AliasNbPages()).<br>
79 - Choice of cell borders to draw.<br>
80 - New mode for Cell(): the current position can now move under the cell.<br>
81 - Ability to include an image by specifying height only (width is calculated automatically).<br>
82 - Fixed a bug: when a justified line triggered a page break, the footer inherited the corresponding word spacing.<br>
83 </dd>
84 <dt><strong>v1.31</strong> (2002-01-12)</dt>
85 <dd>
86 - Fixed a bug in drawing frame with MultiCell(): the last line always started from the left margin.<br>
87 - Removed Expires HTTP header (gives trouble in some situations).<br>
88 - Added Content-disposition HTTP header (seems to help in some situations).<br>
89 </dd>
90 <dt><strong>v1.3</strong> (2001-12-03)</dt>
91 <dd>
92 - Line break and text justification support (MultiCell()).<br>
93 - Color support (SetDrawColor(), SetFillColor(), SetTextColor()). Possibility to draw filled rectangles and paint cell background.<br>
94 - A cell whose width is declared null extends up to the right margin of the page.<br>
95 - Line width is now retained from page to page and defaults to 0.2 mm.<br>
96 - Added SetXY() method.<br>
97 - Fixed a passing by reference done in a deprecated manner for PHP4.<br>
98 </dd>
99 <dt><strong>v1.2</strong> (2001-11-11)</dt>
100 <dd>
101 - Added font metric files and GetStringWidth() method.<br>
102 - Centering and right-aligning text in cells.<br>
103 - Display mode control (SetDisplayMode()).<br>
104 - Added methods to set document properties (SetAuthor(), SetCreator(), SetKeywords(), SetSubject(), SetTitle()).<br>
105 - Possibility to force PDF download by browser.<br>
106 - Added SetX() and GetX() methods.<br>
107 - During automatic page break, current abscissa is now retained.<br>
108 </dd>
109 <dt><strong>v1.11</strong> (2001-10-20)</dt>
110 <dd>
111 - PNG support doesn't require PHP4/zlib any more. Data are now put directly into PDF without any decompression/recompression stage.<br>
112 - Image insertion now works correctly even with magic_quotes_runtime option set to on.<br>
113 </dd>
114 <dt><strong>v1.1</strong> (2001-10-07)</dt>
115 <dd>
116 - JPEG and PNG image support.<br>
117 </dd>
118 <dt><strong>v1.01</strong> (2001-10-03)</dt>
119 <dd>
120 - Fixed a bug involving page break: in case when Header() doesn't specify a font, the one from previous page was not restored and produced an incorrect document.<br>
121 </dd>
122 <dt><strong>v1.0</strong> (2001-09-17)</dt>
123 <dd>
124 - First version.<br>
125 </dd>
126 </dl>
127 </body>
128 </html>