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,72 +0,0 @@
1
- require 'ttfunk/subset'
2
-
3
- module TTFunk
4
- class SubsetCollection
5
- def initialize(original)
6
- @original = original
7
- @subsets = [Subset.for(@original, :mac_roman)]
8
- end
9
-
10
- def [](subset)
11
- @subsets[subset]
12
- end
13
-
14
- # +characters+ should be an array of UTF-16 characters
15
- def use(characters)
16
- characters.each do |char|
17
- covered = false
18
- @subsets.each_with_index do |subset, i|
19
- if subset.covers?(char)
20
- subset.use(char)
21
- covered = true
22
- break
23
- end
24
- end
25
-
26
- if !covered
27
- @subsets << Subset.for(@original, :unicode_8bit)
28
- @subsets.last.use(char)
29
- end
30
- end
31
- end
32
-
33
- # +characters+ should be an array of UTF-16 characters. Returns
34
- # an array of subset chunks, where each chunk is another array of
35
- # two elements. The first element is the subset number, and the
36
- # second element is the string of characters to render with that
37
- # font subset. The strings will be encoded for their subset font,
38
- # and so may not look (in the raw) like what was passed in, but
39
- # they will render correctly with the indicated subset font.
40
- def encode(characters)
41
- return [] if characters.empty?
42
-
43
- # TODO: probably would be more optimal to nix the #use method,
44
- # and merge it into this one, so it can be done in a single
45
- # pass instead of two passes.
46
- use(characters)
47
-
48
- parts = []
49
- current_subset = 0
50
- current_char = 0
51
- char = characters[current_char]
52
-
53
- loop do
54
- while @subsets[current_subset].includes?(char)
55
- char = @subsets[current_subset].from_unicode(char)
56
-
57
- if parts.empty? || parts.last[0] != current_subset
58
- parts << [current_subset, char.chr]
59
- else
60
- parts.last[1] << char
61
- end
62
-
63
- current_char += 1
64
- return parts if current_char >= characters.length
65
- char = characters[current_char]
66
- end
67
-
68
- current_subset = (current_subset + 1) % @subsets.length
69
- end
70
- end
71
- end
72
- end
@@ -1,46 +0,0 @@
1
- require 'ttfunk/reader'
2
-
3
- module TTFunk
4
- class Table
5
- include Reader
6
-
7
- attr_reader :file
8
- attr_reader :offset
9
- attr_reader :length
10
-
11
- def initialize(file)
12
- @file = file
13
-
14
- info = file.directory_info(tag)
15
-
16
- if info
17
- @offset = info[:offset]
18
- @length = info[:length]
19
-
20
- parse_from(@offset) { parse! }
21
- end
22
- end
23
-
24
- def exists?
25
- !@offset.nil?
26
- end
27
-
28
- def raw
29
- if exists?
30
- parse_from(offset) { io.read(length) }
31
- else
32
- nil
33
- end
34
- end
35
-
36
- def tag
37
- self.class.name.split(/::/).last.downcase
38
- end
39
-
40
- private
41
-
42
- def parse!
43
- # do nothing, by default
44
- end
45
- end
46
- end
@@ -1,34 +0,0 @@
1
- module TTFunk
2
- class Table
3
- class Cmap < Table
4
- attr_reader :version
5
- attr_reader :tables
6
-
7
- def self.encode(charmap, encoding)
8
- result = Cmap::Subtable.encode(charmap, encoding)
9
-
10
- # pack 'version' and 'table-count'
11
- result[:table] = [0, 1, result.delete(:subtable)].pack("nnA*")
12
- return result
13
- end
14
-
15
- def unicode
16
- @unicode ||= @tables.select { |table| table.unicode? }
17
- end
18
-
19
- private
20
-
21
- def parse!
22
- @version, table_count = read(4, "nn")
23
- @tables = []
24
-
25
- table_count.times do
26
- @tables << Cmap::Subtable.new(file, offset)
27
- end
28
- end
29
- end
30
-
31
- end
32
- end
33
-
34
- require 'ttfunk/table/cmap/subtable'
@@ -1,54 +0,0 @@
1
- require 'ttfunk/encoding/mac_roman'
2
- require 'ttfunk/encoding/windows_1252'
3
-
4
- module TTFunk
5
- class Table
6
- class Cmap
7
-
8
- module Format00
9
- attr_reader :language
10
- attr_reader :code_map
11
-
12
- # Expects a hash mapping character codes to glyph ids (where the
13
- # glyph ids are from the original font). Returns a hash including
14
- # a new map (:charmap) that maps the characters in charmap to a
15
- # another hash containing both the old (:old) and new (:new) glyph
16
- # ids. The returned hash also includes a :subtable key, which contains
17
- # the encoded subtable for the given charmap.
18
- def self.encode(charmap)
19
- next_id = 0
20
- glyph_indexes = Array.new(256, 0)
21
- glyph_map = { 0 => 0 }
22
-
23
- new_map = charmap.keys.sort.inject({}) do |map, code|
24
- glyph_map[charmap[code]] ||= next_id += 1
25
- map[code] = { :old => charmap[code], :new => glyph_map[charmap[code]] }
26
- glyph_indexes[code] = glyph_map[charmap[code]]
27
- map
28
- end
29
-
30
- # format, length, language, indices
31
- subtable = [0, 262, 0, *glyph_indexes].pack("nnnC*")
32
-
33
- { :charmap => new_map, :subtable => subtable, :max_glyph_id => next_id+1 }
34
- end
35
-
36
- def [](code)
37
- @code_map[code] || 0
38
- end
39
-
40
- def supported?
41
- true
42
- end
43
-
44
- private
45
-
46
- def parse_cmap!
47
- length, @language = read(4, "nn")
48
- @code_map = read(256, "C*")
49
- end
50
- end
51
-
52
- end
53
- end
54
- end
@@ -1,126 +0,0 @@
1
- module TTFunk
2
- class Table
3
- class Cmap
4
-
5
- module Format04
6
- attr_reader :language
7
- attr_reader :code_map
8
-
9
- # Expects a hash mapping character codes to glyph ids (where the
10
- # glyph ids are from the original font). Returns a hash including
11
- # a new map (:charmap) that maps the characters in charmap to a
12
- # another hash containing both the old (:old) and new (:new) glyph
13
- # ids. The returned hash also includes a :subtable key, which contains
14
- # the encoded subtable for the given charmap.
15
- def self.encode(charmap)
16
- end_codes = []
17
- start_codes = []
18
- next_id = 0
19
- last = difference = nil
20
-
21
- glyph_map = { 0 => 0 }
22
- new_map = charmap.keys.sort.inject({}) do |map, code|
23
- old = charmap[code]
24
- glyph_map[old] ||= next_id += 1
25
- map[code] = { :old => old, :new => glyph_map[old] }
26
-
27
- delta = glyph_map[old] - code
28
- if last.nil? || delta != difference
29
- end_codes << last if last
30
- start_codes << code
31
- difference = delta
32
- end
33
- last = code
34
-
35
- map
36
- end
37
-
38
- end_codes << last if last
39
- end_codes << 0xFFFF
40
- start_codes << 0xFFFF
41
- segcount = start_codes.length
42
-
43
- # build the conversion tables
44
- deltas = []
45
- range_offsets = []
46
- glyph_indices = []
47
-
48
- offset = 0
49
- start_codes.zip(end_codes).each_with_index do |(a, b), segment|
50
- if a == 0xFFFF
51
- deltas << 0
52
- range_offsets << 0
53
- break
54
- end
55
-
56
- start_glyph_id = new_map[a][:new]
57
- if a - start_glyph_id >= 0x8000
58
- deltas << 0
59
- range_offsets << 2 * (glyph_indices.length + segcount - segment)
60
- a.upto(b) { |code| glyph_indices << new_map[code][:new] }
61
- else
62
- deltas << -a + start_glyph_id
63
- range_offsets << 0
64
- end
65
- offset += 2
66
- end
67
-
68
- # format, length, language
69
- subtable = [4, 16 + 8 * segcount + 2 * glyph_indices.length, 0].pack("nnn")
70
-
71
- search_range = 2 * 2 ** (Math.log(segcount) / Math.log(2)).to_i
72
- entry_selector = (Math.log(search_range / 2) / Math.log(2)).to_i
73
- range_shift = (2 * segcount) - search_range
74
- subtable << [segcount * 2, search_range, entry_selector, range_shift].pack("nnnn")
75
-
76
- subtable << end_codes.pack("n*") << "\0\0" << start_codes.pack("n*")
77
- subtable << deltas.pack("n*") << range_offsets.pack("n*") << glyph_indices.pack("n*")
78
-
79
- { :charmap => new_map, :subtable => subtable, :max_glyph_id => next_id+1 }
80
- end
81
-
82
- def [](code)
83
- @code_map[code] || 0
84
- end
85
-
86
- def supported?
87
- true
88
- end
89
-
90
- private
91
-
92
- def parse_cmap!
93
- length, @language, segcount_x2 = read(6, "nnn")
94
- segcount = segcount_x2 / 2
95
-
96
- io.read(6) # skip searching hints
97
-
98
- end_code = read(segcount_x2, "n*")
99
- io.read(2) # skip reserved value
100
- start_code = read(segcount_x2, "n*")
101
- id_delta = read_signed(segcount)
102
- id_range_offset = read(segcount_x2, "n*")
103
-
104
- glyph_ids = read(length - io.pos + @offset, "n*")
105
-
106
- @code_map = {}
107
-
108
- end_code.each_with_index do |tail, i|
109
- start_code[i].upto(tail) do |code|
110
- if id_range_offset[i].zero?
111
- glyph_id = code + id_delta[i]
112
- else
113
- index = id_range_offset[i] / 2 + (code - start_code[i]) - (segcount - i)
114
- glyph_id = glyph_ids[index] || 0 # because some TTF fonts are broken
115
- glyph_id += id_delta[i] if glyph_id != 0
116
- end
117
-
118
- @code_map[code] = glyph_id & 0xFFFF
119
- end
120
- end
121
- end
122
- end
123
-
124
- end
125
- end
126
- end
@@ -1,79 +0,0 @@
1
- require 'ttfunk/reader'
2
-
3
- module TTFunk
4
- class Table
5
- class Cmap
6
- class Subtable
7
- include Reader
8
-
9
- attr_reader :platform_id
10
- attr_reader :encoding_id
11
- attr_reader :format
12
-
13
- ENCODING_MAPPINGS = {
14
- :mac_roman => { :platform_id => 1, :encoding_id => 0 },
15
- # use microsoft unicode, instead of generic unicode, for optimal windows support
16
- :unicode => { :platform_id => 3, :encoding_id => 1 }
17
- }
18
-
19
- def self.encode(charmap, encoding)
20
- case encoding
21
- when :mac_roman
22
- result = Format00.encode(charmap)
23
- when :unicode
24
- result = Format04.encode(charmap)
25
- else
26
- raise NotImplementedError, "encoding #{encoding.inspect} is not supported"
27
- end
28
-
29
- mapping = ENCODING_MAPPINGS[encoding]
30
-
31
- # platform-id, encoding-id, offset
32
- result[:subtable] = [mapping[:platform_id], mapping[:encoding_id],
33
- 12, result[:subtable]].pack("nnNA*")
34
-
35
- return result
36
- end
37
-
38
- def initialize(file, table_start)
39
- @file = file
40
- @platform_id, @encoding_id, @offset = read(8, "nnN")
41
- @offset += table_start
42
-
43
- parse_from(@offset) do
44
- @format = read(2, "n").first
45
-
46
- case @format
47
- when 0 then extend(TTFunk::Table::Cmap::Format00)
48
- when 4 then extend(TTFunk::Table::Cmap::Format04)
49
- end
50
-
51
- parse_cmap!
52
- end
53
- end
54
-
55
- def unicode?
56
- platform_id == 3 && encoding_id == 1 && format == 4 ||
57
- platform_id == 0 && format == 4
58
- end
59
-
60
- def supported?
61
- false
62
- end
63
-
64
- def [](code)
65
- raise NotImplementedError, "cmap format #{@format} is not supported"
66
- end
67
-
68
- private
69
-
70
- def parse_cmap!
71
- # do nothing...
72
- end
73
- end
74
- end
75
- end
76
- end
77
-
78
- require 'ttfunk/table/cmap/format00'
79
- require 'ttfunk/table/cmap/format04'
@@ -1,64 +0,0 @@
1
- require 'ttfunk/table'
2
-
3
- module TTFunk
4
- class Table
5
- class Glyf < Table
6
- # Accepts a hash mapping (old) glyph-ids to glyph objects, and a hash
7
- # mapping old glyph-ids to new glyph-ids.
8
- #
9
- # Returns a hash containing:
10
- #
11
- # * :table - a string representing the encoded 'glyf' table containing
12
- # the given glyphs.
13
- # * :offsets - an array of offsets for each glyph
14
- def self.encode(glyphs, new2old, old2new)
15
- result = { :table => "", :offsets => [] }
16
-
17
- new2old.keys.sort.each do |new_id|
18
- glyph = glyphs[new2old[new_id]]
19
- result[:offsets] << result[:table].length
20
- result[:table] << glyph.recode(old2new) if glyph
21
- end
22
-
23
- # include an offset at the end of the table, for use in computing the
24
- # size of the last glyph
25
- result[:offsets] << result[:table].length
26
- return result
27
- end
28
-
29
- def for(glyph_id)
30
- return @cache[glyph_id] if @cache.key?(glyph_id)
31
-
32
- index = file.glyph_locations.index_of(glyph_id)
33
- size = file.glyph_locations.size_of(glyph_id)
34
-
35
- if size.zero? # blank glyph, e.g. space character
36
- @cache[glyph_id] = nil
37
- return nil
38
- end
39
-
40
- parse_from(offset + index) do
41
- raw = io.read(size)
42
- number_of_contours, x_min, y_min, x_max, y_max = raw.unpack("n5").map { |i| to_signed(i) }
43
-
44
- @cache[glyph_id] = if number_of_contours == -1
45
- Compound.new(raw, x_min, y_min, x_max, y_max)
46
- else
47
- Simple.new(raw, number_of_contours, x_min, y_min, x_max, y_max)
48
- end
49
- end
50
- end
51
-
52
- private
53
-
54
- def parse!
55
- # because the glyf table is rather complex to parse, we defer
56
- # the parse until we need a specific glyf, and then cache it.
57
- @cache = {}
58
- end
59
- end
60
- end
61
- end
62
-
63
- require 'ttfunk/table/glyf/compound'
64
- require 'ttfunk/table/glyf/simple'