pdf: lib: prepare to use rfpdf plug-in rmagick feature (#3261)
Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7914 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
1b4fc4aee8
commit
81bbb8f9b8
|
@ -21,6 +21,7 @@ require 'iconv'
|
||||||
require 'fpdf/chinese'
|
require 'fpdf/chinese'
|
||||||
require 'fpdf/japanese'
|
require 'fpdf/japanese'
|
||||||
require 'fpdf/korean'
|
require 'fpdf/korean'
|
||||||
|
require 'core/rmagick'
|
||||||
|
|
||||||
module Redmine
|
module Redmine
|
||||||
module Export
|
module Export
|
||||||
|
@ -34,6 +35,8 @@ module Redmine
|
||||||
attr_accessor :footer_date
|
attr_accessor :footer_date
|
||||||
|
|
||||||
def initialize(lang)
|
def initialize(lang)
|
||||||
|
@@k_path_cache = Rails.root.join('tmp', 'pdf')
|
||||||
|
FileUtils.mkdir_p @@k_path_cache unless File::exist?(@@k_path_cache)
|
||||||
set_language_if_valid lang
|
set_language_if_valid lang
|
||||||
pdf_encoding = l(:general_pdf_encoding).upcase
|
pdf_encoding = l(:general_pdf_encoding).upcase
|
||||||
super('P', 'mm', 'A4', (pdf_encoding == 'UTF-8'), pdf_encoding)
|
super('P', 'mm', 'A4', (pdf_encoding == 'UTF-8'), pdf_encoding)
|
||||||
|
|
Loading…
Reference in New Issue