davebenvenuti-prawn 0.11.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (291) hide show
  1. data/COPYING +340 -0
  2. data/HACKING +50 -0
  3. data/LICENSE +56 -0
  4. data/README +141 -0
  5. data/Rakefile +52 -0
  6. data/data/encodings/win_ansi.txt +29 -0
  7. data/data/fonts/Action Man.dfont +0 -0
  8. data/data/fonts/Activa.ttf +0 -0
  9. data/data/fonts/Chalkboard.ttf +0 -0
  10. data/data/fonts/Courier-Bold.afm +342 -0
  11. data/data/fonts/Courier-BoldOblique.afm +342 -0
  12. data/data/fonts/Courier-Oblique.afm +342 -0
  13. data/data/fonts/Courier.afm +342 -0
  14. data/data/fonts/DejaVuSans.ttf +0 -0
  15. data/data/fonts/Dustismo_Roman.ttf +0 -0
  16. data/data/fonts/Helvetica-Bold.afm +2827 -0
  17. data/data/fonts/Helvetica-BoldOblique.afm +2827 -0
  18. data/data/fonts/Helvetica-Oblique.afm +3051 -0
  19. data/data/fonts/Helvetica.afm +3051 -0
  20. data/data/fonts/MustRead.html +19 -0
  21. data/data/fonts/Symbol.afm +213 -0
  22. data/data/fonts/Times-Bold.afm +2588 -0
  23. data/data/fonts/Times-BoldItalic.afm +2384 -0
  24. data/data/fonts/Times-Italic.afm +2667 -0
  25. data/data/fonts/Times-Roman.afm +2419 -0
  26. data/data/fonts/ZapfDingbats.afm +225 -0
  27. data/data/fonts/comicsans.ttf +0 -0
  28. data/data/fonts/gkai00mp.ttf +0 -0
  29. data/data/images/16bit.alpha +0 -0
  30. data/data/images/16bit.dat +0 -0
  31. data/data/images/16bit.png +0 -0
  32. data/data/images/arrow.png +0 -0
  33. data/data/images/arrow2.png +0 -0
  34. data/data/images/barcode_issue.png +0 -0
  35. data/data/images/dice.alpha +0 -0
  36. data/data/images/dice.dat +0 -0
  37. data/data/images/dice.png +0 -0
  38. data/data/images/dice_interlaced.png +0 -0
  39. data/data/images/fractal.jpg +0 -0
  40. data/data/images/letterhead.jpg +0 -0
  41. data/data/images/page_white_text.alpha +0 -0
  42. data/data/images/page_white_text.dat +0 -0
  43. data/data/images/page_white_text.png +0 -0
  44. data/data/images/pigs.jpg +0 -0
  45. data/data/images/rails.dat +0 -0
  46. data/data/images/rails.png +0 -0
  47. data/data/images/ruport.png +0 -0
  48. data/data/images/ruport_data.dat +0 -0
  49. data/data/images/ruport_transparent.png +0 -0
  50. data/data/images/ruport_type0.png +0 -0
  51. data/data/images/stef.jpg +0 -0
  52. data/data/images/tru256.bmp +0 -0
  53. data/data/images/web-links.dat +1 -0
  54. data/data/images/web-links.png +0 -0
  55. data/data/pdfs/complex_template.pdf +0 -0
  56. data/data/pdfs/contains_ttf_font.pdf +0 -0
  57. data/data/pdfs/encrypted.pdf +0 -0
  58. data/data/pdfs/hexagon.pdf +61 -0
  59. data/data/pdfs/indirect_reference.pdf +86 -0
  60. data/data/pdfs/nested_pages.pdf +118 -0
  61. data/data/pdfs/page_without_mediabox.pdf +193 -0
  62. data/data/pdfs/resources_as_indirect_object.pdf +83 -0
  63. data/data/pdfs/two_hexagons.pdf +90 -0
  64. data/data/pdfs/version_1_6.pdf +61 -0
  65. data/data/shift_jis_text.txt +1 -0
  66. data/examples/bounding_box/bounding_boxes.rb +44 -0
  67. data/examples/bounding_box/indentation.rb +35 -0
  68. data/examples/bounding_box/russian_boxes.rb +37 -0
  69. data/examples/bounding_box/stretched_nesting.rb +68 -0
  70. data/examples/example_helper.rb +8 -0
  71. data/examples/general/background.rb +24 -0
  72. data/examples/general/canvas.rb +16 -0
  73. data/examples/general/context_sensitive_headers.rb +38 -0
  74. data/examples/general/float.rb +12 -0
  75. data/examples/general/margin.rb +37 -0
  76. data/examples/general/measurement_units.rb +52 -0
  77. data/examples/general/metadata-info.rb +17 -0
  78. data/examples/general/multi_page_layout.rb +19 -0
  79. data/examples/general/outlines.rb +67 -0
  80. data/examples/general/page_geometry.rb +32 -0
  81. data/examples/general/page_numbering.rb +16 -0
  82. data/examples/general/repeaters.rb +48 -0
  83. data/examples/general/stamp.rb +42 -0
  84. data/examples/general/templates.rb +14 -0
  85. data/examples/graphics/basic_images.rb +24 -0
  86. data/examples/graphics/cmyk.rb +13 -0
  87. data/examples/graphics/curves.rb +12 -0
  88. data/examples/graphics/hexagon.rb +14 -0
  89. data/examples/graphics/image_fit.rb +16 -0
  90. data/examples/graphics/image_flow.rb +38 -0
  91. data/examples/graphics/image_position.rb +18 -0
  92. data/examples/graphics/line.rb +33 -0
  93. data/examples/graphics/png_types.rb +23 -0
  94. data/examples/graphics/polygons.rb +17 -0
  95. data/examples/graphics/remote_images.rb +13 -0
  96. data/examples/graphics/rounded_polygons.rb +20 -0
  97. data/examples/graphics/rounded_rectangle.rb +21 -0
  98. data/examples/graphics/ruport_style_helpers.rb +20 -0
  99. data/examples/graphics/stroke_bounds.rb +21 -0
  100. data/examples/graphics/stroke_cap_and_join.rb +46 -0
  101. data/examples/graphics/stroke_dash.rb +43 -0
  102. data/examples/graphics/transformations.rb +53 -0
  103. data/examples/graphics/transparency.rb +27 -0
  104. data/examples/grid/bounding_boxes.rb +22 -0
  105. data/examples/grid/column_gutter_grid.rb +21 -0
  106. data/examples/grid/multi_boxes.rb +52 -0
  107. data/examples/grid/show_grid.rb +14 -0
  108. data/examples/grid/simple_grid.rb +21 -0
  109. data/examples/m17n/chinese_text_wrapping.rb +18 -0
  110. data/examples/m17n/euro.rb +16 -0
  111. data/examples/m17n/sjis.rb +29 -0
  112. data/examples/m17n/utf8.rb +14 -0
  113. data/examples/m17n/win_ansi_charset.rb +55 -0
  114. data/examples/security/hello_foo.rb +9 -0
  115. data/examples/table/bill.rb +54 -0
  116. data/examples/table/cell.rb +13 -0
  117. data/examples/table/checkerboard.rb +23 -0
  118. data/examples/table/header.rb +15 -0
  119. data/examples/table/inline_format_table.rb +13 -0
  120. data/examples/table/multi_page_table.rb +10 -0
  121. data/examples/table/simple_table.rb +25 -0
  122. data/examples/table/subtable.rb +13 -0
  123. data/examples/table/widths.rb +21 -0
  124. data/examples/text/alignment.rb +19 -0
  125. data/examples/text/character_spacing.rb +13 -0
  126. data/examples/text/dfont.rb +49 -0
  127. data/examples/text/family_based_styling.rb +25 -0
  128. data/examples/text/font_calculations.rb +92 -0
  129. data/examples/text/font_size.rb +34 -0
  130. data/examples/text/hyphenation.rb +46 -0
  131. data/examples/text/indent_paragraphs.rb +23 -0
  132. data/examples/text/inline_format.rb +104 -0
  133. data/examples/text/kerning.rb +31 -0
  134. data/examples/text/rotated.rb +99 -0
  135. data/examples/text/shaped_text_box.rb +32 -0
  136. data/examples/text/simple_text.rb +18 -0
  137. data/examples/text/simple_text_ttf.rb +18 -0
  138. data/examples/text/span.rb +30 -0
  139. data/examples/text/text_box.rb +89 -0
  140. data/examples/text/text_box_returning_excess.rb +52 -0
  141. data/examples/text/text_flow.rb +68 -0
  142. data/lib/prawn.rb +26 -0
  143. data/lib/prawn/compatibility.rb +51 -0
  144. data/lib/prawn/core.rb +85 -0
  145. data/lib/prawn/core/annotations.rb +61 -0
  146. data/lib/prawn/core/byte_string.rb +9 -0
  147. data/lib/prawn/core/destinations.rb +90 -0
  148. data/lib/prawn/core/document_state.rb +78 -0
  149. data/lib/prawn/core/literal_string.rb +16 -0
  150. data/lib/prawn/core/name_tree.rb +165 -0
  151. data/lib/prawn/core/object_store.rb +236 -0
  152. data/lib/prawn/core/page.rb +199 -0
  153. data/lib/prawn/core/pdf_object.rb +108 -0
  154. data/lib/prawn/core/reference.rb +112 -0
  155. data/lib/prawn/core/text.rb +140 -0
  156. data/lib/prawn/core/text/formatted/arranger.rb +266 -0
  157. data/lib/prawn/core/text/formatted/line_wrap.rb +127 -0
  158. data/lib/prawn/core/text/formatted/wrap.rb +112 -0
  159. data/lib/prawn/core/text/line_wrap.rb +211 -0
  160. data/lib/prawn/core/text/wrap.rb +82 -0
  161. data/lib/prawn/document.rb +575 -0
  162. data/lib/prawn/document/bounding_box.rb +428 -0
  163. data/lib/prawn/document/graphics_state.rb +48 -0
  164. data/lib/prawn/document/internals.rb +170 -0
  165. data/lib/prawn/document/page_geometry.rb +136 -0
  166. data/lib/prawn/document/snapshot.rb +87 -0
  167. data/lib/prawn/document/span.rb +55 -0
  168. data/lib/prawn/encoding.rb +121 -0
  169. data/lib/prawn/errors.rb +86 -0
  170. data/lib/prawn/font.rb +368 -0
  171. data/lib/prawn/font/afm.rb +225 -0
  172. data/lib/prawn/font/dfont.rb +42 -0
  173. data/lib/prawn/font/ttf.rb +350 -0
  174. data/lib/prawn/graphics.rb +325 -0
  175. data/lib/prawn/graphics/cap_style.rb +38 -0
  176. data/lib/prawn/graphics/color.rb +205 -0
  177. data/lib/prawn/graphics/dash.rb +71 -0
  178. data/lib/prawn/graphics/join_style.rb +38 -0
  179. data/lib/prawn/graphics/transformation.rb +156 -0
  180. data/lib/prawn/graphics/transparency.rb +99 -0
  181. data/lib/prawn/images.rb +217 -0
  182. data/lib/prawn/images/jpg.rb +85 -0
  183. data/lib/prawn/images/png.rb +356 -0
  184. data/lib/prawn/layout.rb +20 -0
  185. data/lib/prawn/layout/grid.rb +259 -0
  186. data/lib/prawn/measurement_extensions.rb +46 -0
  187. data/lib/prawn/measurements.rb +71 -0
  188. data/lib/prawn/outline.rb +326 -0
  189. data/lib/prawn/repeater.rb +129 -0
  190. data/lib/prawn/security.rb +262 -0
  191. data/lib/prawn/security/arcfour.rb +51 -0
  192. data/lib/prawn/stamp.rb +126 -0
  193. data/lib/prawn/table.rb +451 -0
  194. data/lib/prawn/table/cell.rb +395 -0
  195. data/lib/prawn/table/cell/in_table.rb +27 -0
  196. data/lib/prawn/table/cell/subtable.rb +65 -0
  197. data/lib/prawn/table/cell/text.rb +135 -0
  198. data/lib/prawn/table/cells.rb +206 -0
  199. data/lib/prawn/text.rb +449 -0
  200. data/lib/prawn/text/box.rb +397 -0
  201. data/lib/prawn/text/formatted.rb +4 -0
  202. data/lib/prawn/text/formatted/box.rb +222 -0
  203. data/lib/prawn/text/formatted/fragment.rb +181 -0
  204. data/lib/prawn/text/formatted/parser.rb +213 -0
  205. data/prawn.gemspec +28 -0
  206. data/spec/annotations_spec.rb +90 -0
  207. data/spec/bounding_box_spec.rb +190 -0
  208. data/spec/cell_spec.rb +430 -0
  209. data/spec/destinations_spec.rb +15 -0
  210. data/spec/document_spec.rb +476 -0
  211. data/spec/extensions/mocha.rb +32 -0
  212. data/spec/font_spec.rb +324 -0
  213. data/spec/formatted_text_arranger_spec.rb +426 -0
  214. data/spec/formatted_text_box_spec.rb +756 -0
  215. data/spec/formatted_text_fragment_spec.rb +211 -0
  216. data/spec/graphics_spec.rb +446 -0
  217. data/spec/grid_spec.rb +85 -0
  218. data/spec/images_spec.rb +119 -0
  219. data/spec/inline_formatted_text_parser_spec.rb +502 -0
  220. data/spec/jpg_spec.rb +25 -0
  221. data/spec/line_wrap_spec.rb +341 -0
  222. data/spec/measurement_units_spec.rb +23 -0
  223. data/spec/name_tree_spec.rb +112 -0
  224. data/spec/object_store_spec.rb +160 -0
  225. data/spec/outline_spec.rb +404 -0
  226. data/spec/pdf_object_spec.rb +170 -0
  227. data/spec/png_spec.rb +237 -0
  228. data/spec/reference_spec.rb +82 -0
  229. data/spec/repeater_spec.rb +96 -0
  230. data/spec/security_spec.rb +120 -0
  231. data/spec/snapshot_spec.rb +154 -0
  232. data/spec/span_spec.rb +49 -0
  233. data/spec/spec_helper.rb +34 -0
  234. data/spec/stamp_spec.rb +108 -0
  235. data/spec/stroke_styles_spec.rb +163 -0
  236. data/spec/table_spec.rb +687 -0
  237. data/spec/template_spec.rb +165 -0
  238. data/spec/text_at_spec.rb +125 -0
  239. data/spec/text_box_spec.rb +777 -0
  240. data/spec/text_spacing_spec.rb +75 -0
  241. data/spec/text_spec.rb +349 -0
  242. data/spec/text_with_inline_formatting_spec.rb +193 -0
  243. data/spec/transparency_spec.rb +89 -0
  244. data/vendor/pdf-inspector/README +18 -0
  245. data/vendor/pdf-inspector/lib/pdf/inspector.rb +26 -0
  246. data/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +18 -0
  247. data/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +131 -0
  248. data/vendor/pdf-inspector/lib/pdf/inspector/page.rb +25 -0
  249. data/vendor/pdf-inspector/lib/pdf/inspector/text.rb +46 -0
  250. data/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +19 -0
  251. data/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
  252. data/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
  253. data/vendor/ttfunk/example.rb +45 -0
  254. data/vendor/ttfunk/lib/ttfunk.rb +102 -0
  255. data/vendor/ttfunk/lib/ttfunk/directory.rb +17 -0
  256. data/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +88 -0
  257. data/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +69 -0
  258. data/vendor/ttfunk/lib/ttfunk/reader.rb +44 -0
  259. data/vendor/ttfunk/lib/ttfunk/resource_file.rb +78 -0
  260. data/vendor/ttfunk/lib/ttfunk/subset.rb +18 -0
  261. data/vendor/ttfunk/lib/ttfunk/subset/base.rb +141 -0
  262. data/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +50 -0
  263. data/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +48 -0
  264. data/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +63 -0
  265. data/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +55 -0
  266. data/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -0
  267. data/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
  268. data/vendor/ttfunk/lib/ttfunk/table/cmap.rb +34 -0
  269. data/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +54 -0
  270. data/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +126 -0
  271. data/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +79 -0
  272. data/vendor/ttfunk/lib/ttfunk/table/glyf.rb +64 -0
  273. data/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +81 -0
  274. data/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +37 -0
  275. data/vendor/ttfunk/lib/ttfunk/table/head.rb +44 -0
  276. data/vendor/ttfunk/lib/ttfunk/table/hhea.rb +41 -0
  277. data/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +47 -0
  278. data/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -0
  279. data/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +62 -0
  280. data/vendor/ttfunk/lib/ttfunk/table/loca.rb +43 -0
  281. data/vendor/ttfunk/lib/ttfunk/table/maxp.rb +40 -0
  282. data/vendor/ttfunk/lib/ttfunk/table/name.rb +125 -0
  283. data/vendor/ttfunk/lib/ttfunk/table/os2.rb +78 -0
  284. data/vendor/ttfunk/lib/ttfunk/table/post.rb +91 -0
  285. data/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +43 -0
  286. data/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +35 -0
  287. data/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +23 -0
  288. data/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +17 -0
  289. data/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +17 -0
  290. data/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
  291. metadata +379 -0
@@ -0,0 +1,85 @@
1
+ # encoding: ASCII-8BIT
2
+
3
+ # jpg.rb : Extracts the data from a JPG that is needed for embedding
4
+ #
5
+ # Copyright April 2008, James Healy. All Rights Reserved.
6
+ #
7
+ # This is free software. Please see the LICENSE and COPYING files for details.
8
+
9
+ require 'stringio'
10
+
11
+ module Prawn
12
+ module Images
13
+ # A convenience class that wraps the logic for extracting the parts
14
+ # of a JPG image that we need to embed them in a PDF
15
+ #
16
+ class JPG
17
+ attr_reader :width, :height, :bits, :channels
18
+ attr_accessor :scaled_width, :scaled_height
19
+
20
+ JPEG_SOF_BLOCKS = %W(\xc0 \xc1 \xc2 \xc3 \xc5 \xc6 \xc7 \xc9 \xca \xcb \xcd \xce \xcf)
21
+ JPEG_APP_BLOCKS = %W(\xe0 \xe1 \xe2 \xe3 \xe4 \xe5 \xe6 \xe7 \xe8 \xe9 \xea \xeb \xec \xed \xee \xef)
22
+
23
+ # Process a new JPG image
24
+ #
25
+ # <tt>:data</tt>:: A binary string of JPEG data
26
+ #
27
+ def initialize(data)
28
+ @data = data
29
+ data = StringIO.new(data.dup)
30
+
31
+ c_marker = "\xff" # Section marker.
32
+ data.read(2) # Skip the first two bytes of JPEG identifier.
33
+ loop do
34
+ marker, code, length = data.read(4).unpack('aan')
35
+ raise "JPEG marker not found!" if marker != c_marker
36
+
37
+ if JPEG_SOF_BLOCKS.include?(code)
38
+ @bits, @height, @width, @channels = data.read(6).unpack("CnnC")
39
+ break
40
+ end
41
+
42
+ buffer = data.read(length - 2)
43
+ end
44
+ end
45
+
46
+ # Build a PDF object representing this image in +document+, and return
47
+ # a Reference to it.
48
+ #
49
+ def build_pdf_object(document)
50
+ color_space = case channels
51
+ when 1
52
+ :DeviceGray
53
+ when 3
54
+ :DeviceRGB
55
+ when 4
56
+ :DeviceCMYK
57
+ else
58
+ raise ArgumentError, 'JPG uses an unsupported number of channels'
59
+ end
60
+
61
+ obj = document.ref!(
62
+ :Type => :XObject,
63
+ :Subtype => :Image,
64
+ :Filter => :DCTDecode,
65
+ :ColorSpace => color_space,
66
+ :BitsPerComponent => bits,
67
+ :Width => width,
68
+ :Height => height,
69
+ :Length => @data.size
70
+ )
71
+
72
+ # add extra decode params for CMYK images. By swapping the
73
+ # min and max values from the default, we invert the colours. See
74
+ # section 4.8.4 of the spec.
75
+ if color_space == :DeviceCMYK
76
+ obj.data[:Decode] = [ 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0 ]
77
+ end
78
+
79
+ obj << @data
80
+ obj
81
+ end
82
+
83
+ end
84
+ end
85
+ end
@@ -0,0 +1,356 @@
1
+ # encoding: ASCII-8BIT
2
+
3
+ # png.rb : Extracts the data from a PNG that is needed for embedding
4
+ #
5
+ # Based on some similar code in PDF::Writer by Austin Ziegler
6
+ #
7
+ # Copyright April 2008, James Healy. All Rights Reserved.
8
+ #
9
+ # This is free software. Please see the LICENSE and COPYING files for details.
10
+
11
+ require 'stringio'
12
+ require 'enumerator'
13
+
14
+ module Prawn
15
+ module Images
16
+ # A convenience class that wraps the logic for extracting the parts
17
+ # of a PNG image that we need to embed them in a PDF
18
+ #
19
+ class PNG
20
+ attr_reader :palette, :img_data, :transparency
21
+ attr_reader :width, :height, :bits
22
+ attr_reader :color_type, :compression_method, :filter_method
23
+ attr_reader :interlace_method, :alpha_channel
24
+ attr_accessor :scaled_width, :scaled_height
25
+
26
+ # Process a new PNG image
27
+ #
28
+ # <tt>data</tt>:: A binary string of PNG data
29
+ #
30
+ def initialize(data)
31
+ data = StringIO.new(data.dup)
32
+
33
+ data.read(8) # Skip the default header
34
+
35
+ @palette = ""
36
+ @img_data = ""
37
+ @transparency = {}
38
+
39
+ loop do
40
+ chunk_size = data.read(4).unpack("N")[0]
41
+ section = data.read(4)
42
+ case section
43
+ when 'IHDR'
44
+ # we can grab other interesting values from here (like width,
45
+ # height, etc)
46
+ values = data.read(chunk_size).unpack("NNCCCCC")
47
+
48
+ @width = values[0]
49
+ @height = values[1]
50
+ @bits = values[2]
51
+ @color_type = values[3]
52
+ @compression_method = values[4]
53
+ @filter_method = values[5]
54
+ @interlace_method = values[6]
55
+ when 'PLTE'
56
+ @palette << data.read(chunk_size)
57
+ when 'IDAT'
58
+ @img_data << data.read(chunk_size)
59
+ when 'tRNS'
60
+ # This chunk can only occur once and it must occur after the
61
+ # PLTE chunk and before the IDAT chunk
62
+ @transparency = {}
63
+ case @color_type
64
+ when 3
65
+ # Indexed colour, RGB. Each byte in this chunk is an alpha for
66
+ # the palette index in the PLTE ("palette") chunk up until the
67
+ # last non-opaque entry. Set up an array, stretching over all
68
+ # palette entries which will be 0 (opaque) or 1 (transparent).
69
+ @transparency[:indexed] = data.read(chunk_size).unpack("C*")
70
+ short = 255 - @transparency[:indexed].size
71
+ @transparency[:indexed] += ([255] * short) if short > 0
72
+ when 0
73
+ # Greyscale. Corresponding to entries in the PLTE chunk.
74
+ # Grey is two bytes, range 0 .. (2 ^ bit-depth) - 1
75
+ grayval = data.read(chunk_size).unpack("n").first
76
+ @transparency[:grayscale] = grayval
77
+ when 2
78
+ # True colour with proper alpha channel.
79
+ @transparency[:rgb] = data.read(chunk_size).unpack("nnn")
80
+ end
81
+ when 'IEND'
82
+ # we've got everything we need, exit the loop
83
+ break
84
+ else
85
+ # unknown (or un-important) section, skip over it
86
+ data.seek(data.pos + chunk_size)
87
+ end
88
+
89
+ data.read(4) # Skip the CRC
90
+ end
91
+ end
92
+
93
+ # number of color components to each pixel
94
+ #
95
+ def colors
96
+ case self.color_type
97
+ when 0, 3, 4
98
+ return 1
99
+ when 2, 6
100
+ return 3
101
+ end
102
+ end
103
+
104
+ # number of bits used per pixel
105
+ #
106
+ def pixel_bitlength
107
+ if alpha_channel?
108
+ self.bits * (self.colors + 1)
109
+ else
110
+ self.bits * self.colors
111
+ end
112
+ end
113
+
114
+ # split the alpha channel data from the raw image data in images
115
+ # where it's required.
116
+ #
117
+ def split_alpha_channel!
118
+ unfilter_image_data if alpha_channel?
119
+ end
120
+
121
+ def alpha_channel?
122
+ @color_type == 4 || @color_type == 6
123
+ end
124
+
125
+ # Adobe Reader can't handle 16-bit png channels -- chop off the second
126
+ # byte (least significant)
127
+ #
128
+ def alpha_channel_bits
129
+ 8
130
+ end
131
+
132
+ # Build a PDF object representing this image in +document+, and return
133
+ # a Reference to it.
134
+ #
135
+ def build_pdf_object(document)
136
+ if compression_method != 0
137
+ raise Errors::UnsupportedImageType,
138
+ 'PNG uses an unsupported compression method'
139
+ end
140
+
141
+ if filter_method != 0
142
+ raise Errors::UnsupportedImageType,
143
+ 'PNG uses an unsupported filter method'
144
+ end
145
+
146
+ if interlace_method != 0
147
+ raise Errors::UnsupportedImageType,
148
+ 'PNG uses unsupported interlace method'
149
+ end
150
+
151
+ # some PNG types store the colour and alpha channel data together,
152
+ # which the PDF spec doesn't like, so split it out.
153
+ split_alpha_channel!
154
+
155
+ case colors
156
+ when 1
157
+ color = :DeviceGray
158
+ when 3
159
+ color = :DeviceRGB
160
+ else
161
+ raise Errors::UnsupportedImageType,
162
+ "PNG uses an unsupported number of colors (#{png.colors})"
163
+ end
164
+
165
+ # build the image dict
166
+ obj = document.ref!(
167
+ :Type => :XObject,
168
+ :Subtype => :Image,
169
+ :Height => height,
170
+ :Width => width,
171
+ :BitsPerComponent => bits,
172
+ :Length => img_data.size,
173
+ :Filter => :FlateDecode
174
+ )
175
+
176
+ unless alpha_channel
177
+ obj.data[:DecodeParms] = {:Predictor => 15,
178
+ :Colors => colors,
179
+ :BitsPerComponent => bits,
180
+ :Columns => width}
181
+ end
182
+
183
+ # append the actual image data to the object as a stream
184
+ obj << img_data
185
+
186
+ # sort out the colours of the image
187
+ if palette.empty?
188
+ obj.data[:ColorSpace] = color
189
+ else
190
+ # embed the colour palette in the PDF as a object stream
191
+ palette_obj = document.ref!(:Length => palette.size)
192
+ palette_obj << palette
193
+
194
+ # build the color space array for the image
195
+ obj.data[:ColorSpace] = [:Indexed,
196
+ :DeviceRGB,
197
+ (palette.size / 3) -1,
198
+ palette_obj]
199
+ end
200
+
201
+ # *************************************
202
+ # add transparency data if necessary
203
+ # *************************************
204
+
205
+ # For PNG color types 0, 2 and 3, the transparency data is stored in
206
+ # a dedicated PNG chunk, and is exposed via the transparency attribute
207
+ # of the PNG class.
208
+ if transparency[:grayscale]
209
+ # Use Color Key Masking (spec section 4.8.5)
210
+ # - An array with N elements, where N is two times the number of color
211
+ # components.
212
+ val = transparency[:grayscale]
213
+ obj.data[:Mask] = [val, val]
214
+ elsif transparency[:rgb]
215
+ # Use Color Key Masking (spec section 4.8.5)
216
+ # - An array with N elements, where N is two times the number of color
217
+ # components.
218
+ rgb = transparency[:rgb]
219
+ obj.data[:Mask] = rgb.collect { |x| [x,x] }.flatten
220
+ elsif transparency[:indexed]
221
+ # TODO: broken. I was attempting to us Color Key Masking, but I think
222
+ # we need to construct an SMask i think. Maybe do it inside
223
+ # the PNG class, and store it in alpha_channel
224
+ #obj.data[:Mask] = transparency[:indexed]
225
+ end
226
+
227
+ # For PNG color types 4 and 6, the transparency data is stored as a alpha
228
+ # channel mixed in with the main image data. The PNG class seperates
229
+ # it out for us and makes it available via the alpha_channel attribute
230
+ if alpha_channel?
231
+ smask_obj = document.ref!(
232
+ :Type => :XObject,
233
+ :Subtype => :Image,
234
+ :Height => height,
235
+ :Width => width,
236
+ :BitsPerComponent => alpha_channel_bits,
237
+ :Length => alpha_channel.size,
238
+ :Filter => :FlateDecode,
239
+ :ColorSpace => :DeviceGray,
240
+ :Decode => [0, 1]
241
+ )
242
+ smask_obj << alpha_channel
243
+ obj.data[:SMask] = smask_obj
244
+ end
245
+
246
+ obj
247
+ end
248
+
249
+ # Returns the minimum PDF version required to support this image.
250
+ def min_pdf_version
251
+ if bits > 8
252
+ # 16-bit color only supported in 1.5+ (ISO 32000-1:2008 8.9.5.1)
253
+ 1.5
254
+ elsif alpha_channel?
255
+ # Need transparency for SMask
256
+ 1.4
257
+ else
258
+ 1.0
259
+ end
260
+ end
261
+
262
+ private
263
+
264
+ def unfilter_image_data
265
+ data = Zlib::Inflate.inflate(@img_data).unpack 'C*'
266
+ @img_data = ""
267
+ @alpha_channel = ""
268
+
269
+ pixel_bytes = pixel_bitlength / 8
270
+ scanline_length = pixel_bytes * self.width + 1
271
+ row = 0
272
+ pixels = []
273
+ paeth, pa, pb, pc = nil
274
+ until data.empty? do
275
+ row_data = data.slice! 0, scanline_length
276
+ filter = row_data.shift
277
+ case filter
278
+ when 0 # None
279
+ when 1 # Sub
280
+ row_data.each_with_index do |byte, index|
281
+ left = index < pixel_bytes ? 0 : row_data[index - pixel_bytes]
282
+ row_data[index] = (byte + left) % 256
283
+ #p [byte, left, row_data[index]]
284
+ end
285
+ when 2 # Up
286
+ row_data.each_with_index do |byte, index|
287
+ col = index / pixel_bytes
288
+ upper = row == 0 ? 0 : pixels[row-1][col][index % pixel_bytes]
289
+ row_data[index] = (upper + byte) % 256
290
+ end
291
+ when 3 # Average
292
+ row_data.each_with_index do |byte, index|
293
+ col = index / pixel_bytes
294
+ upper = row == 0 ? 0 : pixels[row-1][col][index % pixel_bytes]
295
+ left = index < pixel_bytes ? 0 : row_data[index - pixel_bytes]
296
+
297
+ row_data[index] = (byte + ((left + upper)/2).floor) % 256
298
+ end
299
+ when 4 # Paeth
300
+ left = upper = upper_left = nil
301
+ row_data.each_with_index do |byte, index|
302
+ col = index / pixel_bytes
303
+
304
+ left = index < pixel_bytes ? 0 : row_data[index - pixel_bytes]
305
+ if row.zero?
306
+ upper = upper_left = 0
307
+ else
308
+ upper = pixels[row-1][col][index % pixel_bytes]
309
+ upper_left = col.zero? ? 0 :
310
+ pixels[row-1][col-1][index % pixel_bytes]
311
+ end
312
+
313
+ p = left + upper - upper_left
314
+ pa = (p - left).abs
315
+ pb = (p - upper).abs
316
+ pc = (p - upper_left).abs
317
+
318
+ paeth = if pa <= pb && pa <= pc
319
+ left
320
+ elsif pb <= pc
321
+ upper
322
+ else
323
+ upper_left
324
+ end
325
+
326
+ row_data[index] = (byte + paeth) % 256
327
+ end
328
+ else
329
+ raise ArgumentError, "Invalid filter algorithm #{filter}"
330
+ end
331
+
332
+ s = []
333
+ row_data.each_slice pixel_bytes do |slice|
334
+ s << slice
335
+ end
336
+ pixels << s
337
+ row += 1
338
+ end
339
+
340
+ # convert the pixel data to seperate strings for colours and alpha
341
+ color_byte_size = self.colors * self.bits / 8
342
+ alpha_byte_size = alpha_channel_bits / 8
343
+ pixels.each do |this_row|
344
+ this_row.each do |pixel|
345
+ @img_data << pixel[0, color_byte_size].pack("C*")
346
+ @alpha_channel << pixel[color_byte_size, alpha_byte_size].pack("C*")
347
+ end
348
+ end
349
+
350
+ # compress the data
351
+ @img_data = Zlib::Deflate.deflate(@img_data)
352
+ @alpha_channel = Zlib::Deflate.deflate(@alpha_channel)
353
+ end
354
+ end
355
+ end
356
+ end
@@ -0,0 +1,20 @@
1
+ require "prawn/table"
2
+ require 'prawn/layout/grid'
3
+
4
+ module Prawn
5
+
6
+ module Errors
7
+
8
+ # This error is raised when table data is malformed
9
+ #
10
+ InvalidTableData = Class.new(StandardError)
11
+
12
+ # This error is raised when an empty or nil table is rendered
13
+ #
14
+ EmptyTable = Class.new(StandardError)
15
+ end
16
+
17
+ module Layout
18
+
19
+ end
20
+ end