##// END OF EJS Templates
ci.rake: code format cleanup...
ci.rake: code format cleanup git-svn-id: http://svn.redmine.org/redmine/trunk@12257 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11169:d5f1e186f1e8
r12027:0707c7a12de8
Show More
README
41 lines | 755 B | text/plain | TextLexer
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 FWIW - I am migrating my apps to Prawn and Prawnto
Jean-Philippe Lang
missing rfpdf in the repository......
r47 = RFPDF Template Plugin
A template plugin allowing the inclusion of ERB-enabled RFPDF template files.
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 ==
==
== TCPDF Version (The New or UTF8 Version)
==
==
TCPDF Documentation located at:
Jean-Philippe Lang
missing rfpdf in the repository......
r47
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 http://phpdocs.moodle.org/com-tecnick-tcpdf/TCPDF.html
Jean-Philippe Lang
missing rfpdf in the repository......
r47
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 Example of simple use in .rhtml:
Jean-Philippe Lang
missing rfpdf in the repository......
r47
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 <%
@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()%>
Jean-Philippe Lang
missing rfpdf in the repository......
r47
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 See the following files for sample of useage:
Jean-Philippe Lang
missing rfpdf in the repository......
r47
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 test_unicode.rfpdf
utf8test.txt
logo_example.png
Jean-Philippe Lang
missing rfpdf in the repository......
r47
Toshi MARUYAMA
PDF: update rfpdf (#61)....
r5127 FPDF users can migrate to TCPDF by changing the following from:
pdf = FPDF.new
to:
pdf = TCPDF.new
Toshi MARUYAMA
not use htmlentities gem in rfpdf plugin (#13138)...
r11169 ENJOY!