prawn 0.11.1.pre → 0.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. data/COPYING +2 -340
  2. data/HACKING +1 -1
  3. data/LICENSE +3 -3
  4. data/Rakefile +17 -6
  5. data/data/encodings/win_ansi.txt +1 -1
  6. data/data/images/prawn.png +0 -0
  7. data/data/pdfs/form.pdf +820 -0
  8. data/data/pdfs/multipage_template.pdf +127 -0
  9. data/examples/bounding_box/bounding_boxes.rb +4 -3
  10. data/examples/bounding_box/indentation.rb +2 -1
  11. data/examples/bounding_box/russian_boxes.rb +3 -2
  12. data/examples/bounding_box/stretched_nesting.rb +2 -1
  13. data/examples/general/background.rb +2 -1
  14. data/examples/general/canvas.rb +2 -1
  15. data/examples/general/context_sensitive_headers.rb +2 -1
  16. data/examples/general/float.rb +2 -1
  17. data/examples/general/margin.rb +2 -1
  18. data/examples/general/measurement_units.rb +2 -1
  19. data/examples/general/metadata-info.rb +2 -1
  20. data/examples/general/multi_page_layout.rb +2 -1
  21. data/examples/general/outlines.rb +2 -1
  22. data/examples/general/page_geometry.rb +2 -1
  23. data/examples/general/page_numbering.rb +27 -2
  24. data/examples/general/page_templates.rb +20 -0
  25. data/examples/general/repeaters.rb +2 -1
  26. data/examples/general/stamp.rb +4 -3
  27. data/examples/general/templates.rb +2 -1
  28. data/examples/graphics/basic_images.rb +2 -1
  29. data/examples/graphics/cmyk.rb +2 -1
  30. data/examples/graphics/curves.rb +4 -3
  31. data/examples/graphics/gradient.rb +23 -0
  32. data/examples/graphics/hexagon.rb +3 -2
  33. data/examples/graphics/image_fit.rb +3 -2
  34. data/examples/graphics/image_flow.rb +2 -1
  35. data/examples/graphics/image_position.rb +3 -2
  36. data/examples/graphics/line.rb +2 -1
  37. data/examples/graphics/png_types.rb +3 -2
  38. data/examples/graphics/polygons.rb +3 -2
  39. data/examples/graphics/remote_images.rb +2 -1
  40. data/examples/graphics/rounded_polygons.rb +2 -1
  41. data/examples/graphics/rounded_rectangle.rb +2 -1
  42. data/examples/graphics/ruport_style_helpers.rb +3 -2
  43. data/examples/graphics/stroke_bounds.rb +2 -1
  44. data/examples/graphics/stroke_cap_and_join.rb +2 -1
  45. data/examples/graphics/stroke_dash.rb +2 -1
  46. data/examples/graphics/transformations.rb +2 -1
  47. data/examples/graphics/transparency.rb +4 -3
  48. data/examples/grid/bounding_boxes.rb +2 -1
  49. data/examples/grid/column_gutter_grid.rb +2 -1
  50. data/examples/grid/multi_boxes.rb +2 -1
  51. data/examples/grid/show_grid.rb +2 -1
  52. data/examples/grid/simple_grid.rb +2 -1
  53. data/examples/m17n/chinese_text_wrapping.rb +2 -1
  54. data/examples/m17n/euro.rb +3 -2
  55. data/examples/m17n/full_win_ansi_character_list.rb +20 -0
  56. data/examples/m17n/sjis.rb +2 -1
  57. data/examples/m17n/utf8.rb +3 -2
  58. data/examples/m17n/win_ansi_charset.rb +2 -1
  59. data/examples/security/hello_foo.rb +2 -1
  60. data/examples/table/bill.rb +2 -1
  61. data/examples/table/borders.rb +25 -0
  62. data/examples/table/cell.rb +3 -2
  63. data/examples/table/checkerboard.rb +2 -1
  64. data/examples/table/header.rb +3 -2
  65. data/examples/table/inline_format_table.rb +2 -1
  66. data/examples/table/multi_page_table.rb +2 -1
  67. data/examples/table/simple_table.rb +2 -1
  68. data/examples/table/subtable.rb +2 -1
  69. data/examples/table/widths.rb +2 -1
  70. data/examples/text/alignment.rb +2 -1
  71. data/examples/text/character_spacing.rb +2 -1
  72. data/examples/text/dfont.rb +2 -1
  73. data/examples/text/family_based_styling.rb +3 -2
  74. data/examples/text/font_calculations.rb +2 -1
  75. data/examples/text/font_size.rb +2 -1
  76. data/examples/text/hyphenation.rb +2 -2
  77. data/examples/text/indent_paragraphs.rb +7 -5
  78. data/examples/text/inline_format.rb +7 -6
  79. data/examples/text/kerning.rb +2 -1
  80. data/examples/text/rendering_mode.rb +21 -0
  81. data/examples/text/rotated.rb +2 -1
  82. data/examples/text/shaped_text_box.rb +2 -1
  83. data/examples/text/simple_text.rb +2 -1
  84. data/examples/text/simple_text_ttf.rb +2 -1
  85. data/examples/text/span.rb +3 -2
  86. data/examples/text/text_box.rb +7 -5
  87. data/examples/text/text_box_returning_excess.rb +4 -3
  88. data/examples/text/text_flow.rb +2 -1
  89. data/lib/prawn.rb +1 -1
  90. data/lib/prawn/core/object_store.rb +42 -14
  91. data/lib/prawn/core/page.rb +22 -8
  92. data/lib/prawn/core/text.rb +141 -13
  93. data/lib/prawn/core/text/formatted/arranger.rb +39 -12
  94. data/lib/prawn/core/text/formatted/line_wrap.rb +205 -60
  95. data/lib/prawn/core/text/formatted/wrap.rb +72 -35
  96. data/lib/prawn/document.rb +174 -70
  97. data/lib/prawn/document/bounding_box.rb +122 -83
  98. data/lib/prawn/document/column_box.rb +113 -0
  99. data/lib/prawn/document/graphics_state.rb +90 -2
  100. data/lib/prawn/document/internals.rb +5 -3
  101. data/lib/prawn/errors.rb +5 -0
  102. data/lib/prawn/font.rb +4 -4
  103. data/lib/prawn/font/afm.rb +11 -0
  104. data/lib/prawn/font/ttf.rb +5 -0
  105. data/lib/prawn/graphics.rb +77 -14
  106. data/lib/prawn/graphics/cap_style.rb +13 -5
  107. data/lib/prawn/graphics/color.rb +54 -35
  108. data/lib/prawn/graphics/dash.rb +27 -16
  109. data/lib/prawn/graphics/gradient.rb +84 -0
  110. data/lib/prawn/graphics/join_style.rb +12 -3
  111. data/lib/prawn/graphics/transparency.rb +4 -4
  112. data/lib/prawn/images.rb +18 -160
  113. data/lib/prawn/images/jpg.rb +39 -0
  114. data/lib/prawn/images/png.rb +130 -0
  115. data/lib/prawn/repeater.rb +6 -13
  116. data/lib/prawn/security.rb +6 -1
  117. data/lib/prawn/stamp.rb +12 -4
  118. data/lib/prawn/table.rb +36 -4
  119. data/lib/prawn/table/cell.rb +224 -63
  120. data/lib/prawn/table/cell/text.rb +20 -10
  121. data/lib/prawn/table/cells.rb +23 -6
  122. data/lib/prawn/text.rb +54 -91
  123. data/lib/prawn/text/box.rb +29 -283
  124. data/lib/prawn/text/formatted/box.rb +349 -24
  125. data/lib/prawn/text/formatted/fragment.rb +63 -2
  126. data/lib/prawn/text/formatted/parser.rb +2 -1
  127. data/prawn.gemspec +21 -5
  128. data/spec/bounding_box_spec.rb +61 -28
  129. data/spec/cell_spec.rb +168 -30
  130. data/spec/document_spec.rb +187 -3
  131. data/spec/extensions/mocha.rb +45 -0
  132. data/spec/font_spec.rb +32 -1
  133. data/spec/formatted_text_arranger_spec.rb +35 -40
  134. data/spec/formatted_text_box_spec.rb +287 -443
  135. data/spec/formatted_text_fragment_spec.rb +87 -0
  136. data/spec/graphics_spec.rb +128 -12
  137. data/spec/grid_spec.rb +1 -1
  138. data/spec/images_spec.rb +11 -3
  139. data/spec/inline_formatted_text_parser_spec.rb +8 -0
  140. data/spec/line_wrap_spec.rb +200 -208
  141. data/spec/object_store_spec.rb +10 -0
  142. data/spec/outline_spec.rb +7 -3
  143. data/spec/repeater_spec.rb +58 -10
  144. data/spec/security_spec.rb +6 -0
  145. data/spec/spec_helper.rb +12 -8
  146. data/spec/stamp_spec.rb +52 -1
  147. data/spec/stroke_styles_spec.rb +30 -0
  148. data/spec/table_spec.rb +93 -3
  149. data/spec/template_spec.rb +132 -6
  150. data/spec/text_at_spec.rb +14 -4
  151. data/spec/text_box_spec.rb +309 -70
  152. data/spec/text_rendering_mode_spec.rb +45 -0
  153. data/spec/text_spec.rb +60 -17
  154. data/spec/text_with_inline_formatting_spec.rb +4 -162
  155. metadata +241 -241
  156. data/lib/prawn/core/text/line_wrap.rb +0 -211
  157. data/lib/prawn/core/text/wrap.rb +0 -82
  158. data/vendor/pdf-inspector/README +0 -18
  159. data/vendor/pdf-inspector/lib/pdf/inspector.rb +0 -26
  160. data/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +0 -18
  161. data/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +0 -131
  162. data/vendor/pdf-inspector/lib/pdf/inspector/page.rb +0 -25
  163. data/vendor/pdf-inspector/lib/pdf/inspector/text.rb +0 -46
  164. data/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +0 -19
  165. data/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
  166. data/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
  167. data/vendor/ttfunk/example.rb +0 -45
  168. data/vendor/ttfunk/lib/ttfunk.rb +0 -102
  169. data/vendor/ttfunk/lib/ttfunk/directory.rb +0 -17
  170. data/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +0 -88
  171. data/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +0 -69
  172. data/vendor/ttfunk/lib/ttfunk/reader.rb +0 -44
  173. data/vendor/ttfunk/lib/ttfunk/resource_file.rb +0 -78
  174. data/vendor/ttfunk/lib/ttfunk/subset.rb +0 -18
  175. data/vendor/ttfunk/lib/ttfunk/subset/base.rb +0 -141
  176. data/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +0 -50
  177. data/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +0 -48
  178. data/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +0 -63
  179. data/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +0 -55
  180. data/vendor/ttfunk/lib/ttfunk/subset_collection.rb +0 -72
  181. data/vendor/ttfunk/lib/ttfunk/table.rb +0 -46
  182. data/vendor/ttfunk/lib/ttfunk/table/cmap.rb +0 -34
  183. data/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +0 -54
  184. data/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +0 -126
  185. data/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +0 -79
  186. data/vendor/ttfunk/lib/ttfunk/table/glyf.rb +0 -64
  187. data/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +0 -81
  188. data/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +0 -37
  189. data/vendor/ttfunk/lib/ttfunk/table/head.rb +0 -44
  190. data/vendor/ttfunk/lib/ttfunk/table/hhea.rb +0 -41
  191. data/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +0 -47
  192. data/vendor/ttfunk/lib/ttfunk/table/kern.rb +0 -79
  193. data/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +0 -62
  194. data/vendor/ttfunk/lib/ttfunk/table/loca.rb +0 -43
  195. data/vendor/ttfunk/lib/ttfunk/table/maxp.rb +0 -40
  196. data/vendor/ttfunk/lib/ttfunk/table/name.rb +0 -125
  197. data/vendor/ttfunk/lib/ttfunk/table/os2.rb +0 -78
  198. data/vendor/ttfunk/lib/ttfunk/table/post.rb +0 -91
  199. data/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +0 -43
  200. data/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +0 -35
  201. data/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +0 -23
  202. data/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +0 -17
  203. data/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +0 -17
  204. data/vendor/ttfunk/lib/ttfunk/table/simple.rb +0 -14
@@ -1,78 +0,0 @@
1
- module TTFunk
2
- class ResourceFile
3
- attr_reader :map
4
-
5
- def self.open(path)
6
- ::File.open(path, "rb") do |io|
7
- file = new(io)
8
- yield file
9
- end
10
- end
11
-
12
- def initialize(io)
13
- @io = io
14
-
15
- data_offset, map_offset, data_length, map_length = @io.read(16).unpack("N*")
16
-
17
- @map = {}
18
- @io.pos = map_offset + 24 # skip header copy, next map handle, file reference, and attrs
19
- type_list_offset, name_list_offset = @io.read(4).unpack("n*")
20
-
21
- type_list_offset += map_offset
22
- name_list_offset += map_offset
23
-
24
- @io.pos = type_list_offset
25
- max_index = @io.read(2).unpack("n").first
26
- 0.upto(max_index) do
27
- type, max_type_index, ref_list_offset = @io.read(8).unpack("A4nn")
28
- @map[type] = { :list => [], :named => {} }
29
-
30
- parse_from(type_list_offset + ref_list_offset) do
31
- 0.upto(max_type_index) do
32
- id, name_ofs, attr = @io.read(5).unpack("nnC")
33
- data_ofs = @io.read(3)
34
- data_ofs = data_offset + [0, data_ofs].pack("CA*").unpack("N").first
35
- handle = @io.read(4).unpack("N").first
36
-
37
- entry = { :id => id, :attributes => attr, :offset => data_ofs, :handle => handle }
38
-
39
- if name_list_offset + name_ofs < map_offset + map_length
40
- parse_from(name_ofs + name_list_offset) do
41
- len = @io.read(1).unpack("C").first
42
- entry[:name] = @io.read(len)
43
- end
44
- end
45
-
46
- @map[type][:list] << entry
47
- @map[type][:named][entry[:name]] = entry if entry[:name]
48
- end
49
- end
50
- end
51
- end
52
-
53
- def [](type, index=0)
54
- if @map[type]
55
- collection = index.is_a?(Fixnum) ? :list : :named
56
- if @map[type][collection][index]
57
- parse_from(@map[type][collection][index][:offset]) do
58
- length = @io.read(4).unpack("N").first
59
- return @io.read(length)
60
- end
61
- end
62
- end
63
- end
64
-
65
- def resources_for(type)
66
- (@map[type] && @map[type][:named] || {}).keys
67
- end
68
-
69
- private
70
-
71
- def parse_from(offset)
72
- saved, @io.pos = @io.pos, offset
73
- yield
74
- ensure
75
- @io.pos = saved
76
- end
77
- end
78
- end
@@ -1,18 +0,0 @@
1
- require 'ttfunk/subset/unicode'
2
- require 'ttfunk/subset/unicode_8bit'
3
- require 'ttfunk/subset/mac_roman'
4
- require 'ttfunk/subset/windows_1252'
5
-
6
- module TTFunk
7
- module Subset
8
- def self.for(original, encoding)
9
- case encoding.to_sym
10
- when :unicode then Unicode.new(original)
11
- when :unicode_8bit then Unicode8Bit.new(original)
12
- when :mac_roman then MacRoman.new(original)
13
- when :windows_1252 then Windows1252.new(original)
14
- else raise NotImplementedError, "encoding #{encoding} is not supported"
15
- end
16
- end
17
- end
18
- end
@@ -1,141 +0,0 @@
1
- require 'ttfunk/table/cmap'
2
- require 'ttfunk/table/glyf'
3
- require 'ttfunk/table/head'
4
- require 'ttfunk/table/hhea'
5
- require 'ttfunk/table/hmtx'
6
- require 'ttfunk/table/kern'
7
- require 'ttfunk/table/loca'
8
- require 'ttfunk/table/maxp'
9
- require 'ttfunk/table/name'
10
- require 'ttfunk/table/post'
11
- require 'ttfunk/table/simple'
12
-
13
- module TTFunk
14
- module Subset
15
- class Base
16
- attr_reader :original
17
-
18
- def initialize(original)
19
- @original = original
20
- end
21
-
22
- def unicode?
23
- false
24
- end
25
-
26
- def to_unicode_map
27
- {}
28
- end
29
-
30
- def encode(options={})
31
- cmap_table = new_cmap_table(options)
32
- glyphs = collect_glyphs(original_glyph_ids)
33
-
34
- old2new_glyph = cmap_table[:charmap].inject({ 0 => 0 }) { |map, (code, ids)| map[ids[:old]] = ids[:new]; map }
35
- next_glyph_id = cmap_table[:max_glyph_id]
36
-
37
- glyphs.keys.each do |old_id|
38
- unless old2new_glyph.key?(old_id)
39
- old2new_glyph[old_id] = next_glyph_id
40
- next_glyph_id += 1
41
- end
42
- end
43
-
44
- new2old_glyph = old2new_glyph.invert
45
-
46
- # "mandatory" tables. Every font should ("should") have these, including
47
- # the cmap table (encoded above).
48
- glyf_table = TTFunk::Table::Glyf.encode(glyphs, new2old_glyph, old2new_glyph)
49
- loca_table = TTFunk::Table::Loca.encode(glyf_table[:offsets])
50
- hmtx_table = TTFunk::Table::Hmtx.encode(original.horizontal_metrics, new2old_glyph)
51
- hhea_table = TTFunk::Table::Hhea.encode(original.horizontal_header, hmtx_table)
52
- maxp_table = TTFunk::Table::Maxp.encode(original.maximum_profile, old2new_glyph)
53
- post_table = TTFunk::Table::Post.encode(original.postscript, new2old_glyph)
54
- name_table = TTFunk::Table::Name.encode(original.name)
55
- head_table = TTFunk::Table::Head.encode(original.header, loca_table)
56
-
57
- # "optional" tables. Fonts may omit these if they do not need them. Because they
58
- # apply globally, we can simply copy them over, without modification, if they
59
- # exist.
60
- os2_table = original.os2.raw
61
- cvt_table = TTFunk::Table::Simple.new(original, "cvt ").raw
62
- fpgm_table = TTFunk::Table::Simple.new(original, "fpgm").raw
63
- prep_table = TTFunk::Table::Simple.new(original, "prep").raw
64
-
65
- # for PDF's, the kerning info is all included in the PDF as the text is
66
- # drawn. Thus, the PDF readers do not actually use the kerning info in
67
- # embedded fonts. If the library is used for something else, the generated
68
- # subfont may need a kerning table... in that case, you need to opt into it.
69
- if options[:kerning]
70
- kern_table = TTFunk::Table::Kern.encode(original.kerning, old2new_glyph)
71
- end
72
-
73
- tables = { 'cmap' => cmap_table[:table],
74
- 'glyf' => glyf_table[:table],
75
- 'loca' => loca_table[:table],
76
- 'kern' => kern_table,
77
- 'hmtx' => hmtx_table[:table],
78
- 'hhea' => hhea_table,
79
- 'maxp' => maxp_table,
80
- 'OS/2' => os2_table,
81
- 'post' => post_table,
82
- 'name' => name_table,
83
- 'head' => head_table,
84
- 'prep' => prep_table,
85
- 'fpgm' => fpgm_table,
86
- 'cvt ' => cvt_table }
87
-
88
- tables.delete_if { |tag, table| table.nil? }
89
-
90
- search_range = (Math.log(tables.length) / Math.log(2)).to_i * 16
91
- entry_selector = (Math.log(search_range) / Math.log(2)).to_i
92
- range_shift = tables.length * 16 - search_range
93
-
94
- newfont = [original.directory.scaler_type, tables.length, search_range, entry_selector, range_shift].pack("Nn*")
95
-
96
- directory_size = tables.length * 16
97
- offset = newfont.length + directory_size
98
-
99
- table_data = ""
100
- head_offset = nil
101
- tables.each do |tag, data|
102
- newfont << [tag, checksum(data), offset, data.length].pack("A4N*")
103
- table_data << data
104
- head_offset = offset if tag == 'head'
105
- offset += data.length
106
- while offset % 4 != 0
107
- offset += 1
108
- table_data << "\0"
109
- end
110
- end
111
-
112
- newfont << table_data
113
- sum = checksum(newfont)
114
- adjustment = 0xB1B0AFBA - sum
115
- newfont[head_offset+8,4] = [adjustment].pack("N")
116
-
117
- return newfont
118
- end
119
-
120
- private
121
-
122
- def unicode_cmap
123
- @unicode_cmap ||= @original.cmap.unicode.first
124
- end
125
-
126
- def checksum(data)
127
- data += "\0" * (4 - data.length % 4) unless data.length % 4 == 0
128
- data.unpack("N*").inject(0) { |sum, dword| sum + dword } & 0xFFFF_FFFF
129
- end
130
-
131
- def collect_glyphs(glyph_ids)
132
- glyphs = glyph_ids.inject({}) { |h, id| h[id] = original.glyph_outlines.for(id); h }
133
- additional_ids = glyphs.values.select { |g| g && g.compound? }.map { |g| g.glyph_ids }.flatten
134
-
135
- glyphs.update(collect_glyphs(additional_ids)) if additional_ids.any?
136
-
137
- return glyphs
138
- end
139
- end
140
- end
141
- end
@@ -1,50 +0,0 @@
1
- require 'set'
2
- require 'ttfunk/subset/base'
3
- require 'ttfunk/encoding/mac_roman'
4
-
5
- module TTFunk
6
- module Subset
7
- class MacRoman < Base
8
- def initialize(original)
9
- super
10
- @subset = Array.new(256)
11
- end
12
-
13
- def to_unicode_map
14
- Encoding::MacRoman::TO_UNICODE
15
- end
16
-
17
- def use(character)
18
- @subset[Encoding::MacRoman::FROM_UNICODE[character]] = character
19
- end
20
-
21
- def covers?(character)
22
- Encoding::MacRoman.covers?(character)
23
- end
24
-
25
- def includes?(character)
26
- code = Encoding::MacRoman::FROM_UNICODE[character]
27
- code && @subset[code]
28
- end
29
-
30
- def from_unicode(character)
31
- Encoding::MacRoman::FROM_UNICODE[character]
32
- end
33
-
34
- protected
35
-
36
- def new_cmap_table(options)
37
- mapping = {}
38
- @subset.each_with_index do |unicode, roman|
39
- mapping[roman] = unicode_cmap[unicode] if roman
40
- end
41
-
42
- TTFunk::Table::Cmap.encode(mapping, :mac_roman)
43
- end
44
-
45
- def original_glyph_ids
46
- ([0] + @subset.map { |unicode| unicode && unicode_cmap[unicode] }).compact.uniq.sort
47
- end
48
- end
49
- end
50
- end
@@ -1,48 +0,0 @@
1
- require 'set'
2
- require 'ttfunk/subset/base'
3
-
4
- module TTFunk
5
- module Subset
6
- class Unicode < Base
7
- def initialize(original)
8
- super
9
- @subset = Set.new
10
- end
11
-
12
- def unicode?
13
- true
14
- end
15
-
16
- def to_unicode_map
17
- @subset.inject({}) { |map, code| map[code] = code; map }
18
- end
19
-
20
- def use(character)
21
- @subset << character
22
- end
23
-
24
- def covers?(character)
25
- true
26
- end
27
-
28
- def includes?(character)
29
- @subset.includes(character)
30
- end
31
-
32
- def from_unicode(character)
33
- character
34
- end
35
-
36
- protected
37
-
38
- def new_cmap_table(options)
39
- mapping = @subset.inject({}) { |map, code| map[code] = unicode_cmap[code]; map }
40
- TTFunk::Table::Cmap.encode(mapping, :unicode)
41
- end
42
-
43
- def original_glyph_ids
44
- ([0] + @subset.map { |code| unicode_cmap[code] }).uniq.sort
45
- end
46
- end
47
- end
48
- end
@@ -1,63 +0,0 @@
1
- require 'set'
2
- require 'ttfunk/subset/base'
3
-
4
- module TTFunk
5
- module Subset
6
- class Unicode8Bit < Base
7
- def initialize(original)
8
- super
9
- @subset = { 0x20 => 0x20 }
10
- @unicodes = { 0x20 => 0x20 }
11
- @next = 0x21 # apparently, PDF's don't like to use chars between 0-31
12
- end
13
-
14
- def unicode?
15
- true
16
- end
17
-
18
- def to_unicode_map
19
- @subset.dup
20
- end
21
-
22
- def use(character)
23
- if !@unicodes.key?(character)
24
- @subset[@next] = character
25
- @unicodes[character] = @next
26
- @next += 1
27
- end
28
- end
29
-
30
- def covers?(character)
31
- @unicodes.key?(character) || @next < 256
32
- end
33
-
34
- def includes?(character)
35
- @unicodes.key?(character)
36
- end
37
-
38
- def from_unicode(character)
39
- @unicodes[character]
40
- end
41
-
42
- protected
43
-
44
- def new_cmap_table(options)
45
- mapping = @subset.inject({}) do |map, (code,unicode)|
46
- map[code] = unicode_cmap[unicode]
47
- map
48
- end
49
-
50
- # since we're mapping a subset of the unicode glyphs into an
51
- # arbitrary 256-character space, the actual encoding we're
52
- # using is irrelevant. We choose MacRoman because it's a 256-character
53
- # encoding that happens to be well-supported in both TTF and
54
- # PDF formats.
55
- TTFunk::Table::Cmap.encode(mapping, :mac_roman)
56
- end
57
-
58
- def original_glyph_ids
59
- ([0] + @unicodes.keys.map { |unicode| unicode_cmap[unicode] }).uniq.sort
60
- end
61
- end
62
- end
63
- end
@@ -1,55 +0,0 @@
1
- require 'set'
2
- require 'ttfunk/subset/base'
3
- require 'ttfunk/encoding/windows_1252'
4
-
5
- module TTFunk
6
- module Subset
7
- class Windows1252 < Base
8
- def initialize(original)
9
- super
10
- @subset = Array.new(256)
11
- end
12
-
13
- def to_unicode_map
14
- Encoding::Windows1252::TO_UNICODE
15
- end
16
-
17
- def use(character)
18
- @subset[Encoding::Windows1252::FROM_UNICODE[character]] = character
19
- end
20
-
21
- def covers?(character)
22
- Encoding::Windows1252.covers?(character)
23
- end
24
-
25
- def includes?(character)
26
- code = Encoding::Windows1252::FROM_UNICODE[character]
27
- code && @subset[code]
28
- end
29
-
30
- def from_unicode(character)
31
- Encoding::Windows1252::FROM_UNICODE[character]
32
- end
33
-
34
- protected
35
-
36
- def new_cmap_table(options)
37
- mapping = {}
38
- @subset.each_with_index do |unicode, cp1252|
39
- mapping[cp1252] = unicode_cmap[unicode] if cp1252
40
- end
41
-
42
- # yes, I really mean "mac roman". TTF has no cp1252 encoding, and the
43
- # alternative would be to encode it using a format 4 unicode table, which
44
- # is overkill. for our purposes, mac-roman suffices. (If we were building
45
- # a _real_ font, instead of a PDF-embeddable subset, things would probably
46
- # be different.)
47
- TTFunk::Table::Cmap.encode(mapping, :mac_roman)
48
- end
49
-
50
- def original_glyph_ids
51
- ([0] + @subset.map { |unicode| unicode && unicode_cmap[unicode] }).compact.uniq.sort
52
- end
53
- end
54
- end
55
- end