Redmine/lib/plugins/rfpdf
Toshi MARUYAMA 38e8703ed4 pdf: fix empty page attached when exporting (#13632)
Contributed by Jun NAITOH.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12189 e93f8b46-1217-0410-a6f0-8f06a7374b81
2013-09-30 10:16:16 +00:00
..
lib pdf: fix empty page attached when exporting (#13632) 2013-09-30 10:16:16 +00:00
test Moved Rails plugins required by the core to lib/plugins. 2012-04-26 17:23:24 +00:00
CHANGELOG Moved Rails plugins required by the core to lib/plugins. 2012-04-26 17:23:24 +00:00
MIT-LICENSE Moved Rails plugins required by the core to lib/plugins. 2012-04-26 17:23:24 +00:00
README not use htmlentities gem in rfpdf plugin (#13138) 2013-02-15 13:24:10 +00:00
init.rb not use htmlentities gem in rfpdf plugin (#13138) 2013-02-15 13:24:10 +00:00
logo_example.png remove svn:executable from lib/plugins/rfpdf excluding lib/fonts/ttf2ufm/ttf2ufm(.exe) 2013-08-10 09:52:40 +00:00
test_unicode.rfpdf Moved Rails plugins required by the core to lib/plugins. 2012-04-26 17:23:24 +00:00
utf8test.txt remove svn:executable from lib/plugins/rfpdf excluding lib/fonts/ttf2ufm/ttf2ufm(.exe) 2013-08-10 09:52:40 +00:00

README

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!