piglop-prawn 0.10.2.1
Sign up to get free protection for your applications and to get access to all the features.
- 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,659 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
|
4
|
+
|
5
|
+
describe "Text::Formatted::Box#extensions" do
|
6
|
+
it "should be able to override default line wrapping" do
|
7
|
+
create_pdf
|
8
|
+
Prawn::Text::Formatted::Box.extensions << TestFormattedWrapOverride
|
9
|
+
@pdf.formatted_text_box([{ :text => "hello world" }], {})
|
10
|
+
text = PDF::Inspector::Text.analyze(@pdf.render)
|
11
|
+
text.strings[0].should == "all your base are belong to us"
|
12
|
+
Prawn::Text::Formatted::Box.extensions.delete(TestFormattedWrapOverride)
|
13
|
+
end
|
14
|
+
it "overriding Text::Box line wrapping should not affect " +
|
15
|
+
"Text::Formatted::Box wrapping" do
|
16
|
+
create_pdf
|
17
|
+
Prawn::Text::Box.extensions << TestWrapOverride
|
18
|
+
@pdf.formatted_text_box([{ :text => "hello world" }], {})
|
19
|
+
text = PDF::Inspector::Text.analyze(@pdf.render)
|
20
|
+
text.strings[0].should == "hello world"
|
21
|
+
Prawn::Text::Box.extensions.delete(TestWrapOverride)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "Text::Formatted::Box#render" do
|
26
|
+
it "should handle newlines" do
|
27
|
+
create_pdf
|
28
|
+
array = [{ :text => "hello\nworld"}]
|
29
|
+
options = { :document => @pdf }
|
30
|
+
text_box = Prawn::Text::Formatted::Box.new(array, options)
|
31
|
+
text_box.render
|
32
|
+
text_box.text.should == "hello\nworld"
|
33
|
+
end
|
34
|
+
it "should omit spaces from the beginning of the line" do
|
35
|
+
create_pdf
|
36
|
+
array = [{ :text => " hello\n world"}]
|
37
|
+
options = { :document => @pdf }
|
38
|
+
text_box = Prawn::Text::Formatted::Box.new(array, options)
|
39
|
+
text_box.render
|
40
|
+
text_box.text.should == "hello\nworld"
|
41
|
+
end
|
42
|
+
it "should omit spaces from the end of the line" do
|
43
|
+
create_pdf
|
44
|
+
array = [{ :text => "hello \nworld "}]
|
45
|
+
options = { :document => @pdf }
|
46
|
+
text_box = Prawn::Text::Formatted::Box.new(array, options)
|
47
|
+
text_box.render
|
48
|
+
text_box.text.should == "hello\nworld"
|
49
|
+
end
|
50
|
+
it "should be okay printing a line of whitespace" do
|
51
|
+
create_pdf
|
52
|
+
array = [{ :text => "hello\n \nworld "}]
|
53
|
+
options = { :document => @pdf }
|
54
|
+
text_box = Prawn::Text::Formatted::Box.new(array, options)
|
55
|
+
text_box.render
|
56
|
+
text_box.text.should == "hello\n\nworld"
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe "Text::Formatted::Box#render with :align => :justify" do
|
61
|
+
it "should draw the character spacing to the document" do
|
62
|
+
create_pdf
|
63
|
+
array = [{ :text => "hello world " * 10}]
|
64
|
+
options = { :document => @pdf, :align => :justify }
|
65
|
+
text_box = Prawn::Text::Formatted::Box.new(array, options)
|
66
|
+
text_box.render
|
67
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
68
|
+
contents.word_spacing[0].should.be > 0
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe "Text::Formatted::Box#height without leading" do
|
73
|
+
it "should equal the sum of the height of each line" do
|
74
|
+
create_pdf
|
75
|
+
format_array = [{ :text => "line 1" },
|
76
|
+
{ :text => "\n" },
|
77
|
+
{ :text => "line 2" }]
|
78
|
+
options = { :document => @pdf }
|
79
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, options)
|
80
|
+
text_box.render
|
81
|
+
text_box.height.should == @pdf.font.height * 2
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
describe "Text::Formatted::Box#height with leading" do
|
86
|
+
it "should equal the sum of the height of each line" +
|
87
|
+
" plus all but the last leading" do
|
88
|
+
create_pdf
|
89
|
+
format_array = [{ :text => "line 1" },
|
90
|
+
{ :text => "\n" },
|
91
|
+
{ :text => "line 2" }]
|
92
|
+
leading = 12
|
93
|
+
options = { :document => @pdf, :leading => leading }
|
94
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, options)
|
95
|
+
text_box.render
|
96
|
+
text_box.height.should == @pdf.font.height * 2 + leading
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe "Text::Formatted::Box#render(:single_line => true)" do
|
101
|
+
it "should draw only one line to the page" do
|
102
|
+
create_pdf
|
103
|
+
text = "Oh hai text rect. " * 10
|
104
|
+
format_array = [:text => text]
|
105
|
+
options = { :document => @pdf,
|
106
|
+
:single_line => true }
|
107
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, options)
|
108
|
+
text_box.render
|
109
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
110
|
+
contents.strings.length.should == 1
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
describe "Text::Formatted::Box#render(:dry_run => true)" do
|
115
|
+
it "should not draw any content to the page" do
|
116
|
+
create_pdf
|
117
|
+
text = "Oh hai text rect. " * 10
|
118
|
+
format_array = [:text => text]
|
119
|
+
options = { :document => @pdf }
|
120
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, options)
|
121
|
+
text_box.render(:dry_run => true)
|
122
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
123
|
+
contents.strings.should.be.empty
|
124
|
+
end
|
125
|
+
it "subsequent calls to render should not raise an ArgumentError exception" do
|
126
|
+
create_pdf
|
127
|
+
text = "™©"
|
128
|
+
format_array = [:text => text]
|
129
|
+
options = { :document => @pdf }
|
130
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, options)
|
131
|
+
text_box.render(:dry_run => true)
|
132
|
+
lambda { text_box.render }.should.not.raise(ArgumentError)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe "Text::Formatted::Box#render" do
|
137
|
+
it "should be able to perform fragment callbacks" do
|
138
|
+
create_pdf
|
139
|
+
callback_object = TestFragmentCallback.new
|
140
|
+
callback_object.expects(:draw_border).with(
|
141
|
+
kind_of(Prawn::Text::Formatted::Fragment))
|
142
|
+
array = [{ :text => "hello world " },
|
143
|
+
{ :text => "callback now",
|
144
|
+
:callback => { :object => callback_object,
|
145
|
+
:method => :draw_border } }]
|
146
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
147
|
+
text_box.render
|
148
|
+
end
|
149
|
+
it "should be able to perform fragment callbacks with arguments" do
|
150
|
+
create_pdf
|
151
|
+
callback_object = TestFragmentCallback.new
|
152
|
+
callback_object.expects(:draw_border_with_args).with(
|
153
|
+
kind_of(Prawn::Text::Formatted::Fragment), "something", 7)
|
154
|
+
array = [{ :text => "hello world " },
|
155
|
+
{ :text => "callback now",
|
156
|
+
:callback => { :object => callback_object,
|
157
|
+
:method => :draw_border_with_args,
|
158
|
+
:arguments => ["something", 7] } }]
|
159
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
160
|
+
text_box.render
|
161
|
+
end
|
162
|
+
it "should be able to set the font" do
|
163
|
+
create_pdf
|
164
|
+
array = [{ :text => "this contains " },
|
165
|
+
{ :text => "Times-Bold",
|
166
|
+
:styles => [:bold],
|
167
|
+
:font => "Times-Roman" },
|
168
|
+
{ :text => " text" }]
|
169
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
170
|
+
text_box.render
|
171
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
172
|
+
fonts = contents.font_settings.map { |e| e[:name] }
|
173
|
+
fonts.should == [:Helvetica, :"Times-Bold", :Helvetica]
|
174
|
+
contents.strings[0].should == "this contains "
|
175
|
+
contents.strings[1].should == "Times-Bold"
|
176
|
+
contents.strings[2].should == " text"
|
177
|
+
end
|
178
|
+
it "should be able to set bold" do
|
179
|
+
create_pdf
|
180
|
+
array = [{ :text => "this contains " },
|
181
|
+
{ :text => "bold", :styles => [:bold] },
|
182
|
+
{ :text => " text" }]
|
183
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
184
|
+
text_box.render
|
185
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
186
|
+
fonts = contents.font_settings.map { |e| e[:name] }
|
187
|
+
fonts.should == [:Helvetica, :"Helvetica-Bold", :Helvetica]
|
188
|
+
contents.strings[0].should == "this contains "
|
189
|
+
contents.strings[1].should == "bold"
|
190
|
+
contents.strings[2].should == " text"
|
191
|
+
end
|
192
|
+
it "should be able to set italics" do
|
193
|
+
create_pdf
|
194
|
+
array = [{ :text => "this contains " },
|
195
|
+
{ :text => "italic", :styles => [:italic] },
|
196
|
+
{ :text => " text" }]
|
197
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
198
|
+
text_box.render
|
199
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
200
|
+
fonts = contents.font_settings.map { |e| e[:name] }
|
201
|
+
fonts.should == [:Helvetica, :"Helvetica-Oblique", :Helvetica]
|
202
|
+
end
|
203
|
+
it "should be able to set subscript" do
|
204
|
+
create_pdf
|
205
|
+
array = [{ :text => "this contains " },
|
206
|
+
{ :text => "subscript", :styles => [:subscript] },
|
207
|
+
{ :text => " text" }]
|
208
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
209
|
+
text_box.render
|
210
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
211
|
+
contents.font_settings[0][:size].should == 12
|
212
|
+
contents.font_settings[1][:size].should.be.close(12 * 0.583, 0.0001)
|
213
|
+
end
|
214
|
+
it "should be able to set superscript" do
|
215
|
+
create_pdf
|
216
|
+
array = [{ :text => "this contains " },
|
217
|
+
{ :text => "superscript", :styles => [:superscript] },
|
218
|
+
{ :text => " text" }]
|
219
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
220
|
+
text_box.render
|
221
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
222
|
+
contents.font_settings[0][:size].should == 12
|
223
|
+
contents.font_settings[1][:size].should.be.close(12 * 0.583, 0.0001)
|
224
|
+
end
|
225
|
+
it "should be able to set compound bold and italic text" do
|
226
|
+
create_pdf
|
227
|
+
array = [{ :text => "this contains " },
|
228
|
+
{ :text => "bold italic", :styles => [:bold, :italic] },
|
229
|
+
{ :text => " text" }]
|
230
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
231
|
+
text_box.render
|
232
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
233
|
+
fonts = contents.font_settings.map { |e| e[:name] }
|
234
|
+
fonts.should == [:Helvetica, :"Helvetica-BoldOblique", :Helvetica]
|
235
|
+
end
|
236
|
+
it "should be able to underline" do
|
237
|
+
create_pdf
|
238
|
+
array = [{ :text => "this contains " },
|
239
|
+
{ :text => "underlined", :styles => [:underline] },
|
240
|
+
{ :text => " text" }]
|
241
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
242
|
+
text_box.render
|
243
|
+
line_drawing = PDF::Inspector::Graphics::Line.analyze(@pdf.render)
|
244
|
+
line_drawing.points.length.should == 2
|
245
|
+
end
|
246
|
+
it "should be able to strikethrough" do
|
247
|
+
create_pdf
|
248
|
+
array = [{ :text => "this contains " },
|
249
|
+
{ :text => "struckthrough", :styles => [:strikethrough] },
|
250
|
+
{ :text => " text" }]
|
251
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
252
|
+
text_box.render
|
253
|
+
line_drawing = PDF::Inspector::Graphics::Line.analyze(@pdf.render)
|
254
|
+
line_drawing.points.length.should == 2
|
255
|
+
end
|
256
|
+
it "should be able to add URL links" do
|
257
|
+
create_pdf
|
258
|
+
@pdf.expects(:link_annotation).with(kind_of(Array), :Border => [0,0,0],
|
259
|
+
:A => { :Type => :Action, :S => :URI, :URI => "http://example.com" })
|
260
|
+
array = [{ :text => "click " },
|
261
|
+
{ :text => "here", :link => "http://example.com" },
|
262
|
+
{ :text => " to visit" }]
|
263
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
264
|
+
text_box.render
|
265
|
+
end
|
266
|
+
it "should be able to add destination links" do
|
267
|
+
create_pdf
|
268
|
+
@pdf.expects(:link_annotation).with(kind_of(Array), :Border => [0,0,0],
|
269
|
+
:Dest => "ToC")
|
270
|
+
array = [{ :text => "Go to the " },
|
271
|
+
{ :text => "Table of Contents", :anchor => "ToC" }]
|
272
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
273
|
+
text_box.render
|
274
|
+
end
|
275
|
+
it "should be able to set font size" do
|
276
|
+
create_pdf
|
277
|
+
array = [{ :text => "this contains " },
|
278
|
+
{ :text => "sized", :size => 24 },
|
279
|
+
{ :text => " text" }]
|
280
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
281
|
+
text_box.render
|
282
|
+
contents = PDF::Inspector::Text.analyze(@pdf.render)
|
283
|
+
contents.font_settings[0][:size].should == 12
|
284
|
+
contents.font_settings[1][:size].should == 24
|
285
|
+
end
|
286
|
+
it "should set the baseline based on the tallest fragment on a given line" do
|
287
|
+
create_pdf
|
288
|
+
array = [{ :text => "this contains " },
|
289
|
+
{ :text => "sized", :size => 24 },
|
290
|
+
{ :text => " text" }]
|
291
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
292
|
+
text_box.render
|
293
|
+
@pdf.font_size(24) do
|
294
|
+
text_box.height.should.be.close(@pdf.font.height, 0.001)
|
295
|
+
end
|
296
|
+
end
|
297
|
+
it "should be able to set color via an rgb hex string" do
|
298
|
+
create_pdf
|
299
|
+
array = [{ :text => "rgb",
|
300
|
+
:color => "ff0000" }]
|
301
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
302
|
+
text_box.render
|
303
|
+
colors = PDF::Inspector::Graphics::Color.analyze(@pdf.render)
|
304
|
+
colors.fill_color_count.should == 3
|
305
|
+
colors.stroke_color_count.should == 3
|
306
|
+
end
|
307
|
+
it "should be able to set color using a cmyk array" do
|
308
|
+
create_pdf
|
309
|
+
array = [{ :text => "cmyk",
|
310
|
+
:color => [100, 0, 0, 0] }]
|
311
|
+
text_box = Prawn::Text::Formatted::Box.new(array, :document => @pdf)
|
312
|
+
text_box.render
|
313
|
+
colors = PDF::Inspector::Graphics::Color.analyze(@pdf.render)
|
314
|
+
colors.fill_color_count.should == 3
|
315
|
+
colors.stroke_color_count.should == 3
|
316
|
+
end
|
317
|
+
end
|
318
|
+
|
319
|
+
describe "Text::Formatted::Box with text than can fit in the box" do
|
320
|
+
before(:each) do
|
321
|
+
create_pdf
|
322
|
+
@text = "Oh hai text rect. " * 10
|
323
|
+
@format_array = [:text => @text]
|
324
|
+
@options = {
|
325
|
+
:width => 162.0,
|
326
|
+
:height => 162.0,
|
327
|
+
:document => @pdf
|
328
|
+
}
|
329
|
+
end
|
330
|
+
|
331
|
+
it "printed text should match requested text, except for trailing or" +
|
332
|
+
" leading white space and that spaces may be replaced by newlines" do
|
333
|
+
text_box = Prawn::Text::Formatted::Box.new(@format_array, @options)
|
334
|
+
text_box.render
|
335
|
+
text_box.text.gsub("\n", " ").should == @text.strip
|
336
|
+
end
|
337
|
+
|
338
|
+
it "render should return an empty array because no text remains unprinted" do
|
339
|
+
text_box = Prawn::Text::Formatted::Box.new(@format_array, @options)
|
340
|
+
text_box.render.should == []
|
341
|
+
end
|
342
|
+
|
343
|
+
it "should be truncated when the leading is set high enough to prevent all" +
|
344
|
+
" the lines from being printed" do
|
345
|
+
@options[:leading] = 40
|
346
|
+
text_box = Prawn::Text::Formatted::Box.new(@format_array, @options)
|
347
|
+
text_box.render
|
348
|
+
text_box.text.gsub("\n", " ").should.not == @text.strip
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
describe "Text::Formatted::Box printing UTF-8 string with higher bit characters with" +
|
353
|
+
" inline styling" do
|
354
|
+
before(:each) do
|
355
|
+
create_pdf
|
356
|
+
@text = "©"
|
357
|
+
format_array = [:text => @text]
|
358
|
+
# not enough height to print any text, so we can directly compare against
|
359
|
+
# the input string
|
360
|
+
bounding_height = 1.0
|
361
|
+
options = {
|
362
|
+
:height => bounding_height,
|
363
|
+
:document => @pdf
|
364
|
+
}
|
365
|
+
@text_box = Prawn::Text::Formatted::Box.new(format_array, options)
|
366
|
+
end
|
367
|
+
describe "when using a TTF font" do
|
368
|
+
before(:each) do
|
369
|
+
file = "#{Prawn::BASEDIR}/data/fonts/Action Man.dfont"
|
370
|
+
@pdf.font_families["Action Man"] = {
|
371
|
+
:normal => { :file => file, :font => "ActionMan" },
|
372
|
+
:italic => { :file => file, :font => "ActionMan-Italic" },
|
373
|
+
:bold => { :file => file, :font => "ActionMan-Bold" },
|
374
|
+
:bold_italic => { :file => file, :font => "ActionMan-BoldItalic" }
|
375
|
+
}
|
376
|
+
end
|
377
|
+
it "unprinted text should be in UTF-8 encoding" do
|
378
|
+
@pdf.font("Action Man")
|
379
|
+
remaining_text = @text_box.render
|
380
|
+
remaining_text.first[:text].should == @text
|
381
|
+
end
|
382
|
+
it "subsequent calls to Text::Formatted::Box need not include the" +
|
383
|
+
" :skip_encoding => true option" do
|
384
|
+
@pdf.font("Action Man")
|
385
|
+
remaining_text = @text_box.render
|
386
|
+
lambda {
|
387
|
+
@pdf.formatted_text_box(remaining_text, :document => @pdf)
|
388
|
+
}.should.not.raise(ArgumentError)
|
389
|
+
end
|
390
|
+
end
|
391
|
+
describe "when using an AFM font" do
|
392
|
+
it "unprinted text should be in WinAnsi encoding" do
|
393
|
+
remaining_text = @text_box.render
|
394
|
+
remaining_text.first[:text].should == @pdf.font.normalize_encoding(@text)
|
395
|
+
end
|
396
|
+
it "subsequent calls to Text::Formatted::Box must include the" +
|
397
|
+
" :skip_encoding => true option" do
|
398
|
+
remaining_text = @text_box.render
|
399
|
+
lambda {
|
400
|
+
@pdf.formatted_text_box(remaining_text, :document => @pdf)
|
401
|
+
}.should.raise(ArgumentError)
|
402
|
+
lambda {
|
403
|
+
@pdf.formatted_text_box(remaining_text, :document => @pdf,
|
404
|
+
:skip_encoding => true)
|
405
|
+
}.should.not.raise(ArgumentError)
|
406
|
+
end
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
410
|
+
|
411
|
+
describe "Text::Formatted::Box with more text than can fit in the box" do
|
412
|
+
before(:each) do
|
413
|
+
create_pdf
|
414
|
+
@text = "Oh hai text rect. " * 30
|
415
|
+
@format_array = [:text => @text]
|
416
|
+
@bounding_height = 162.0
|
417
|
+
@options = {
|
418
|
+
:width => 162.0,
|
419
|
+
:height => @bounding_height,
|
420
|
+
:document => @pdf
|
421
|
+
}
|
422
|
+
end
|
423
|
+
|
424
|
+
context "truncated overflow" do
|
425
|
+
before(:each) do
|
426
|
+
@options[:overflow] = :truncate
|
427
|
+
@text_box = Prawn::Text::Formatted::Box.new(@format_array, @options)
|
428
|
+
end
|
429
|
+
it "should be truncated" do
|
430
|
+
@text_box.render
|
431
|
+
@text_box.text.gsub("\n", " ").should.not == @text.strip
|
432
|
+
end
|
433
|
+
it "render should not return an empty string because some text remains" +
|
434
|
+
" unprinted" do
|
435
|
+
@text_box.render.should.not == ""
|
436
|
+
end
|
437
|
+
it "#height should be no taller than the specified height" do
|
438
|
+
@text_box.render
|
439
|
+
@text_box.height.should.be <= @bounding_height
|
440
|
+
end
|
441
|
+
it "#height should be within one font height of the specified height" do
|
442
|
+
@text_box.render
|
443
|
+
@text_box.height.should.be.close(@bounding_height, @pdf.font.height)
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
context "ellipses overflow" do
|
448
|
+
it "should raise NotImplementedError" do
|
449
|
+
@options[:overflow] = :ellipses
|
450
|
+
lambda {
|
451
|
+
Prawn::Text::Formatted::Box.new(@format_array, @options)
|
452
|
+
}.should.raise(NotImplementedError)
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
context "expand overflow" do
|
457
|
+
before(:each) do
|
458
|
+
@options[:overflow] = :expand
|
459
|
+
@text_box = Prawn::Text::Formatted::Box.new(@format_array, @options)
|
460
|
+
end
|
461
|
+
it "height should expand to encompass all the text (but not exceed the" +
|
462
|
+
"height of the page)" do
|
463
|
+
@text_box.render
|
464
|
+
@text_box.height.should > @bounding_height
|
465
|
+
end
|
466
|
+
it "should display the entire string (as long as there was space" +
|
467
|
+
" remaining on the page to print all the text)" do
|
468
|
+
@text_box.render
|
469
|
+
@text_box.text.gsub("\n", " ").should == @text.strip
|
470
|
+
end
|
471
|
+
it "render should return an empty array because no text remains" +
|
472
|
+
" unprinted(as long as there was space remaining on the page to" +
|
473
|
+
" print all the text)" do
|
474
|
+
@text_box.render.should == []
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
478
|
+
context "shrink_to_fit overflow" do
|
479
|
+
before(:each) do
|
480
|
+
@options[:overflow] = :shrink_to_fit
|
481
|
+
@options[:min_font_size] = 2
|
482
|
+
@text_box = Prawn::Text::Formatted::Box.new(@format_array, @options)
|
483
|
+
end
|
484
|
+
it "should display the entire text" do
|
485
|
+
@text_box.render
|
486
|
+
@text_box.text.gsub("\n", " ").should == @text.strip
|
487
|
+
end
|
488
|
+
it "render should return an empty array because no text" +
|
489
|
+
" remains unprinted" do
|
490
|
+
@text_box.render.should == []
|
491
|
+
end
|
492
|
+
end
|
493
|
+
end
|
494
|
+
|
495
|
+
describe "Text::Formatted::Box wrapping" do
|
496
|
+
before(:each) do
|
497
|
+
create_pdf
|
498
|
+
end
|
499
|
+
|
500
|
+
it "should wrap text" do
|
501
|
+
text = "Please wrap this text about HERE. More text that should be wrapped"
|
502
|
+
format_array = [:text => text]
|
503
|
+
expect = "Please wrap this text about\nHERE. " +
|
504
|
+
"More text that should be\nwrapped"
|
505
|
+
|
506
|
+
@pdf.font "Courier"
|
507
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array,
|
508
|
+
:width => 220,
|
509
|
+
:overflow => :expand,
|
510
|
+
:document => @pdf)
|
511
|
+
text_box.render
|
512
|
+
text_box.text.should == expect
|
513
|
+
end
|
514
|
+
|
515
|
+
it "should respect end of line when wrapping text" do
|
516
|
+
text = "Please wrap only before\nTHIS word. Don't wrap this"
|
517
|
+
format_array = [:text => text]
|
518
|
+
expect = text
|
519
|
+
|
520
|
+
@pdf.font "Courier"
|
521
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array,
|
522
|
+
:width => 220,
|
523
|
+
:overflow => :expand,
|
524
|
+
:document => @pdf)
|
525
|
+
text_box.render
|
526
|
+
text_box.text.should == expect
|
527
|
+
end
|
528
|
+
|
529
|
+
it "should respect multiple newlines when wrapping text" do
|
530
|
+
text = "Please wrap only before THIS\n\nword. Don't wrap this"
|
531
|
+
format_array = [:text => text]
|
532
|
+
expect= "Please wrap only before\nTHIS\n\nword. Don't wrap this"
|
533
|
+
|
534
|
+
@pdf.font "Courier"
|
535
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array,
|
536
|
+
:width => 200,
|
537
|
+
:overflow => :expand,
|
538
|
+
:document => @pdf)
|
539
|
+
text_box.render
|
540
|
+
text_box.text.should == expect
|
541
|
+
end
|
542
|
+
|
543
|
+
it "should respect multiple newlines when wrapping text when those newlines" +
|
544
|
+
" coincide with a line break" do
|
545
|
+
text = "Please wrap only before\n\nTHIS word. Don't wrap this"
|
546
|
+
format_array = [:text => text]
|
547
|
+
expect = text
|
548
|
+
|
549
|
+
@pdf.font "Courier"
|
550
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array,
|
551
|
+
:width => 220,
|
552
|
+
:overflow => :expand,
|
553
|
+
:document => @pdf)
|
554
|
+
text_box.render
|
555
|
+
text_box.text.should == expect
|
556
|
+
end
|
557
|
+
|
558
|
+
it "should respect initial newlines" do
|
559
|
+
text = "\nThis should be on line 2"
|
560
|
+
format_array = [:text => text]
|
561
|
+
expect = text
|
562
|
+
|
563
|
+
@pdf.font "Courier"
|
564
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array,
|
565
|
+
:width => 220,
|
566
|
+
:overflow => :expand,
|
567
|
+
:document => @pdf)
|
568
|
+
text_box.render
|
569
|
+
text_box.text.should == expect
|
570
|
+
end
|
571
|
+
|
572
|
+
it "should wrap lines comprised of a single word of the bounds when" +
|
573
|
+
" wrapping text" do
|
574
|
+
text = "You_can_wrap_this_text_HERE"
|
575
|
+
format_array = [:text => text]
|
576
|
+
expect = "You_can_wrap_this_text_HE\nRE"
|
577
|
+
|
578
|
+
@pdf.font "Courier"
|
579
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array,
|
580
|
+
:width => 180,
|
581
|
+
:overflow => :expand,
|
582
|
+
:document => @pdf)
|
583
|
+
text_box.render
|
584
|
+
text_box.text.should == expect
|
585
|
+
end
|
586
|
+
|
587
|
+
it "should wrap lines comprised of a single word of the bounds when" +
|
588
|
+
" wrapping text" do
|
589
|
+
text = "©" * 30
|
590
|
+
format_array = [:text => text]
|
591
|
+
|
592
|
+
@pdf.font "Courier"
|
593
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, :width => 180,
|
594
|
+
:overflow => :expand,
|
595
|
+
:document => @pdf)
|
596
|
+
|
597
|
+
text_box.render
|
598
|
+
|
599
|
+
expected = "©" * 25 + "\n" + "©" * 5
|
600
|
+
@pdf.font.normalize_encoding!(expected)
|
601
|
+
|
602
|
+
text_box.text.should == expected
|
603
|
+
end
|
604
|
+
|
605
|
+
it "should wrap non-unicode strings using single-byte word-wrapping" do
|
606
|
+
text = "continúa esforzandote " * 5
|
607
|
+
format_array = [:text => text]
|
608
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, :width => 180,
|
609
|
+
:document => @pdf)
|
610
|
+
text_box.render
|
611
|
+
results_with_accent = text_box.text
|
612
|
+
|
613
|
+
text = "continua esforzandote " * 5
|
614
|
+
format_array = [:text => text]
|
615
|
+
text_box = Prawn::Text::Formatted::Box.new(format_array, :width => 180,
|
616
|
+
:document => @pdf)
|
617
|
+
text_box.render
|
618
|
+
no_accent = text_box.text
|
619
|
+
|
620
|
+
results_with_accent.first_line.length.should == no_accent.first_line.length
|
621
|
+
end
|
622
|
+
|
623
|
+
end
|
624
|
+
|
625
|
+
def reduce_precision(float)
|
626
|
+
("%.5f" % float).to_f
|
627
|
+
end
|
628
|
+
|
629
|
+
class TestFragmentCallback
|
630
|
+
def draw_border(fragment)
|
631
|
+
end
|
632
|
+
|
633
|
+
def draw_border_with_args(fragment, string, times)
|
634
|
+
end
|
635
|
+
end
|
636
|
+
|
637
|
+
module TestFormattedWrapOverride
|
638
|
+
def wrap(string)
|
639
|
+
@text = nil
|
640
|
+
@line_height = @document.font.height
|
641
|
+
@descender = @document.font.descender
|
642
|
+
@ascender = @document.font.ascender
|
643
|
+
@baseline_y = -@ascender
|
644
|
+
draw_line("all your base are belong to us")
|
645
|
+
[]
|
646
|
+
end
|
647
|
+
end
|
648
|
+
|
649
|
+
module TestWrapOverride
|
650
|
+
def wrap(string)
|
651
|
+
@text = nil
|
652
|
+
@line_height = @document.font.height
|
653
|
+
@descender = @document.font.descender
|
654
|
+
@ascender = @document.font.ascender
|
655
|
+
@baseline_y = -@ascender
|
656
|
+
draw_line("all your base are belong to us")
|
657
|
+
""
|
658
|
+
end
|
659
|
+
end
|