Method: PDF_Chinese#AddBig5hwFont

Defined in:
lib/chinese.rb

#AddBig5hwFont(family = 'Big5-hw', name = 'MSungStd-Light-Acro') ⇒ Object



67
68
69
70
71
72
73
74
75
76
# File 'lib/chinese.rb', line 67

def AddBig5hwFont(family='Big5-hw',name='MSungStd-Light-Acro')
    # Add Big5 font with half-width Latin
    cw = {}
    32.upto(126) do |i|
        cw[i.chr]=500
    end
    cMap='ETen-B5-H'
    registry={'ordering'=>'CNS1','supplement'=>0}
    AddCIDFonts(family,name,cw,cMap,registry)
end