Mercurial > hg > soundsoftware-site
diff lib/plugins/rfpdf/README @ 1115:433d4f72a19b redmine-2.2
Update to Redmine SVN revision 11137 on 2.2-stable branch
author | Chris Cannam |
---|---|
date | Mon, 07 Jan 2013 12:01:42 +0000 |
parents | vendor/plugins/rfpdf/README@cbce1fd3b1b7 |
children | 3e4c3460b6ca |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lib/plugins/rfpdf/README Mon Jan 07 12:01:42 2013 +0000 @@ -0,0 +1,45 @@ +FWIW - I am migrating my apps to Prawn and Prawnto + += RFPDF Template Plugin + +A template plugin allowing the inclusion of ERB-enabled RFPDF template files. + +== +== +== TCPDF Version (The New or UTF8 Version) +== +== + +If you are using HTML, it is recommended you install: + +gem install -r htmlentities + +TCPDF Documentation located at: + +http://phpdocs.moodle.org/com-tecnick-tcpdf/TCPDF.html + +Example of simple use in .rhtml: + +<% + @pdf = TCPDF.new() + @pdf.SetMargins(15, 27, 15); + @pdf.AddPage(); + text_options = {:font => "freeserif"} + @pdf.draw_text(15, 10, "text", {:font_size => 12, :font => "freeserif"}) +%><%=@pdf.Output()%> + +See the following files for sample of useage: + +test_unicode.rfpdf +utf8test.txt +logo_example.png + +FPDF users can migrate to TCPDF by changing the following from: + + pdf = FPDF.new + +to: + + pdf = TCPDF.new + +ENJOY! \ No newline at end of file