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
This commit is contained in:
parent
81bbb8f9b8
commit
b200fcfdae
|
@ -116,12 +116,23 @@ module Redmine
|
||||||
end
|
end
|
||||||
|
|
||||||
def RDMwriteHTMLCell(w, h, x, y, txt='', attachments=[], border=0, ln=1, fill=0)
|
def RDMwriteHTMLCell(w, h, x, y, txt='', attachments=[], border=0, ln=1, fill=0)
|
||||||
|
@attachments = attachments
|
||||||
writeHTMLCell(w, h, x, y,
|
writeHTMLCell(w, h, x, y,
|
||||||
fix_text_encoding(
|
fix_text_encoding(
|
||||||
Redmine::WikiFormatting.to_html(Setting.text_formatting, txt)),
|
Redmine::WikiFormatting.to_html(Setting.text_formatting, txt)),
|
||||||
border, ln, fill)
|
border, ln, fill)
|
||||||
end
|
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
|
def Footer
|
||||||
SetFont(@font_for_footer, 'I', 8)
|
SetFont(@font_for_footer, 'I', 8)
|
||||||
SetY(-15)
|
SetY(-15)
|
||||||
|
|
Loading…
Reference in New Issue