piglop-prawn 0.10.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +340 -0
- data/HACKING +49 -0
- data/LICENSE +56 -0
- data/README +140 -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/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 +43 -0
- data/examples/bounding_box/indentation.rb +34 -0
- data/examples/bounding_box/russian_boxes.rb +36 -0
- data/examples/bounding_box/stretched_nesting.rb +67 -0
- data/examples/example_helper.rb +4 -0
- data/examples/general/background.rb +23 -0
- data/examples/general/canvas.rb +15 -0
- data/examples/general/context_sensitive_headers.rb +37 -0
- data/examples/general/float.rb +11 -0
- data/examples/general/margin.rb +36 -0
- data/examples/general/measurement_units.rb +51 -0
- data/examples/general/metadata-info.rb +16 -0
- data/examples/general/multi_page_layout.rb +18 -0
- data/examples/general/outlines.rb +50 -0
- data/examples/general/page_geometry.rb +31 -0
- data/examples/general/page_numbering.rb +15 -0
- data/examples/general/repeaters.rb +47 -0
- data/examples/general/stamp.rb +41 -0
- data/examples/general/templates.rb +13 -0
- data/examples/graphics/basic_images.rb +23 -0
- data/examples/graphics/cmyk.rb +12 -0
- data/examples/graphics/curves.rb +11 -0
- data/examples/graphics/hexagon.rb +13 -0
- data/examples/graphics/image_fit.rb +15 -0
- data/examples/graphics/image_flow.rb +37 -0
- data/examples/graphics/image_position.rb +17 -0
- data/examples/graphics/line.rb +32 -0
- data/examples/graphics/png_types.rb +22 -0
- data/examples/graphics/polygons.rb +16 -0
- data/examples/graphics/remote_images.rb +12 -0
- data/examples/graphics/rounded_polygons.rb +19 -0
- data/examples/graphics/rounded_rectangle.rb +20 -0
- data/examples/graphics/ruport_style_helpers.rb +19 -0
- data/examples/graphics/stroke_bounds.rb +20 -0
- data/examples/graphics/stroke_cap_and_join.rb +45 -0
- data/examples/graphics/stroke_dash.rb +42 -0
- data/examples/graphics/transformations.rb +52 -0
- data/examples/graphics/transparency.rb +26 -0
- data/examples/m17n/chinese_text_wrapping.rb +17 -0
- data/examples/m17n/euro.rb +15 -0
- data/examples/m17n/sjis.rb +28 -0
- data/examples/m17n/utf8.rb +13 -0
- data/examples/m17n/win_ansi_charset.rb +54 -0
- data/examples/security/hello_foo.rb +8 -0
- data/examples/table/bill.rb +53 -0
- data/examples/table/cell.rb +12 -0
- data/examples/table/checkerboard.rb +22 -0
- data/examples/table/header.rb +14 -0
- data/examples/table/inline_format_table.rb +12 -0
- data/examples/table/multi_page_table.rb +9 -0
- data/examples/table/simple_table.rb +24 -0
- data/examples/table/subtable.rb +12 -0
- data/examples/table/widths.rb +20 -0
- data/examples/text/alignment.rb +18 -0
- data/examples/text/dfont.rb +48 -0
- data/examples/text/family_based_styling.rb +24 -0
- data/examples/text/font_calculations.rb +91 -0
- data/examples/text/font_size.rb +33 -0
- data/examples/text/hyphenation.rb +45 -0
- data/examples/text/indent_paragraphs.rb +18 -0
- data/examples/text/inline_format.rb +72 -0
- data/examples/text/kerning.rb +30 -0
- data/examples/text/rotated.rb +98 -0
- data/examples/text/shaped_text_box.rb +31 -0
- data/examples/text/simple_text.rb +17 -0
- data/examples/text/simple_text_ttf.rb +17 -0
- data/examples/text/text_box.rb +88 -0
- data/examples/text/text_box_returning_excess.rb +51 -0
- data/examples/text/text_flow.rb +67 -0
- data/lib/prawn/compatibility.rb +51 -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 +84 -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 +219 -0
- data/lib/prawn/core/page.rb +179 -0
- data/lib/prawn/core/pdf_object.rb +83 -0
- data/lib/prawn/core/reference.rb +112 -0
- data/lib/prawn/core/text/formatted/arranger.rb +260 -0
- data/lib/prawn/core/text/formatted/line_wrap.rb +127 -0
- data/lib/prawn/core/text/formatted/wrap.rb +113 -0
- data/lib/prawn/core/text/line_wrap.rb +198 -0
- data/lib/prawn/core/text/wrap.rb +80 -0
- data/lib/prawn/core/text.rb +115 -0
- data/lib/prawn/core.rb +89 -0
- data/lib/prawn/document/bounding_box.rb +425 -0
- data/lib/prawn/document/graphics_state.rb +48 -0
- data/lib/prawn/document/internals.rb +176 -0
- data/lib/prawn/document/page_geometry.rb +136 -0
- data/lib/prawn/document/snapshot.rb +87 -0
- data/lib/prawn/document.rb +573 -0
- data/lib/prawn/encoding.rb +121 -0
- data/lib/prawn/errors.rb +94 -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/font.rb +342 -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/graphics.rb +321 -0
- data/lib/prawn/images/jpg.rb +46 -0
- data/lib/prawn/images/png.rb +226 -0
- data/lib/prawn/images.rb +348 -0
- data/lib/prawn/measurement_extensions.rb +46 -0
- data/lib/prawn/measurements.rb +71 -0
- data/lib/prawn/outline.rb +278 -0
- data/lib/prawn/repeater.rb +129 -0
- data/lib/prawn/security/arcfour.rb +51 -0
- data/lib/prawn/security.rb +262 -0
- data/lib/prawn/stamp.rb +126 -0
- data/lib/prawn/table/accessors.rb +180 -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 +128 -0
- data/lib/prawn/table/cell.rb +330 -0
- data/lib/prawn/table.rb +421 -0
- data/lib/prawn/text/box.rb +380 -0
- data/lib/prawn/text/formatted/box.rb +215 -0
- data/lib/prawn/text/formatted/fragment.rb +127 -0
- data/lib/prawn/text/formatted/parser.rb +202 -0
- data/lib/prawn/text/formatted.rb +4 -0
- data/lib/prawn/text.rb +442 -0
- data/lib/prawn.rb +25 -0
- data/spec/annotations_spec.rb +90 -0
- data/spec/bounding_box_spec.rb +190 -0
- data/spec/cell_spec.rb +337 -0
- data/spec/destinations_spec.rb +15 -0
- data/spec/document_spec.rb +461 -0
- data/spec/font_spec.rb +314 -0
- data/spec/formatted_text_arranger_spec.rb +400 -0
- data/spec/formatted_text_box_spec.rb +659 -0
- data/spec/formatted_text_fragment_spec.rb +211 -0
- data/spec/graphics_spec.rb +446 -0
- data/spec/images_spec.rb +96 -0
- data/spec/inline_formatted_text_parser_spec.rb +446 -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 +229 -0
- data/spec/pdf_object_spec.rb +127 -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 +138 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/stamp_spec.rb +108 -0
- data/spec/stroke_styles_spec.rb +163 -0
- data/spec/table_spec.rb +583 -0
- data/spec/template_spec.rb +158 -0
- data/spec/text_at_spec.rb +119 -0
- data/spec/text_box_spec.rb +675 -0
- data/spec/text_spacing_spec.rb +57 -0
- data/spec/text_spec.rb +328 -0
- data/spec/text_with_inline_formatting_spec.rb +193 -0
- data/spec/transparency_spec.rb +75 -0
- data/vendor/pdf-inspector/README +18 -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/pdf-inspector/lib/pdf/inspector.rb +26 -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/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/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.rb +18 -0
- data/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -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/cmap.rb +34 -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/glyf.rb +64 -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/format0.rb +62 -0
- data/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -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/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/post.rb +91 -0
- data/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
- data/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
- data/vendor/ttfunk/lib/ttfunk.rb +102 -0
- metadata +364 -0
@@ -0,0 +1,47 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
9
|
+
|
10
|
+
Prawn::Document.generate("repeat.pdf", :skip_page_creation => true) do
|
11
|
+
|
12
|
+
repeat :all do
|
13
|
+
draw_text "ALLLLLL", :at => bounds.top_left
|
14
|
+
end
|
15
|
+
|
16
|
+
repeat :odd do
|
17
|
+
draw_text "ODD", :at => [0,0]
|
18
|
+
end
|
19
|
+
|
20
|
+
repeat :even do
|
21
|
+
draw_text "EVEN", :at => [0,0]
|
22
|
+
end
|
23
|
+
|
24
|
+
repeat [1,2] do
|
25
|
+
draw_text "[1,2]", :at => [100,0]
|
26
|
+
end
|
27
|
+
|
28
|
+
repeat 2..4 do
|
29
|
+
draw_text "2..4", :at => [200,0]
|
30
|
+
end
|
31
|
+
|
32
|
+
repeat(lambda { |pg| pg % 3 == 0 }) do
|
33
|
+
draw_text "Every third", :at => [250, 20]
|
34
|
+
end
|
35
|
+
|
36
|
+
repeat(:all, :dynamic => true) do
|
37
|
+
draw_text page_number, :at => [500, 0]
|
38
|
+
end
|
39
|
+
|
40
|
+
10.times do
|
41
|
+
start_new_page
|
42
|
+
draw_text "A wonderful page", :at => [400,400]
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrate use of stamps
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate("stamp.pdf", :skip_page_creation => true) do
|
8
|
+
|
9
|
+
create_stamp("odd_page_template") do
|
10
|
+
draw_text "This is the odd page template",
|
11
|
+
:at => [0, bounds.top - font.height]
|
12
|
+
draw_text "This is also in the odd page template", :at => [0, 0]
|
13
|
+
end
|
14
|
+
|
15
|
+
create_stamp("even_page_template") do
|
16
|
+
draw_text "This is the even page template",
|
17
|
+
:at => [0, bounds.top - font.height]
|
18
|
+
draw_text "This is also in the even page template", :at => [0, 0]
|
19
|
+
end
|
20
|
+
|
21
|
+
start_new_page
|
22
|
+
stamp("odd_page_template")
|
23
|
+
|
24
|
+
create_stamp("MyStamp") do
|
25
|
+
fill_color("ff0000")
|
26
|
+
fill_circle_at([0, 0], :radius => 20)
|
27
|
+
fill_color("000000")
|
28
|
+
fill_circle_at([10, 10], :radius => 20)
|
29
|
+
end
|
30
|
+
|
31
|
+
10.times do |i|
|
32
|
+
10.times do |j|
|
33
|
+
stamp_at("MyStamp", [100 + j * 50, bounds.top - 100 - i * 50])
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
4.times do |i|
|
38
|
+
start_new_page
|
39
|
+
stamp("#{i % 2 == 0 ? 'even' : 'odd'}_page_template")
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,13 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
7
|
+
|
8
|
+
filename = "#{Prawn::BASEDIR}/reference_pdfs/curves.pdf"
|
9
|
+
|
10
|
+
Prawn::Document.generate("template.pdf", :template => filename) do
|
11
|
+
text "Previous pages and content imported", :size => 18, :align => :center
|
12
|
+
text "This page and content is brand new", :size => 18, :align => :center
|
13
|
+
end
|
@@ -0,0 +1,23 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
8
|
+
|
9
|
+
Prawn::Document.generate("basic_images.pdf", :page_layout => :landscape) do
|
10
|
+
stef = "#{Prawn::BASEDIR}/data/images/stef.jpg"
|
11
|
+
image stef, :at => [75, 75]
|
12
|
+
|
13
|
+
stef = "#{Prawn::BASEDIR}/data/images/stef.jpg"
|
14
|
+
image stef, :at => [500, 400], :width => 200, :height => 200
|
15
|
+
|
16
|
+
draw_text "Please enjoy the pigs", :size => 36, :at => [200,15]
|
17
|
+
|
18
|
+
ruport = "#{Prawn::BASEDIR}/data/images/ruport.png"
|
19
|
+
image ruport, :at => [400,200], :width => 150
|
20
|
+
|
21
|
+
ruport = "#{Prawn::BASEDIR}/data/images/ruport_transparent.png"
|
22
|
+
image ruport, :at => [50,525]
|
23
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrates Prawn's support for CMYK images and colors.
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate("cmyk.pdf", :page_layout => :landscape) do
|
8
|
+
fill_color 50, 100, 0, 0
|
9
|
+
text "Prawn is CYMK Friendly"
|
10
|
+
fractal = "#{Prawn::BASEDIR}/data/images/fractal.jpg"
|
11
|
+
image fractal, :at => [50,450]
|
12
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrates simple curve and circle usage
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
pdf = Prawn::Document.new
|
8
|
+
pdf.move_to [100,100]
|
9
|
+
pdf.stroke_curve_to [50,50], :bounds => [[60,90], [60, 90]]
|
10
|
+
pdf.fill_circle_at [200,200], :radius => 10
|
11
|
+
pdf.render_file "curves.pdf"
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Draws and fills a Hexagon using Document#polygon
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
pdf = Prawn::Document.new
|
8
|
+
|
9
|
+
pdf.fill_color "ff0000"
|
10
|
+
pdf.fill_polygon [100, 250], [200, 300], [300, 250],
|
11
|
+
[300, 150], [200, 100], [100, 150]
|
12
|
+
|
13
|
+
pdf.render_file "hexagon.pdf"
|
@@ -0,0 +1,15 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
8
|
+
|
9
|
+
Prawn::Document.generate("image_fit.pdf", :page_layout => :landscape) do
|
10
|
+
|
11
|
+
pigs = "#{Prawn::BASEDIR}/data/images/pigs.jpg"
|
12
|
+
stroke_rectangle [50,450], 200, 200
|
13
|
+
image pigs, :at => [50,450], :fit => [200,200]
|
14
|
+
|
15
|
+
end
|
@@ -0,0 +1,37 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
9
|
+
|
10
|
+
Prawn::Document.generate("image-flow.pdf", :page_layout => :landscape) do
|
11
|
+
self.font_size = 8
|
12
|
+
stef = "#{Prawn::BASEDIR}/data/images/stef.jpg"
|
13
|
+
|
14
|
+
text "Image at default position with no arguments"
|
15
|
+
|
16
|
+
move_down 10
|
17
|
+
|
18
|
+
image stef
|
19
|
+
|
20
|
+
text "Centered image flowing"
|
21
|
+
|
22
|
+
image stef, :position => :center
|
23
|
+
|
24
|
+
text "Right aligned image flowing"
|
25
|
+
|
26
|
+
image stef, :position => :right
|
27
|
+
|
28
|
+
text "Explicitly left aligned image flowing"
|
29
|
+
|
30
|
+
move_down 10
|
31
|
+
|
32
|
+
image stef, :position => :left
|
33
|
+
|
34
|
+
text "Flowing image at x=50"
|
35
|
+
|
36
|
+
image stef, :position => 50
|
37
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrates vertical and horizontal positioning of images.
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate("image_position.pdf", :page_layout => :landscape) do
|
8
|
+
|
9
|
+
dice = "#{Prawn::BASEDIR}/data/images/dice.png"
|
10
|
+
|
11
|
+
image dice, :scale => 0.2, :position => :left, :vposition => :top
|
12
|
+
image dice, :scale => 0.2, :position => :right, :vposition => :top
|
13
|
+
image dice, :scale => 0.2, :position => :center, :vposition => :top
|
14
|
+
image dice, :scale => 0.2, :position => :center, :vposition => :center
|
15
|
+
image dice, :scale => 0.2, :position => :center, :vposition => :bottom
|
16
|
+
|
17
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# The very first Prawn example. Here for nostalgia's sake.
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
pdf = Prawn::Document.new
|
8
|
+
pdf.line_width = 10
|
9
|
+
|
10
|
+
[[100,741,100,641],
|
11
|
+
[100,691,150,691],
|
12
|
+
[150,741,150,641],
|
13
|
+
[200,741,200,641],
|
14
|
+
[100,600,100,500],
|
15
|
+
[100,600,150,550],
|
16
|
+
[100,550,150,550],
|
17
|
+
[175,600,175,500],
|
18
|
+
[175,600,225,550],
|
19
|
+
[175,550,225,550],
|
20
|
+
[175,550,225,500],
|
21
|
+
[275,600,250,500],
|
22
|
+
[275,600,300,500],
|
23
|
+
[250,550,300,550],
|
24
|
+
[315,600,350,500],
|
25
|
+
[350,500,365,550],
|
26
|
+
[365,550,380,500],
|
27
|
+
[380,500,415,600],
|
28
|
+
[430,600,430,500],
|
29
|
+
[430,600,465,500],
|
30
|
+
[465,600,465,500]].each { |points| pdf.stroke_line(*points) }
|
31
|
+
|
32
|
+
pdf.render_file "lines.pdf"
|
@@ -0,0 +1,22 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
7
|
+
|
8
|
+
images = [
|
9
|
+
["Type 0", "#{Prawn::BASEDIR}/data/images/web-links.png"],
|
10
|
+
["Type 2", "#{Prawn::BASEDIR}/data/images/ruport.png"],
|
11
|
+
["Type 3", "#{Prawn::BASEDIR}/data/images/rails.png"],
|
12
|
+
["Type 4", "#{Prawn::BASEDIR}/data/images/page_white_text.png"],
|
13
|
+
["Type 6", "#{Prawn::BASEDIR}/data/images/dice.png"],
|
14
|
+
]
|
15
|
+
|
16
|
+
Prawn::Document.generate("png_types.pdf", :page_size => "A5") do
|
17
|
+
images.each do |header, file|
|
18
|
+
start_new_page unless header.include?("0")
|
19
|
+
text header
|
20
|
+
image file, :at => [50,450]
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Basic polygon drawing example. See also: hexagon.rb
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
pdf = Prawn::Document.new
|
8
|
+
|
9
|
+
10.times do |i|
|
10
|
+
pdf.stroke_polygon [ 50 + i*25, 50 + i*25],
|
11
|
+
[100 + i*25, 50 + i*25],
|
12
|
+
[100 + i*25, 100 + i*25]
|
13
|
+
pdf.stroke_rectangle [0,600], 5*i, 10*i
|
14
|
+
end
|
15
|
+
|
16
|
+
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
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
7
|
+
|
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,19 @@
|
|
1
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
2
|
+
|
3
|
+
def radian(degree)
|
4
|
+
Math::PI/180*degree
|
5
|
+
end
|
6
|
+
|
7
|
+
def point_on_circle(center, radius, degrees)
|
8
|
+
[center[0] + radius*(Math.cos(radian(degrees))), center[1] - radius*(Math.sin(radian(degrees)))]
|
9
|
+
end
|
10
|
+
|
11
|
+
pdf = Prawn::Document.new
|
12
|
+
|
13
|
+
pentagon_points = (0..4).map{|i| point_on_circle([200, 400], 100, i * 72)}
|
14
|
+
pentagram_points = [0, 2, 4, 1, 3].map{|i| pentagon_points[i]}
|
15
|
+
pdf.stroke_rounded_polygon(20, *pentagram_points)
|
16
|
+
pdf.fill_and_stroke_rounded_polygon(10, [100, 250], [200, 300], [300, 250],
|
17
|
+
[300, 150], [200, 100], [100, 150])
|
18
|
+
|
19
|
+
pdf.render_file "rounded_polygon.pdf"
|
@@ -0,0 +1,20 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
7
|
+
|
8
|
+
pdf = Prawn::Document.new
|
9
|
+
pdf.font_size 8
|
10
|
+
pdf.draw_text "a stroked rounded rectangle:", :at => [30, 575]
|
11
|
+
pdf.stroke_rounded_rectangle([50, 550], 50, 100, 10)
|
12
|
+
pdf.draw_text "a stroked and filled rounded rectangle:", :at => [180, 575]
|
13
|
+
pdf.fill_and_stroke_rounded_rectangle([200, 550], 50, 100, 10)
|
14
|
+
pdf.draw_text "a regular rectangle with rounded join style;", :at => [330, 575]
|
15
|
+
pdf.draw_text "needs thick line width for similar result:", :at => [330, 565]
|
16
|
+
pdf.join_style :round
|
17
|
+
pdf.line_width 10
|
18
|
+
pdf.stroke_rectangle([350, 550], 50, 100)
|
19
|
+
|
20
|
+
pdf.render_file "rounded_rectangle.pdf"
|
@@ -0,0 +1,19 @@
|
|
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.dirname(__FILE__)}/../example_helper.rb"
|
7
|
+
|
8
|
+
# Demonstrates some features stolen from Ruport::Formatter::PDF
|
9
|
+
Prawn::Document.generate("ruport.pdf") do
|
10
|
+
move_down 50
|
11
|
+
# TODO: Figure out where to set the y cursor to.
|
12
|
+
stroke_horizontal_rule
|
13
|
+
text "Hi there"
|
14
|
+
pad(50) { text "I'm Padded" }
|
15
|
+
text "I'm far away"
|
16
|
+
stroke_horizontal_line 50, 100
|
17
|
+
stroke_horizontal_line 50, 100, :at => 300
|
18
|
+
stroke_vertical_line 300, 50, :at => 250
|
19
|
+
end
|
@@ -0,0 +1,20 @@
|
|
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
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
12
|
+
|
13
|
+
Prawn::Document.generate("stroke_bounds.pdf") do
|
14
|
+
stroke_bounds
|
15
|
+
|
16
|
+
bounding_box [100,500], :width => 200, :height => 300 do
|
17
|
+
text "Hey there, here's some text. " * 10
|
18
|
+
stroke_bounds
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Stroke dashing can be applied to any line or curve
|
4
|
+
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate("stroke_cap_and_join.pdf") do
|
8
|
+
self.line_width = 25
|
9
|
+
x0 = bounds.left + 100
|
10
|
+
x1 = bounds.left + 200
|
11
|
+
x2 = bounds.left + 300
|
12
|
+
|
13
|
+
y = bounds.top - 125
|
14
|
+
|
15
|
+
3.times do |i|
|
16
|
+
case i
|
17
|
+
when 0
|
18
|
+
self.join_style = :miter
|
19
|
+
when 1
|
20
|
+
self.join_style = :round
|
21
|
+
when 2
|
22
|
+
self.join_style = :bevel
|
23
|
+
end
|
24
|
+
stroke do
|
25
|
+
move_to(x0, y)
|
26
|
+
line_to(x1, y + 100)
|
27
|
+
line_to(x2, y)
|
28
|
+
end
|
29
|
+
y -= 100
|
30
|
+
end
|
31
|
+
|
32
|
+
|
33
|
+
3.times do |i|
|
34
|
+
case i
|
35
|
+
when 0
|
36
|
+
self.cap_style = :butt
|
37
|
+
when 1
|
38
|
+
self.cap_style = :round
|
39
|
+
when 2
|
40
|
+
self.cap_style = :projecting_square
|
41
|
+
end
|
42
|
+
stroke_line([x0, y, x2, y])
|
43
|
+
y -= 30
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Stroke dashing can be applied to any line or curve
|
4
|
+
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate("stroke_dash.pdf") do
|
8
|
+
self.line_width = 1
|
9
|
+
base_y = bounds.top
|
10
|
+
|
11
|
+
100.times do |i|
|
12
|
+
length = i / 4 + 1
|
13
|
+
# space between dashes same length as dash
|
14
|
+
space = length
|
15
|
+
# start with dash
|
16
|
+
phase = 0
|
17
|
+
case i % 4
|
18
|
+
when 0
|
19
|
+
base_y -= 10
|
20
|
+
when 1
|
21
|
+
# start with space between dashes
|
22
|
+
phase = length
|
23
|
+
when 2
|
24
|
+
base_y -= 10
|
25
|
+
# space between dashes half as long as dash
|
26
|
+
space = length * 0.5
|
27
|
+
when 3
|
28
|
+
# space between dashes half as long as dash
|
29
|
+
space = length * 0.5
|
30
|
+
# start with space between dashes
|
31
|
+
phase = length
|
32
|
+
end
|
33
|
+
dash(length, :space => space, :phase => phase)
|
34
|
+
points = [bounds.left, base_y - 2 * i, bounds.right, base_y - 2 * i]
|
35
|
+
stroke_line(points)
|
36
|
+
end
|
37
|
+
i = 100
|
38
|
+
base_y -= 10
|
39
|
+
undash
|
40
|
+
points = [bounds.left, base_y - 2 * i, bounds.right, base_y - 2 * i]
|
41
|
+
stroke_line(points)
|
42
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrates transformations
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate "transformations.pdf" do |pdf|
|
8
|
+
width = 50
|
9
|
+
height = 100
|
10
|
+
|
11
|
+
# ROTATION
|
12
|
+
x = 50
|
13
|
+
y = pdf.bounds.top - 50
|
14
|
+
|
15
|
+
pdf.stroke_rectangle([x, y], width, height)
|
16
|
+
pdf.draw_text("reference rectangle", :at => [x + width, y - height])
|
17
|
+
pdf.rotate(30, :origin => [x, y]) do
|
18
|
+
pdf.stroke_rectangle([x, y], width, height)
|
19
|
+
pdf.draw_text("rectangle rotated around upper-left corner", :at => [x + width, y - height])
|
20
|
+
end
|
21
|
+
|
22
|
+
x = 50
|
23
|
+
y = pdf.bounds.top - 200
|
24
|
+
|
25
|
+
pdf.stroke_rectangle([x, y], width, height)
|
26
|
+
pdf.draw_text("reference rectangle", :at => [x + width, y - height])
|
27
|
+
pdf.rotate(30, :origin => [x + width / 2, y - height / 2]) do
|
28
|
+
pdf.stroke_rectangle([x, y], width, height)
|
29
|
+
pdf.draw_text("rectangle rotated around center", :at => [x + width, y - height])
|
30
|
+
end
|
31
|
+
|
32
|
+
# SCALE
|
33
|
+
x = 0
|
34
|
+
y = pdf.bounds.top - 500
|
35
|
+
|
36
|
+
pdf.stroke_rectangle([x, y], width, height)
|
37
|
+
pdf.draw_text("reference rectangle", :at => [x + width, y - height])
|
38
|
+
pdf.scale(2, :origin => [x, y]) do
|
39
|
+
pdf.stroke_rectangle([x, y], width, height)
|
40
|
+
pdf.draw_text("rectangle scaled from upper-left corner", :at => [x + width, y - height])
|
41
|
+
end
|
42
|
+
|
43
|
+
x = 150
|
44
|
+
y = pdf.bounds.top - 400
|
45
|
+
|
46
|
+
pdf.stroke_rectangle([x, y], width, height)
|
47
|
+
pdf.draw_text("reference rectangle", :at => [x + width, y - height])
|
48
|
+
pdf.scale(2, :origin => [x + width / 2, y - height / 2]) do
|
49
|
+
pdf.stroke_rectangle([x, y], width, height)
|
50
|
+
pdf.draw_text("rectangle scaled from center", :at => [x + width, y - height])
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Demonstrate use of transparency
|
4
|
+
#
|
5
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
6
|
+
|
7
|
+
Prawn::Document.generate("transparency.pdf") do
|
8
|
+
fill_color("ff0000")
|
9
|
+
fill_circle_at([200, 200], :radius => 200)
|
10
|
+
transparent(0.5, 1) do
|
11
|
+
fill_color("000000")
|
12
|
+
stroke_color("ffffff")
|
13
|
+
fill_and_stroke_circle_at([300, 300], :radius => 200)
|
14
|
+
fill_color("ffffff")
|
15
|
+
text "transparency " * 150, :size => 18
|
16
|
+
end
|
17
|
+
|
18
|
+
start_new_page
|
19
|
+
|
20
|
+
fill_color("000000")
|
21
|
+
fill_rectangle([0, bounds.top], 200, 100)
|
22
|
+
transparent(0.5) do
|
23
|
+
fill_color("ff0000")
|
24
|
+
fill_rectangle([100, bounds.top - 50], 200, 100)
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
#
|
4
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
5
|
+
|
6
|
+
start = Time.now
|
7
|
+
Prawn::Document.generate("chinese_flow.pdf") do
|
8
|
+
font "#{Prawn::BASEDIR}/data/fonts/gkai00mp.ttf"
|
9
|
+
font_size 16
|
10
|
+
|
11
|
+
long_text = "更可怕的是,同质化竞争对手可以按照URL中后面这个ID来遍历您的DB中的内容,写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事,这样的话,你就非常被动了。写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事"
|
12
|
+
text long_text
|
13
|
+
|
14
|
+
# be sure to restore space based wrapping when dealing with latin scripts
|
15
|
+
long_text = "Text with some spaces " * 25
|
16
|
+
text long_text
|
17
|
+
end
|
@@ -0,0 +1,15 @@
|
|
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
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
12
|
+
|
13
|
+
Prawn::Document.generate "euro.pdf" do
|
14
|
+
text "A Euro! € ©", :size => 32
|
15
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# FIXME: Introducing TTFunk into Prawn broke this example and a cooresponding
|
4
|
+
# test. Ticket: #139
|
5
|
+
#
|
6
|
+
# Tests passing non utf-8 data into Prawns text function. Should
|
7
|
+
# be transparently converted to utf-8 and rendered as usual.
|
8
|
+
#
|
9
|
+
# NOTE: only works on ruby1.9 compatible VMs, and requires the current
|
10
|
+
# font to include japanese glyphs. On 1.8.x comaptible VMs, an exception
|
11
|
+
# will be raised.
|
12
|
+
|
13
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
14
|
+
|
15
|
+
begin
|
16
|
+
ruby_19 do
|
17
|
+
datafile = File.join(File.dirname(__FILE__), "..", "..", "data",
|
18
|
+
"shift_jis_text.txt")
|
19
|
+
sjis_str = File.open(datafile, "r:shift_jis") { |f| f.gets }
|
20
|
+
|
21
|
+
Prawn::Document.generate("sjis.pdf") do
|
22
|
+
font "#{Prawn::BASEDIR}/data/fonts/gkai00mp.ttf"
|
23
|
+
text sjis_str
|
24
|
+
end
|
25
|
+
end
|
26
|
+
rescue
|
27
|
+
puts "\n FIXME: SJIS Broken due to TTFunk integration."
|
28
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# Shows that Prawn works out of the box with UTF-8 text, so long as you use
|
4
|
+
# a TTF file with the necessary glyphs for your content.
|
5
|
+
#
|
6
|
+
require "#{File.dirname(__FILE__)}/../example_helper.rb"
|
7
|
+
|
8
|
+
Prawn::Document.generate("utf8.pdf") do
|
9
|
+
font "#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf"
|
10
|
+
text "ὕαλον ϕαγεῖν δύναμαι· τοῦτο οὔ με βλάπτει." * 20
|
11
|
+
end
|
12
|
+
|
13
|
+
|