davebenvenuti-prawn 0.11.1.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +340 -0
- data/HACKING +50 -0
- data/LICENSE +56 -0
- data/README +141 -0
- data/Rakefile +52 -0
- data/data/encodings/win_ansi.txt +29 -0
- data/data/fonts/Action Man.dfont +0 -0
- data/data/fonts/Activa.ttf +0 -0
- data/data/fonts/Chalkboard.ttf +0 -0
- data/data/fonts/Courier-Bold.afm +342 -0
- data/data/fonts/Courier-BoldOblique.afm +342 -0
- data/data/fonts/Courier-Oblique.afm +342 -0
- data/data/fonts/Courier.afm +342 -0
- data/data/fonts/DejaVuSans.ttf +0 -0
- data/data/fonts/Dustismo_Roman.ttf +0 -0
- data/data/fonts/Helvetica-Bold.afm +2827 -0
- data/data/fonts/Helvetica-BoldOblique.afm +2827 -0
- data/data/fonts/Helvetica-Oblique.afm +3051 -0
- data/data/fonts/Helvetica.afm +3051 -0
- data/data/fonts/MustRead.html +19 -0
- data/data/fonts/Symbol.afm +213 -0
- data/data/fonts/Times-Bold.afm +2588 -0
- data/data/fonts/Times-BoldItalic.afm +2384 -0
- data/data/fonts/Times-Italic.afm +2667 -0
- data/data/fonts/Times-Roman.afm +2419 -0
- data/data/fonts/ZapfDingbats.afm +225 -0
- data/data/fonts/comicsans.ttf +0 -0
- data/data/fonts/gkai00mp.ttf +0 -0
- data/data/images/16bit.alpha +0 -0
- data/data/images/16bit.dat +0 -0
- data/data/images/16bit.png +0 -0
- data/data/images/arrow.png +0 -0
- data/data/images/arrow2.png +0 -0
- data/data/images/barcode_issue.png +0 -0
- data/data/images/dice.alpha +0 -0
- data/data/images/dice.dat +0 -0
- data/data/images/dice.png +0 -0
- data/data/images/dice_interlaced.png +0 -0
- data/data/images/fractal.jpg +0 -0
- data/data/images/letterhead.jpg +0 -0
- data/data/images/page_white_text.alpha +0 -0
- data/data/images/page_white_text.dat +0 -0
- data/data/images/page_white_text.png +0 -0
- data/data/images/pigs.jpg +0 -0
- data/data/images/rails.dat +0 -0
- data/data/images/rails.png +0 -0
- data/data/images/ruport.png +0 -0
- data/data/images/ruport_data.dat +0 -0
- data/data/images/ruport_transparent.png +0 -0
- data/data/images/ruport_type0.png +0 -0
- data/data/images/stef.jpg +0 -0
- data/data/images/tru256.bmp +0 -0
- data/data/images/web-links.dat +1 -0
- data/data/images/web-links.png +0 -0
- data/data/pdfs/complex_template.pdf +0 -0
- data/data/pdfs/contains_ttf_font.pdf +0 -0
- data/data/pdfs/encrypted.pdf +0 -0
- data/data/pdfs/hexagon.pdf +61 -0
- data/data/pdfs/indirect_reference.pdf +86 -0
- data/data/pdfs/nested_pages.pdf +118 -0
- data/data/pdfs/page_without_mediabox.pdf +193 -0
- data/data/pdfs/resources_as_indirect_object.pdf +83 -0
- data/data/pdfs/two_hexagons.pdf +90 -0
- data/data/pdfs/version_1_6.pdf +61 -0
- data/data/shift_jis_text.txt +1 -0
- data/examples/bounding_box/bounding_boxes.rb +44 -0
- data/examples/bounding_box/indentation.rb +35 -0
- data/examples/bounding_box/russian_boxes.rb +37 -0
- data/examples/bounding_box/stretched_nesting.rb +68 -0
- data/examples/example_helper.rb +8 -0
- data/examples/general/background.rb +24 -0
- data/examples/general/canvas.rb +16 -0
- data/examples/general/context_sensitive_headers.rb +38 -0
- data/examples/general/float.rb +12 -0
- data/examples/general/margin.rb +37 -0
- data/examples/general/measurement_units.rb +52 -0
- data/examples/general/metadata-info.rb +17 -0
- data/examples/general/multi_page_layout.rb +19 -0
- data/examples/general/outlines.rb +67 -0
- data/examples/general/page_geometry.rb +32 -0
- data/examples/general/page_numbering.rb +16 -0
- data/examples/general/repeaters.rb +48 -0
- data/examples/general/stamp.rb +42 -0
- data/examples/general/templates.rb +14 -0
- data/examples/graphics/basic_images.rb +24 -0
- data/examples/graphics/cmyk.rb +13 -0
- data/examples/graphics/curves.rb +12 -0
- data/examples/graphics/hexagon.rb +14 -0
- data/examples/graphics/image_fit.rb +16 -0
- data/examples/graphics/image_flow.rb +38 -0
- data/examples/graphics/image_position.rb +18 -0
- data/examples/graphics/line.rb +33 -0
- data/examples/graphics/png_types.rb +23 -0
- data/examples/graphics/polygons.rb +17 -0
- data/examples/graphics/remote_images.rb +13 -0
- data/examples/graphics/rounded_polygons.rb +20 -0
- data/examples/graphics/rounded_rectangle.rb +21 -0
- data/examples/graphics/ruport_style_helpers.rb +20 -0
- data/examples/graphics/stroke_bounds.rb +21 -0
- data/examples/graphics/stroke_cap_and_join.rb +46 -0
- data/examples/graphics/stroke_dash.rb +43 -0
- data/examples/graphics/transformations.rb +53 -0
- data/examples/graphics/transparency.rb +27 -0
- data/examples/grid/bounding_boxes.rb +22 -0
- data/examples/grid/column_gutter_grid.rb +21 -0
- data/examples/grid/multi_boxes.rb +52 -0
- data/examples/grid/show_grid.rb +14 -0
- data/examples/grid/simple_grid.rb +21 -0
- data/examples/m17n/chinese_text_wrapping.rb +18 -0
- data/examples/m17n/euro.rb +16 -0
- data/examples/m17n/sjis.rb +29 -0
- data/examples/m17n/utf8.rb +14 -0
- data/examples/m17n/win_ansi_charset.rb +55 -0
- data/examples/security/hello_foo.rb +9 -0
- data/examples/table/bill.rb +54 -0
- data/examples/table/cell.rb +13 -0
- data/examples/table/checkerboard.rb +23 -0
- data/examples/table/header.rb +15 -0
- data/examples/table/inline_format_table.rb +13 -0
- data/examples/table/multi_page_table.rb +10 -0
- data/examples/table/simple_table.rb +25 -0
- data/examples/table/subtable.rb +13 -0
- data/examples/table/widths.rb +21 -0
- data/examples/text/alignment.rb +19 -0
- data/examples/text/character_spacing.rb +13 -0
- data/examples/text/dfont.rb +49 -0
- data/examples/text/family_based_styling.rb +25 -0
- data/examples/text/font_calculations.rb +92 -0
- data/examples/text/font_size.rb +34 -0
- data/examples/text/hyphenation.rb +46 -0
- data/examples/text/indent_paragraphs.rb +23 -0
- data/examples/text/inline_format.rb +104 -0
- data/examples/text/kerning.rb +31 -0
- data/examples/text/rotated.rb +99 -0
- data/examples/text/shaped_text_box.rb +32 -0
- data/examples/text/simple_text.rb +18 -0
- data/examples/text/simple_text_ttf.rb +18 -0
- data/examples/text/span.rb +30 -0
- data/examples/text/text_box.rb +89 -0
- data/examples/text/text_box_returning_excess.rb +52 -0
- data/examples/text/text_flow.rb +68 -0
- data/lib/prawn.rb +26 -0
- data/lib/prawn/compatibility.rb +51 -0
- data/lib/prawn/core.rb +85 -0
- data/lib/prawn/core/annotations.rb +61 -0
- data/lib/prawn/core/byte_string.rb +9 -0
- data/lib/prawn/core/destinations.rb +90 -0
- data/lib/prawn/core/document_state.rb +78 -0
- data/lib/prawn/core/literal_string.rb +16 -0
- data/lib/prawn/core/name_tree.rb +165 -0
- data/lib/prawn/core/object_store.rb +236 -0
- data/lib/prawn/core/page.rb +199 -0
- data/lib/prawn/core/pdf_object.rb +108 -0
- data/lib/prawn/core/reference.rb +112 -0
- data/lib/prawn/core/text.rb +140 -0
- data/lib/prawn/core/text/formatted/arranger.rb +266 -0
- data/lib/prawn/core/text/formatted/line_wrap.rb +127 -0
- data/lib/prawn/core/text/formatted/wrap.rb +112 -0
- data/lib/prawn/core/text/line_wrap.rb +211 -0
- data/lib/prawn/core/text/wrap.rb +82 -0
- data/lib/prawn/document.rb +575 -0
- data/lib/prawn/document/bounding_box.rb +428 -0
- data/lib/prawn/document/graphics_state.rb +48 -0
- data/lib/prawn/document/internals.rb +170 -0
- data/lib/prawn/document/page_geometry.rb +136 -0
- data/lib/prawn/document/snapshot.rb +87 -0
- data/lib/prawn/document/span.rb +55 -0
- data/lib/prawn/encoding.rb +121 -0
- data/lib/prawn/errors.rb +86 -0
- data/lib/prawn/font.rb +368 -0
- data/lib/prawn/font/afm.rb +225 -0
- data/lib/prawn/font/dfont.rb +42 -0
- data/lib/prawn/font/ttf.rb +350 -0
- data/lib/prawn/graphics.rb +325 -0
- data/lib/prawn/graphics/cap_style.rb +38 -0
- data/lib/prawn/graphics/color.rb +205 -0
- data/lib/prawn/graphics/dash.rb +71 -0
- data/lib/prawn/graphics/join_style.rb +38 -0
- data/lib/prawn/graphics/transformation.rb +156 -0
- data/lib/prawn/graphics/transparency.rb +99 -0
- data/lib/prawn/images.rb +217 -0
- data/lib/prawn/images/jpg.rb +85 -0
- data/lib/prawn/images/png.rb +356 -0
- data/lib/prawn/layout.rb +20 -0
- data/lib/prawn/layout/grid.rb +259 -0
- data/lib/prawn/measurement_extensions.rb +46 -0
- data/lib/prawn/measurements.rb +71 -0
- data/lib/prawn/outline.rb +326 -0
- data/lib/prawn/repeater.rb +129 -0
- data/lib/prawn/security.rb +262 -0
- data/lib/prawn/security/arcfour.rb +51 -0
- data/lib/prawn/stamp.rb +126 -0
- data/lib/prawn/table.rb +451 -0
- data/lib/prawn/table/cell.rb +395 -0
- data/lib/prawn/table/cell/in_table.rb +27 -0
- data/lib/prawn/table/cell/subtable.rb +65 -0
- data/lib/prawn/table/cell/text.rb +135 -0
- data/lib/prawn/table/cells.rb +206 -0
- data/lib/prawn/text.rb +449 -0
- data/lib/prawn/text/box.rb +397 -0
- data/lib/prawn/text/formatted.rb +4 -0
- data/lib/prawn/text/formatted/box.rb +222 -0
- data/lib/prawn/text/formatted/fragment.rb +181 -0
- data/lib/prawn/text/formatted/parser.rb +213 -0
- data/prawn.gemspec +28 -0
- data/spec/annotations_spec.rb +90 -0
- data/spec/bounding_box_spec.rb +190 -0
- data/spec/cell_spec.rb +430 -0
- data/spec/destinations_spec.rb +15 -0
- data/spec/document_spec.rb +476 -0
- data/spec/extensions/mocha.rb +32 -0
- data/spec/font_spec.rb +324 -0
- data/spec/formatted_text_arranger_spec.rb +426 -0
- data/spec/formatted_text_box_spec.rb +756 -0
- data/spec/formatted_text_fragment_spec.rb +211 -0
- data/spec/graphics_spec.rb +446 -0
- data/spec/grid_spec.rb +85 -0
- data/spec/images_spec.rb +119 -0
- data/spec/inline_formatted_text_parser_spec.rb +502 -0
- data/spec/jpg_spec.rb +25 -0
- data/spec/line_wrap_spec.rb +341 -0
- data/spec/measurement_units_spec.rb +23 -0
- data/spec/name_tree_spec.rb +112 -0
- data/spec/object_store_spec.rb +160 -0
- data/spec/outline_spec.rb +404 -0
- data/spec/pdf_object_spec.rb +170 -0
- data/spec/png_spec.rb +237 -0
- data/spec/reference_spec.rb +82 -0
- data/spec/repeater_spec.rb +96 -0
- data/spec/security_spec.rb +120 -0
- data/spec/snapshot_spec.rb +154 -0
- data/spec/span_spec.rb +49 -0
- data/spec/spec_helper.rb +34 -0
- data/spec/stamp_spec.rb +108 -0
- data/spec/stroke_styles_spec.rb +163 -0
- data/spec/table_spec.rb +687 -0
- data/spec/template_spec.rb +165 -0
- data/spec/text_at_spec.rb +125 -0
- data/spec/text_box_spec.rb +777 -0
- data/spec/text_spacing_spec.rb +75 -0
- data/spec/text_spec.rb +349 -0
- data/spec/text_with_inline_formatting_spec.rb +193 -0
- data/spec/transparency_spec.rb +89 -0
- data/vendor/pdf-inspector/README +18 -0
- data/vendor/pdf-inspector/lib/pdf/inspector.rb +26 -0
- data/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +18 -0
- data/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +131 -0
- data/vendor/pdf-inspector/lib/pdf/inspector/page.rb +25 -0
- data/vendor/pdf-inspector/lib/pdf/inspector/text.rb +46 -0
- data/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +19 -0
- data/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
- data/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
- data/vendor/ttfunk/example.rb +45 -0
- data/vendor/ttfunk/lib/ttfunk.rb +102 -0
- data/vendor/ttfunk/lib/ttfunk/directory.rb +17 -0
- data/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +88 -0
- data/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +69 -0
- data/vendor/ttfunk/lib/ttfunk/reader.rb +44 -0
- data/vendor/ttfunk/lib/ttfunk/resource_file.rb +78 -0
- data/vendor/ttfunk/lib/ttfunk/subset.rb +18 -0
- data/vendor/ttfunk/lib/ttfunk/subset/base.rb +141 -0
- data/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +50 -0
- data/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +48 -0
- data/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +63 -0
- data/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +55 -0
- data/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -0
- data/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
- data/vendor/ttfunk/lib/ttfunk/table/cmap.rb +34 -0
- data/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +54 -0
- data/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +126 -0
- data/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +79 -0
- data/vendor/ttfunk/lib/ttfunk/table/glyf.rb +64 -0
- data/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +81 -0
- data/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +37 -0
- data/vendor/ttfunk/lib/ttfunk/table/head.rb +44 -0
- data/vendor/ttfunk/lib/ttfunk/table/hhea.rb +41 -0
- data/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +47 -0
- data/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -0
- data/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +62 -0
- data/vendor/ttfunk/lib/ttfunk/table/loca.rb +43 -0
- data/vendor/ttfunk/lib/ttfunk/table/maxp.rb +40 -0
- data/vendor/ttfunk/lib/ttfunk/table/name.rb +125 -0
- data/vendor/ttfunk/lib/ttfunk/table/os2.rb +78 -0
- data/vendor/ttfunk/lib/ttfunk/table/post.rb +91 -0
- data/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +43 -0
- data/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +35 -0
- data/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +23 -0
- data/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +17 -0
- data/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +17 -0
- data/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
- metadata +379 -0
@@ -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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
8
|
+
%w[.. example_helper]))
|
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,16 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This example demonstrates how to add a "page k of n"
|
4
|
+
# template to your documents.
|
5
|
+
#
|
6
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
7
|
+
%w[.. example_helper]))
|
8
|
+
|
9
|
+
Prawn::Document.generate("page_with_numbering.pdf") do
|
10
|
+
text "Hai"
|
11
|
+
start_new_page
|
12
|
+
text "bai"
|
13
|
+
start_new_page
|
14
|
+
text "-- Hai again"
|
15
|
+
number_pages "<page> in a total of <total>", [bounds.right - 50, 0]
|
16
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This example demonstrates how to make use of Prawn's repeating element
|
4
|
+
# support. Note that all repeated elements are generated using XObjects, so
|
5
|
+
# they should be pretty efficient.
|
6
|
+
#
|
7
|
+
#
|
8
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
9
|
+
%w[.. example_helper]))
|
10
|
+
|
11
|
+
Prawn::Document.generate("repeat.pdf", :skip_page_creation => true) do
|
12
|
+
|
13
|
+
repeat :all do
|
14
|
+
draw_text "ALLLLLL", :at => bounds.top_left
|
15
|
+
end
|
16
|
+
|
17
|
+
repeat :odd do
|
18
|
+
draw_text "ODD", :at => [0,0]
|
19
|
+
end
|
20
|
+
|
21
|
+
repeat :even do
|
22
|
+
draw_text "EVEN", :at => [0,0]
|
23
|
+
end
|
24
|
+
|
25
|
+
repeat [1,2] do
|
26
|
+
draw_text "[1,2]", :at => [100,0]
|
27
|
+
end
|
28
|
+
|
29
|
+
repeat 2..4 do
|
30
|
+
draw_text "2..4", :at => [200,0]
|
31
|
+
end
|
32
|
+
|
33
|
+
repeat(lambda { |pg| pg % 3 == 0 }) do
|
34
|
+
draw_text "Every third", :at => [250, 20]
|
35
|
+
end
|
36
|
+
|
37
|
+
repeat(:all, :dynamic => true) do
|
38
|
+
draw_text page_number, :at => [500, 0]
|
39
|
+
end
|
40
|
+
|
41
|
+
10.times do
|
42
|
+
start_new_page
|
43
|
+
draw_text "A wonderful page", :at => [400,400]
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrate use of stamps
|
4
|
+
#
|
5
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
7
|
+
|
8
|
+
Prawn::Document.generate("stamp.pdf", :skip_page_creation => true) do
|
9
|
+
|
10
|
+
create_stamp("odd_page_template") do
|
11
|
+
draw_text "This is the odd page template",
|
12
|
+
:at => [0, bounds.top - font.height]
|
13
|
+
draw_text "This is also in the odd page template", :at => [0, 0]
|
14
|
+
end
|
15
|
+
|
16
|
+
create_stamp("even_page_template") do
|
17
|
+
draw_text "This is the even page template",
|
18
|
+
:at => [0, bounds.top - font.height]
|
19
|
+
draw_text "This is also in the even page template", :at => [0, 0]
|
20
|
+
end
|
21
|
+
|
22
|
+
start_new_page
|
23
|
+
stamp("odd_page_template")
|
24
|
+
|
25
|
+
create_stamp("MyStamp") do
|
26
|
+
fill_color("ff0000")
|
27
|
+
fill_circle_at([0, 0], :radius => 20)
|
28
|
+
fill_color("000000")
|
29
|
+
fill_circle_at([10, 10], :radius => 20)
|
30
|
+
end
|
31
|
+
|
32
|
+
10.times do |i|
|
33
|
+
10.times do |j|
|
34
|
+
stamp_at("MyStamp", [100 + j * 50, bounds.top - 100 - i * 50])
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
4.times do |i|
|
39
|
+
start_new_page
|
40
|
+
stamp("#{i % 2 == 0 ? 'even' : 'odd'}_page_template")
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# This sample demonstrates the use of the :template option when generating
|
4
|
+
# a new Document. The template PDF file is imported into a new document.
|
5
|
+
|
6
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
7
|
+
%w[.. example_helper]))
|
8
|
+
|
9
|
+
filename = "#{Prawn::BASEDIR}/reference_pdfs/curves.pdf"
|
10
|
+
|
11
|
+
Prawn::Document.generate("template.pdf", :template => filename) do
|
12
|
+
text "Previous pages and content imported", :size => 18, :align => :center
|
13
|
+
text "This page and content is brand new", :size => 18, :align => :center
|
14
|
+
end
|
@@ -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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
8
|
+
%w[.. example_helper]))
|
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
|
+
draw_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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
7
|
+
|
8
|
+
pdf = Prawn::Document.new
|
9
|
+
pdf.move_to [100,100]
|
10
|
+
pdf.stroke_curve_to [50,50], :bounds => [[60,90], [60, 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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
8
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
9
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
7
|
+
%w[.. example_helper]))
|
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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
+
%w[.. example_helper]))
|
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,13 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrates how to use open-uri and Document#image to embed remote image
|
4
|
+
# files.
|
5
|
+
#
|
6
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
7
|
+
%w[.. example_helper]))
|
8
|
+
|
9
|
+
require "open-uri"
|
10
|
+
|
11
|
+
Prawn::Document.generate("remote_images.pdf") do
|
12
|
+
image open("http://prawn.majesticseacreature.com/images/prawn.png")
|
13
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
2
|
+
%w[.. example_helper]))
|
3
|
+
|
4
|
+
def radian(degree)
|
5
|
+
Math::PI/180*degree
|
6
|
+
end
|
7
|
+
|
8
|
+
def point_on_circle(center, radius, degrees)
|
9
|
+
[center[0] + radius*(Math.cos(radian(degrees))), center[1] - radius*(Math.sin(radian(degrees)))]
|
10
|
+
end
|
11
|
+
|
12
|
+
pdf = Prawn::Document.new
|
13
|
+
|
14
|
+
pentagon_points = (0..4).map{|i| point_on_circle([200, 400], 100, i * 72)}
|
15
|
+
pentagram_points = [0, 2, 4, 1, 3].map{|i| pentagon_points[i]}
|
16
|
+
pdf.stroke_rounded_polygon(20, *pentagram_points)
|
17
|
+
pdf.fill_and_stroke_rounded_polygon(10, [100, 250], [200, 300], [300, 250],
|
18
|
+
[300, 150], [200, 100], [100, 150])
|
19
|
+
|
20
|
+
pdf.render_file "rounded_polygon.pdf"
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Rounded rectangle example demonstrating both stroke and stroke and fill.
|
4
|
+
# A rectangle with rounded join_style is added just for comparison.
|
5
|
+
#
|
6
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
7
|
+
%w[.. example_helper]))
|
8
|
+
|
9
|
+
pdf = Prawn::Document.new
|
10
|
+
pdf.font_size 8
|
11
|
+
pdf.draw_text "a stroked rounded rectangle:", :at => [30, 575]
|
12
|
+
pdf.stroke_rounded_rectangle([50, 550], 50, 100, 10)
|
13
|
+
pdf.draw_text "a stroked and filled rounded rectangle:", :at => [180, 575]
|
14
|
+
pdf.fill_and_stroke_rounded_rectangle([200, 550], 50, 100, 10)
|
15
|
+
pdf.draw_text "a regular rectangle with rounded join style;", :at => [330, 575]
|
16
|
+
pdf.draw_text "needs thick line width for similar result:", :at => [330, 565]
|
17
|
+
pdf.join_style :round
|
18
|
+
pdf.line_width 10
|
19
|
+
pdf.stroke_rectangle([350, 550], 50, 100)
|
20
|
+
|
21
|
+
pdf.render_file "rounded_rectangle.pdf"
|
@@ -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
|
+
require File.expand_path(File.join(File.dirname(__FILE__),
|
7
|
+
%w[.. example_helper]))
|
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
|