prawn-core 0.5.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. data/COPYING +340 -0
  2. data/LICENSE +56 -0
  3. data/README +121 -0
  4. data/Rakefile +74 -0
  5. data/data/encodings/win_ansi.txt +29 -0
  6. data/data/fonts/Action Man.dfont +0 -0
  7. data/data/fonts/Activa.ttf +0 -0
  8. data/data/fonts/Chalkboard.ttf +0 -0
  9. data/data/fonts/Courier-Bold.afm +342 -0
  10. data/data/fonts/Courier-BoldOblique.afm +342 -0
  11. data/data/fonts/Courier-Oblique.afm +342 -0
  12. data/data/fonts/Courier.afm +342 -0
  13. data/data/fonts/DejaVuSans.ttf +0 -0
  14. data/data/fonts/Dustismo_Roman.ttf +0 -0
  15. data/data/fonts/Helvetica-Bold.afm +2827 -0
  16. data/data/fonts/Helvetica-BoldOblique.afm +2827 -0
  17. data/data/fonts/Helvetica-Oblique.afm +3051 -0
  18. data/data/fonts/Helvetica.afm +3051 -0
  19. data/data/fonts/MustRead.html +19 -0
  20. data/data/fonts/Symbol.afm +213 -0
  21. data/data/fonts/Times-Bold.afm +2588 -0
  22. data/data/fonts/Times-BoldItalic.afm +2384 -0
  23. data/data/fonts/Times-Italic.afm +2667 -0
  24. data/data/fonts/Times-Roman.afm +2419 -0
  25. data/data/fonts/ZapfDingbats.afm +225 -0
  26. data/data/fonts/comicsans.ttf +0 -0
  27. data/data/fonts/gkai00mp.ttf +0 -0
  28. data/data/images/16bit.alpha +0 -0
  29. data/data/images/16bit.dat +0 -0
  30. data/data/images/16bit.png +0 -0
  31. data/data/images/arrow.png +0 -0
  32. data/data/images/arrow2.png +0 -0
  33. data/data/images/barcode_issue.png +0 -0
  34. data/data/images/dice.alpha +0 -0
  35. data/data/images/dice.dat +0 -0
  36. data/data/images/dice.png +0 -0
  37. data/data/images/dice_interlaced.png +0 -0
  38. data/data/images/fractal.jpg +0 -0
  39. data/data/images/letterhead.jpg +0 -0
  40. data/data/images/page_white_text.alpha +0 -0
  41. data/data/images/page_white_text.dat +0 -0
  42. data/data/images/page_white_text.png +0 -0
  43. data/data/images/pigs.jpg +0 -0
  44. data/data/images/rails.dat +0 -0
  45. data/data/images/rails.png +0 -0
  46. data/data/images/ruport.png +0 -0
  47. data/data/images/ruport_data.dat +0 -0
  48. data/data/images/ruport_transparent.png +0 -0
  49. data/data/images/ruport_type0.png +0 -0
  50. data/data/images/stef.jpg +0 -0
  51. data/data/images/tru256.bmp +0 -0
  52. data/data/images/web-links.dat +1 -0
  53. data/data/images/web-links.png +0 -0
  54. data/data/shift_jis_text.txt +1 -0
  55. data/examples/bounding_box/bounding_boxes.rb +44 -0
  56. data/examples/bounding_box/russian_boxes.rb +37 -0
  57. data/examples/column_box/column_box_example.rb +44 -0
  58. data/examples/general/background.rb +20 -0
  59. data/examples/general/canvas.rb +16 -0
  60. data/examples/general/measurement_units.rb +52 -0
  61. data/examples/general/metadata-info.rb +17 -0
  62. data/examples/general/multi_page_layout.rb +17 -0
  63. data/examples/general/page_geometry.rb +32 -0
  64. data/examples/graphics/basic_images.rb +24 -0
  65. data/examples/graphics/cmyk.rb +13 -0
  66. data/examples/graphics/curves.rb +12 -0
  67. data/examples/graphics/hexagon.rb +14 -0
  68. data/examples/graphics/image_fit.rb +16 -0
  69. data/examples/graphics/image_flow.rb +38 -0
  70. data/examples/graphics/image_position.rb +18 -0
  71. data/examples/graphics/line.rb +33 -0
  72. data/examples/graphics/png_types.rb +23 -0
  73. data/examples/graphics/polygons.rb +17 -0
  74. data/examples/graphics/remote_images.rb +12 -0
  75. data/examples/graphics/ruport_style_helpers.rb +20 -0
  76. data/examples/graphics/stroke_bounds.rb +21 -0
  77. data/examples/m17n/chinese_text_wrapping.rb +20 -0
  78. data/examples/m17n/euro.rb +16 -0
  79. data/examples/m17n/sjis.rb +29 -0
  80. data/examples/m17n/utf8.rb +14 -0
  81. data/examples/m17n/win_ansi_charset.rb +55 -0
  82. data/examples/text/alignment.rb +19 -0
  83. data/examples/text/dfont.rb +49 -0
  84. data/examples/text/family_based_styling.rb +25 -0
  85. data/examples/text/font_calculations.rb +92 -0
  86. data/examples/text/font_size.rb +34 -0
  87. data/examples/text/kerning.rb +31 -0
  88. data/examples/text/simple_text.rb +18 -0
  89. data/examples/text/simple_text_ttf.rb +18 -0
  90. data/examples/text/span.rb +30 -0
  91. data/examples/text/text_box.rb +26 -0
  92. data/examples/text/text_flow.rb +68 -0
  93. data/lib/prawn/compatibility.rb +38 -0
  94. data/lib/prawn/core.rb +79 -0
  95. data/lib/prawn/document.rb +399 -0
  96. data/lib/prawn/document/annotations.rb +63 -0
  97. data/lib/prawn/document/bounding_box.rb +377 -0
  98. data/lib/prawn/document/column_box.rb +89 -0
  99. data/lib/prawn/document/destinations.rb +81 -0
  100. data/lib/prawn/document/internals.rb +133 -0
  101. data/lib/prawn/document/page_geometry.rb +149 -0
  102. data/lib/prawn/document/span.rb +55 -0
  103. data/lib/prawn/document/text.rb +186 -0
  104. data/lib/prawn/document/text/box.rb +83 -0
  105. data/lib/prawn/document/text/wrapping.rb +59 -0
  106. data/lib/prawn/encoding.rb +121 -0
  107. data/lib/prawn/errors.rb +49 -0
  108. data/lib/prawn/font.rb +292 -0
  109. data/lib/prawn/font/afm.rb +202 -0
  110. data/lib/prawn/font/dfont.rb +31 -0
  111. data/lib/prawn/font/ttf.rb +327 -0
  112. data/lib/prawn/graphics.rb +257 -0
  113. data/lib/prawn/graphics/color.rb +141 -0
  114. data/lib/prawn/images.rb +339 -0
  115. data/lib/prawn/images/jpg.rb +45 -0
  116. data/lib/prawn/images/png.rb +217 -0
  117. data/lib/prawn/literal_string.rb +14 -0
  118. data/lib/prawn/measurement_extensions.rb +46 -0
  119. data/lib/prawn/measurements.rb +71 -0
  120. data/lib/prawn/name_tree.rb +165 -0
  121. data/lib/prawn/pdf_object.rb +77 -0
  122. data/lib/prawn/reference.rb +59 -0
  123. data/spec/annotations_spec.rb +90 -0
  124. data/spec/bounding_box_spec.rb +141 -0
  125. data/spec/destinations_spec.rb +15 -0
  126. data/spec/document_spec.rb +178 -0
  127. data/spec/font_spec.rb +274 -0
  128. data/spec/graphics_spec.rb +209 -0
  129. data/spec/images_spec.rb +79 -0
  130. data/spec/jpg_spec.rb +25 -0
  131. data/spec/measurement_units_spec.rb +23 -0
  132. data/spec/name_tree_spec.rb +103 -0
  133. data/spec/pdf_object_spec.rb +117 -0
  134. data/spec/png_spec.rb +236 -0
  135. data/spec/reference_spec.rb +42 -0
  136. data/spec/span_spec.rb +45 -0
  137. data/spec/spec_helper.rb +23 -0
  138. data/spec/text_box_spec.rb +83 -0
  139. data/spec/text_spec.rb +178 -0
  140. data/vendor/pdf-inspector/README +18 -0
  141. data/vendor/pdf-inspector/lib/pdf/inspector.rb +25 -0
  142. data/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +80 -0
  143. data/vendor/pdf-inspector/lib/pdf/inspector/page.rb +16 -0
  144. data/vendor/pdf-inspector/lib/pdf/inspector/text.rb +31 -0
  145. data/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +19 -0
  146. data/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
  147. data/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
  148. data/vendor/ttfunk/example.rb +45 -0
  149. data/vendor/ttfunk/lib/ttfunk.rb +102 -0
  150. data/vendor/ttfunk/lib/ttfunk/directory.rb +17 -0
  151. data/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +88 -0
  152. data/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +69 -0
  153. data/vendor/ttfunk/lib/ttfunk/reader.rb +44 -0
  154. data/vendor/ttfunk/lib/ttfunk/resource_file.rb +78 -0
  155. data/vendor/ttfunk/lib/ttfunk/subset.rb +18 -0
  156. data/vendor/ttfunk/lib/ttfunk/subset/base.rb +141 -0
  157. data/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +46 -0
  158. data/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +48 -0
  159. data/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +63 -0
  160. data/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +51 -0
  161. data/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -0
  162. data/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
  163. data/vendor/ttfunk/lib/ttfunk/table/cmap.rb +34 -0
  164. data/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +54 -0
  165. data/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +126 -0
  166. data/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +79 -0
  167. data/vendor/ttfunk/lib/ttfunk/table/glyf.rb +64 -0
  168. data/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +81 -0
  169. data/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +37 -0
  170. data/vendor/ttfunk/lib/ttfunk/table/head.rb +44 -0
  171. data/vendor/ttfunk/lib/ttfunk/table/hhea.rb +41 -0
  172. data/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +47 -0
  173. data/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -0
  174. data/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +62 -0
  175. data/vendor/ttfunk/lib/ttfunk/table/loca.rb +43 -0
  176. data/vendor/ttfunk/lib/ttfunk/table/maxp.rb +40 -0
  177. data/vendor/ttfunk/lib/ttfunk/table/name.rb +119 -0
  178. data/vendor/ttfunk/lib/ttfunk/table/os2.rb +78 -0
  179. data/vendor/ttfunk/lib/ttfunk/table/post.rb +91 -0
  180. data/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +43 -0
  181. data/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +35 -0
  182. data/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +23 -0
  183. data/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +17 -0
  184. data/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +17 -0
  185. data/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
  186. metadata +245 -0
@@ -0,0 +1,52 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Generates a ruler and also demonstrates prawn/measurement_extensions.
4
+ # It's better to run this example and examine its output than to worry about
5
+ # its particular implementation, though some might find that interesting as
6
+ # well.
7
+ #
8
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
9
+ require "prawn/core"
10
+
11
+ require "prawn/measurement_extensions"
12
+
13
+ # this makes the following units available (Millimeters, Centimeters, Decimeters, Meters, Inches, Foot, Yards, Points)
14
+ # Methodname is the common abbravation for the unit (mm, cm, dm, m, in, ft, yd, pt)
15
+ # Usage: '10.mm'.
16
+ # This converts 10mm to PDF points, which Prawn uses internally.
17
+
18
+ pdf = Prawn::Document.new(
19
+ :page_size => "A4",
20
+ :left_margin => 10.mm, # different
21
+ :right_margin => 1.cm, # units
22
+ :top_margin => 0.1.dm, # work
23
+ :bottom_margin => 0.01.m) # well
24
+
25
+ pdf.font_size = 6
26
+ pdf.line_width = 0.05
27
+
28
+ units_long = %w[Millimeters Centimeters Decimeters Inches Foot Points]
29
+ units = %w[mm cm dm in ft pt]
30
+ offset_multiplier = 2.cm
31
+ temp = "Units\n"
32
+
33
+ units.each_with_index do |unit, unit_index| #iterate through all units that make sense to display on a sheet of paper
34
+ one_unit_in_pt = eval "1.#{unit}" # calc the width of one unit
35
+ temp << "1#{unit} => #{one_unit_in_pt}pt\n" #puts converted unit in points
36
+
37
+ offset = offset_multiplier * unit_index
38
+ pdf.text units[unit_index], :at => [offset + 0.5.mm, pdf.bounds.top - 2.mm]
39
+
40
+ pdf.stroke_line(offset, pdf.bounds.top, offset, pdf.bounds.bottom)
41
+
42
+ 0.upto(((pdf.bounds.height - 5.mm) / one_unit_in_pt).to_i) do |i| # checks, how many strokes can be drawn
43
+ pdf.stroke_line(offset, i * one_unit_in_pt, (i % 5 == 0 ? 6.mm : 3.mm) + offset, i * one_unit_in_pt) # every fifth stroke is twice as large like on a real ruler
44
+ pdf.text "#{i}#{unit}", :at => [7.mm + offset, i * one_unit_in_pt] unless unit == "mm" && i % 5 != 0 || unit == "pt" && i % 10 != 0 # avoid text too close to each other
45
+ end
46
+ end
47
+
48
+ pdf.text_box temp,
49
+ :width => 5.cm, :height => pdf.font.height * units_long.length,
50
+ :at => [offset_multiplier * units_long.length, pdf.bounds.top]
51
+
52
+ pdf.render_file "measurement_units.pdf"
@@ -0,0 +1,17 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates how to set metadata properties via the info option
4
+ # It allows one to specify no standard properties
5
+ #
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
7
+ require "prawn/core"
8
+
9
+ Prawn::Document.generate "metadata-info.pdf",
10
+ :info => {
11
+ :Title => "My title", :Author => "John Doe", :Subject => "My Subject",
12
+ :Keywords => "test metadata ruby pdf dry", :Creator => "ACME Soft App",
13
+ :Producer => "Prawn", :CreationDate => Time.now, :Grok => "Test Property"
14
+ } do
15
+ text "This is a test of setting metadata properties via the info option"
16
+ text "It allows one to specify no standard properties like 'Grok'"
17
+ end
@@ -0,0 +1,17 @@
1
+ # encoding: utf-8
2
+ #
3
+ # This demonstrates that Prawn can modify page size, margins and layout for
4
+ # each individual page, via Document#start_new_page()
5
+ #
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
7
+ require "prawn/core"
8
+
9
+ Prawn::Document.generate("multi-layout.pdf", :page_layout => :landscape) do |pdf|
10
+ pdf.text "This is on a landscaped page"
11
+ pdf.start_new_page(:layout => :portrait)
12
+ pdf.text "This is on a portrait page"
13
+ pdf.start_new_page(:size => "LEGAL")
14
+ pdf.text "This is on legal paper size"
15
+ pdf.start_new_page(:left_margin => 150, :right_margin => 150)
16
+ pdf.text "This page has very wide left and right margins, causing a squeeze"
17
+ end
@@ -0,0 +1,32 @@
1
+ # encoding: utf-8
2
+ #
3
+ # This demonstrates basic page layout and landscape options for Prawn
4
+ # documents. The style used here is a bit out of date, see
5
+ # multi_page_layout.rb for a more modern example.
6
+ #
7
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
8
+ require "prawn/core"
9
+
10
+ def pdf(*options)
11
+ Prawn::Document.new(*options)
12
+ end
13
+
14
+ # defaults to portrait and US letter
15
+ portrait_letter = pdf
16
+ portrait_letter.render_file "portrait_letter.pdf"
17
+
18
+ landscape_letter = pdf(:page_layout => :landscape)
19
+ landscape_letter.render_file "landscape_letter.pdf"
20
+
21
+ portrait_legal = pdf(:page_size => "LEGAL")
22
+ portrait_legal.render_file "portrait_legal.pdf"
23
+
24
+ landscape_legal = pdf(:page_size => "LEGAL", :page_layout => :landscape)
25
+ landscape_legal.render_file "landscape_legal.pdf"
26
+
27
+ portrait_a4 = pdf(:page_size => "A4")
28
+ portrait_a4.render_file "portrait_a4.pdf"
29
+
30
+ landscape_a4 = pdf(:page_size => "A4", :page_layout => :landscape)
31
+ landscape_a4.render_file("landscape_a4.pdf")
32
+
@@ -0,0 +1,24 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates basic image embedding and positioning functionality.
4
+ # For positioning images alongside flowing text, see the image_flow.rb
5
+ # example.
6
+ #
7
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
8
+ require "prawn/core"
9
+
10
+ Prawn::Document.generate("basic_images.pdf", :page_layout => :landscape) do
11
+ stef = "#{Prawn::BASEDIR}/data/images/stef.jpg"
12
+ image stef, :at => [75, 75]
13
+
14
+ stef = "#{Prawn::BASEDIR}/data/images/stef.jpg"
15
+ image stef, :at => [500, 400], :width => 200, :height => 200
16
+
17
+ text "Please enjoy the pigs", :size => 36, :at => [200,15]
18
+
19
+ ruport = "#{Prawn::BASEDIR}/data/images/ruport.png"
20
+ image ruport, :at => [400,200], :width => 150
21
+
22
+ ruport = "#{Prawn::BASEDIR}/data/images/ruport_transparent.png"
23
+ image ruport, :at => [50,525]
24
+ end
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates Prawn's support for CMYK images and colors.
4
+ #
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
6
+ require "prawn/core"
7
+
8
+ Prawn::Document.generate("cmyk.pdf", :page_layout => :landscape) do
9
+ fill_color 50, 100, 0, 0
10
+ text "Prawn is CYMK Friendly"
11
+ fractal = "#{Prawn::BASEDIR}/data/images/fractal.jpg"
12
+ image fractal, :at => [50,450]
13
+ end
@@ -0,0 +1,12 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates simple curve and circle usage
4
+ #
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
6
+ require "prawn/core"
7
+
8
+ pdf = Prawn::Document.new
9
+ pdf.move_to [100,100]
10
+ pdf.stroke_curve_to [50,50], :bounds => [[20,90], [90,90]]
11
+ pdf.fill_circle_at [200,200], :radius => 10
12
+ pdf.render_file "curves.pdf"
@@ -0,0 +1,14 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Draws and fills a Hexagon using Document#polygon
4
+ #
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
6
+ require "prawn/core"
7
+
8
+ pdf = Prawn::Document.new
9
+
10
+ pdf.fill_color "ff0000"
11
+ pdf.fill_polygon [100, 250], [200, 300], [300, 250],
12
+ [300, 150], [200, 100], [100, 150]
13
+
14
+ pdf.render_file "hexagon.pdf"
@@ -0,0 +1,16 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates fitting an image within a rectangular width and height.
4
+ # The image will be scaled down to fit within the box, while preserving
5
+ # the aspect ratio.
6
+ #
7
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
8
+ require "prawn/core"
9
+
10
+ Prawn::Document.generate("image_fit.pdf", :page_layout => :landscape) do
11
+
12
+ pigs = "#{Prawn::BASEDIR}/data/images/pigs.jpg"
13
+ stroke_rectangle [50,450], 200, 200
14
+ image pigs, :at => [50,450], :fit => [200,200]
15
+
16
+ end
@@ -0,0 +1,38 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates automated flowing and positioning of images, as well as
4
+ # aligining images along the x-axis via the :position argument. This is
5
+ # useful when used in combination with flowing text, where the exact final
6
+ # position of the image is not known ahead of time.
7
+ #
8
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
9
+ require "prawn/core"
10
+
11
+ Prawn::Document.generate("image-flow.pdf", :page_layout => :landscape) do
12
+ self.font_size = 8
13
+ stef = "#{Prawn::BASEDIR}/data/images/stef.jpg"
14
+
15
+ text "Image at default position with no arguments"
16
+
17
+ move_down 10
18
+
19
+ image stef
20
+
21
+ text "Centered image flowing"
22
+
23
+ image stef, :position => :center
24
+
25
+ text "Right aligned image flowing"
26
+
27
+ image stef, :position => :right
28
+
29
+ text "Explicitly left aligned image flowing"
30
+
31
+ move_down 10
32
+
33
+ image stef, :position => :left
34
+
35
+ text "Flowing image at x=50"
36
+
37
+ image stef, :position => 50
38
+ end
@@ -0,0 +1,18 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates vertical and horizontal positioning of images.
4
+ #
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
6
+ require "prawn/core"
7
+
8
+ Prawn::Document.generate("image_position.pdf", :page_layout => :landscape) do
9
+
10
+ dice = "#{Prawn::BASEDIR}/data/images/dice.png"
11
+
12
+ image dice, :scale => 0.2, :position => :left, :vposition => :top
13
+ image dice, :scale => 0.2, :position => :right, :vposition => :top
14
+ image dice, :scale => 0.2, :position => :center, :vposition => :top
15
+ image dice, :scale => 0.2, :position => :center, :vposition => :center
16
+ image dice, :scale => 0.2, :position => :center, :vposition => :bottom
17
+
18
+ end
@@ -0,0 +1,33 @@
1
+ # encoding: utf-8
2
+ #
3
+ # The very first Prawn example. Here for nostalgia's sake.
4
+ #
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
6
+ require "prawn/core"
7
+
8
+ pdf = Prawn::Document.new
9
+ pdf.line_width = 10
10
+
11
+ [[100,741,100,641],
12
+ [100,691,150,691],
13
+ [150,741,150,641],
14
+ [200,741,200,641],
15
+ [100,600,100,500],
16
+ [100,600,150,550],
17
+ [100,550,150,550],
18
+ [175,600,175,500],
19
+ [175,600,225,550],
20
+ [175,550,225,550],
21
+ [175,550,225,500],
22
+ [275,600,250,500],
23
+ [275,600,300,500],
24
+ [250,550,300,550],
25
+ [315,600,350,500],
26
+ [350,500,365,550],
27
+ [365,550,380,500],
28
+ [380,500,415,600],
29
+ [430,600,430,500],
30
+ [430,600,465,500],
31
+ [465,600,465,500]].each { |points| pdf.stroke_line(*points) }
32
+
33
+ pdf.render_file "lines.pdf"
@@ -0,0 +1,23 @@
1
+ # encoding: utf-8
2
+ #
3
+ # PNG files come in different flavours - 5 of them. This example embeds
4
+ # one of each type as proof that they all work.
5
+ #
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
7
+ require "prawn/core"
8
+
9
+ images = [
10
+ ["Type 0", "#{Prawn::BASEDIR}/data/images/web-links.png"],
11
+ ["Type 2", "#{Prawn::BASEDIR}/data/images/ruport.png"],
12
+ ["Type 3", "#{Prawn::BASEDIR}/data/images/rails.png"],
13
+ ["Type 4", "#{Prawn::BASEDIR}/data/images/page_white_text.png"],
14
+ ["Type 6", "#{Prawn::BASEDIR}/data/images/dice.png"],
15
+ ]
16
+
17
+ Prawn::Document.generate("png_types.pdf", :page_size => "A5") do
18
+ images.each do |header, file|
19
+ start_new_page unless header.include?("0")
20
+ text header
21
+ image file, :at => [50,450]
22
+ end
23
+ end
@@ -0,0 +1,17 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Basic polygon drawing example. See also: hexagon.rb
4
+ #
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
6
+ require "prawn/core"
7
+
8
+ pdf = Prawn::Document.new
9
+
10
+ 10.times do |i|
11
+ pdf.stroke_polygon [ 50 + i*25, 50 + i*25],
12
+ [100 + i*25, 50 + i*25],
13
+ [100 + i*25, 100 + i*25]
14
+ pdf.stroke_rectangle [0,600], 5*i, 10*i
15
+ end
16
+
17
+ pdf.render_file "pretty_polygons.pdf"
@@ -0,0 +1,12 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates how to use open-uri and Document#image to embed remote image
4
+ # files.
5
+ #
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
7
+ require "prawn/core"
8
+ require "open-uri"
9
+
10
+ Prawn::Document.generate("remote_images.pdf") do
11
+ image open("http://prawn.majesticseacreature.com/media/prawn_logo.png")
12
+ end
@@ -0,0 +1,20 @@
1
+ # encoding: utf-8
2
+ #
3
+ # These helpers will be familiar to Ruport users, and now are supported
4
+ # directly in Prawn. Run the example to see how they work.
5
+ #
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
7
+ require "prawn/core"
8
+
9
+ # Demonstrates some features stolen from Ruport::Formatter::PDF
10
+ Prawn::Document.generate("ruport.pdf") do
11
+ move_down 50
12
+ # TODO: Figure out where to set the y cursor to.
13
+ stroke_horizontal_rule
14
+ text "Hi there"
15
+ pad(50) { text "I'm Padded" }
16
+ text "I'm far away"
17
+ stroke_horizontal_line 50, 100
18
+ stroke_horizontal_line 50, 100, :at => 300
19
+ stroke_vertical_line 300, 50, :at => 250
20
+ end
@@ -0,0 +1,21 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Demonstrates Document#stroke_bounds, which will stroke a rectange outlining
4
+ # the boundaries of the current bounding box. This is useful for debugging
5
+ # and can also be used as a light-weight and lower level alternative to
6
+ # Cells.
7
+ #
8
+ # Feature borrowed from Josh Knowle's pt at:
9
+ # http://github.com/joshknowles/pt/tree/master
10
+ #
11
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
12
+ require 'prawn/core'
13
+
14
+ Prawn::Document.generate("stroke_bounds.pdf") do
15
+ stroke_bounds
16
+
17
+ bounding_box [100,500], :width => 200, :height => 300 do
18
+ text "Hey there, here's some text. " * 10
19
+ stroke_bounds
20
+ end
21
+ end
@@ -0,0 +1,20 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Some text is not usefully wrapped by our naive_wrap which depends on
4
+ # spaces. This example shows how to wrap by character instead.
5
+ #
6
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
7
+ require "prawn/core"
8
+
9
+ start = Time.now
10
+ Prawn::Document.generate("chinese_flow.pdf") do
11
+ font "#{Prawn::BASEDIR}/data/fonts/gkai00mp.ttf"
12
+ text_options.update(:wrap => :character, :size => 16)
13
+ long_text = "更可怕的是,同质化竞争对手可以按照URL中后面这个ID来遍历您的DB中的内容,写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事,这样的话,你就非常被动了。写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事"
14
+ text long_text
15
+
16
+ # be sure to restore space based wrapping when dealing with latin scripts
17
+ text_options.update(:wrap => :spaces)
18
+ long_text = "Text with some spaces " * 25
19
+ text long_text
20
+ end
@@ -0,0 +1,16 @@
1
+ # encoding: utf-8
2
+ #
3
+ # As of Prawn 0.3, it is possible to generate a Euro using the built-in
4
+ # AFM files. However, you need to be sure to manually add spacing around it,
5
+ # as its calculated width in the AFM files seem to be wrong.
6
+ #
7
+ # We are investigating this issue, but it does not seem to be Prawn specific.
8
+ # If you need precision spacing, use a TTF file instead and the issue will
9
+ # go away.
10
+ #
11
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
12
+ require "prawn/core"
13
+
14
+ Prawn::Document.generate "euro.pdf" do
15
+ text "A Euro! € ©", :size => 32
16
+ end