Downloads
Download tar.gz
12.54 KB
MD5: d47f25cd56857718f34ead09072ea7d6
SHA-1: 6d540394c220c7eb59b91337ca61c7ecada43682
SHA-256: ee9c95cddf61a30b928d3b5df9cfa542e39bb26927b34a7c7e4e678a757ab29c
Download zip
13.48 KB
MD5: dba333d41949b9bd9f956b3157ef0411
SHA-1: 22ac4bede4888b120948746f8cbfbdd5b3925119
SHA-256: 052b0cbdbfcb405755a5ed30d6e783fd46318505cc35d16ab767af86def88c46
Release notes
A major bug was fixed (a call to a private class function was rewritten to use the public function).
The TCPDF class was extended so that $pdf->Rotate is available to print out rotated text.
Example code to use the rotation
$pdf->SetFont('freemono', '', 40);
$pdf->Rotate(-90, 270, 0);
$pdf->setxy(30,30);
$pdf->Write(10,"Hello World", NULL, 0);