diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/export/pdf.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 661b4454a..b09f9b60d 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) |