PDF: switch encoding and font whether CJK and Thainland non UTF-8 or not in TCPDF Redmine class (#8312).
Contributed Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5718 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ba2fb5340e
commit
5742f78bd1
|
@ -34,13 +34,40 @@ module Redmine
|
||||||
attr_accessor :footer_date
|
attr_accessor :footer_date
|
||||||
|
|
||||||
def initialize(lang)
|
def initialize(lang)
|
||||||
super()
|
|
||||||
if RUBY_VERSION < '1.9'
|
if RUBY_VERSION < '1.9'
|
||||||
@ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8')
|
@ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8')
|
||||||
end
|
end
|
||||||
|
pdf_encoding = l(:general_pdf_encoding).upcase
|
||||||
|
super('P', 'mm', 'A4', (pdf_encoding == 'UTF-8'), pdf_encoding )
|
||||||
set_language_if_valid lang
|
set_language_if_valid lang
|
||||||
@font_for_content = 'FreeSans'
|
case pdf_encoding
|
||||||
@font_for_footer = 'FreeSans'
|
when 'UTF-8'
|
||||||
|
@font_for_content = 'FreeSans'
|
||||||
|
@font_for_footer = 'FreeSans'
|
||||||
|
when 'CP949'
|
||||||
|
extend(PDF_Korean)
|
||||||
|
AddUHCFont()
|
||||||
|
@font_for_content = 'UHC'
|
||||||
|
@font_for_footer = 'UHC'
|
||||||
|
when 'CP932'
|
||||||
|
extend(PDF_Japanese)
|
||||||
|
AddSJISFont()
|
||||||
|
@font_for_content = 'SJIS'
|
||||||
|
@font_for_footer = 'SJIS'
|
||||||
|
when 'GB18030'
|
||||||
|
extend(PDF_Chinese)
|
||||||
|
AddGBFont()
|
||||||
|
@font_for_content = 'GB'
|
||||||
|
@font_for_footer = 'GB'
|
||||||
|
when 'BIG5'
|
||||||
|
extend(PDF_Chinese)
|
||||||
|
AddBig5Font()
|
||||||
|
@font_for_content = 'Big5'
|
||||||
|
@font_for_footer = 'Big5'
|
||||||
|
else
|
||||||
|
@font_for_content = 'Arial'
|
||||||
|
@font_for_footer = 'Helvetica'
|
||||||
|
end
|
||||||
SetCreator(Redmine::Info.app_name)
|
SetCreator(Redmine::Info.app_name)
|
||||||
SetFont(@font_for_content)
|
SetFont(@font_for_content)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue