From b200fcfdae3cd80d5829d1539a20d616b4ae4e71 2011-11-24 11:12:00 From: Toshi MARUYAMA Date: 2011-11-24 11:12:00 Subject: [PATCH] pdf: add the new feature to include attachment images (#3261) Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7915 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 661b445..b09f9b6 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -116,12 +116,23 @@ module Redmine end def RDMwriteHTMLCell(w, h, x, y, txt='', attachments=[], border=0, ln=1, fill=0) + @attachments = attachments writeHTMLCell(w, h, x, y, fix_text_encoding( Redmine::WikiFormatting.to_html(Setting.text_formatting, txt)), border, ln, fill) end + def getImageFilename(attrname) + # attrname: general_pdf_encoding string file/uri name + atta = RDMPdfEncoding.attach(@attachments, attrname, l(:general_pdf_encoding)) + if atta + return atta.diskfile + else + return nil + end + end + def Footer SetFont(@font_for_footer, 'I', 8) SetY(-15)