This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
rfpdf /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
CHANGELOG | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
MIT-LICENSE | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
README | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
environment.rb | Wed Jul 02 10:51:12 -0700 2008 | [Edwin Moss] |
| |
init.rb | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
install.rb | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
lib/ | Tue Aug 05 09:01:51 -0700 2008 | [bmoss] |
| |
logo_example.png | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
test/ | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
test_unicode.rfpdf | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
| |
utf8test.txt | Fri Jun 06 21:04:42 -0700 2008 | [Edwin Moss] |
README
= 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!




