Mercurial > hg > soundsoftware-site
view .svn/pristine/ac/acc250b05e43c21173623b65f651d52d843f6f14.svn-base @ 1386:e4c393cebb1a luisf
Merger from testing branch.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 24 Sep 2013 16:25:05 +0100 |
parents | 038ba2d95de8 |
children |
line wrap: on
line source
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) == == 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!