Mercurial > hg > soundsoftware-site
comparison vendor/plugins/rfpdf/lib/fpdf/korean.rb @ 507:0c939c159af4 redmine-1.2
Update to Redmine 1.2.1 on 1.2-stable branch (Redmine SVN rev 6270)
author | Chris Cannam |
---|---|
date | Thu, 14 Jul 2011 10:32:19 +0100 |
parents | cbce1fd3b1b7 |
children | cbb26bc654de |
comparison
equal
deleted
inserted
replaced
441:cbce1fd3b1b7 | 507:0c939c159af4 |
---|---|
109 end | 109 end |
110 end | 110 end |
111 return l*@font_size/1000 | 111 return l*@font_size/1000 |
112 end | 112 end |
113 | 113 |
114 def MultiCell(w,h,txt,border=0,align='L',fill=0) | 114 def MultiCell(w,h,txt,border=0,align='L',fill=0,ln=1) |
115 if(@current_font['type']=='Type0') | 115 if(@current_font['type']=='Type0') |
116 MBMultiCell(w,h,txt,border,align,fill) | 116 MBMultiCell(w,h,txt,border,align,fill) |
117 else | 117 else |
118 super(w,h,txt,border,align,fill) | 118 super(w,h,txt,border,align,fill) |
119 end | 119 end |
203 end | 203 end |
204 Cell(w,h,s[j,i-j],b,2,align,fill) | 204 Cell(w,h,s[j,i-j],b,2,align,fill) |
205 @x=@l_margin | 205 @x=@l_margin |
206 end | 206 end |
207 | 207 |
208 def Write(h,txt,link='') | 208 def Write(h,txt,link='',fill=0) |
209 if(@current_font['type']=='Type0') | 209 if(@current_font['type']=='Type0') |
210 MBWrite(h,txt,link) | 210 MBWrite(h,txt,link) |
211 else | 211 else |
212 super(h,txt,link) | 212 super(h,txt,link) |
213 end | 213 end |