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,461 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require "tempfile"
|
3
|
+
|
4
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
|
5
|
+
|
6
|
+
describe "The cursor" do
|
7
|
+
it "should equal pdf.y - bounds.absolute_bottom" do
|
8
|
+
pdf = Prawn::Document.new
|
9
|
+
pdf.cursor.should == pdf.bounds.top
|
10
|
+
|
11
|
+
pdf.y = 300
|
12
|
+
pdf.cursor.should == pdf.y - pdf.bounds.absolute_bottom
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should be able to move relative to the bottom margin" do
|
16
|
+
pdf = Prawn::Document.new
|
17
|
+
pdf.move_cursor_to(10)
|
18
|
+
|
19
|
+
pdf.cursor.should == 10
|
20
|
+
pdf.y.should == pdf.cursor + pdf.bounds.absolute_bottom
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "when generating a document from a subclass" do
|
25
|
+
it "should be an instance of the subclass" do
|
26
|
+
custom_document = Class.new(Prawn::Document)
|
27
|
+
custom_document.generate(Tempfile.new("generate_test").path) do |e|
|
28
|
+
e.class.should == custom_document
|
29
|
+
e.should.be.kind_of(Prawn::Document)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should retain any extensions found on Prawn::Document" do
|
34
|
+
mod1 = Module.new { attr_reader :test_extensions1 }
|
35
|
+
mod2 = Module.new { attr_reader :test_extensions2 }
|
36
|
+
|
37
|
+
Prawn::Document.extensions << mod1 << mod2
|
38
|
+
|
39
|
+
custom_document = Class.new(Prawn::Document)
|
40
|
+
assert_equal [mod1, mod2], custom_document.extensions
|
41
|
+
|
42
|
+
# remove the extensions we added to prawn document
|
43
|
+
Prawn::Document.extensions.delete(mod1)
|
44
|
+
Prawn::Document.extensions.delete(mod2)
|
45
|
+
|
46
|
+
assert ! Prawn::Document.new.respond_to?(:test_extensions1)
|
47
|
+
assert ! Prawn::Document.new.respond_to?(:test_extensions2)
|
48
|
+
|
49
|
+
# verify these still exist on custom class
|
50
|
+
assert_equal [mod1, mod2], custom_document.extensions
|
51
|
+
|
52
|
+
assert custom_document.new.respond_to?(:test_extensions1)
|
53
|
+
assert custom_document.new.respond_to?(:test_extensions2)
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
describe "When creating multi-page documents" do
|
59
|
+
|
60
|
+
before(:each) { create_pdf }
|
61
|
+
|
62
|
+
it "should initialize with a single page" do
|
63
|
+
page_counter = PDF::Inspector::Page.analyze(@pdf.render)
|
64
|
+
|
65
|
+
page_counter.pages.size.should == 1
|
66
|
+
@pdf.page_count.should == 1
|
67
|
+
end
|
68
|
+
|
69
|
+
it "should provide an accurate page_count" do
|
70
|
+
3.times { @pdf.start_new_page }
|
71
|
+
page_counter = PDF::Inspector::Page.analyze(@pdf.render)
|
72
|
+
|
73
|
+
page_counter.pages.size.should == 4
|
74
|
+
@pdf.page_count.should == 4
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
describe "When beginning each new page" do
|
80
|
+
|
81
|
+
describe "Background template feature" do
|
82
|
+
before(:each) do
|
83
|
+
@filename = "#{Prawn::BASEDIR}/data/images/pigs.jpg"
|
84
|
+
@pdf = Prawn::Document.new(:background => @filename)
|
85
|
+
end
|
86
|
+
it "should place a background image if it is in options block" do
|
87
|
+
output = @pdf.render
|
88
|
+
images = PDF::Inspector::XObject.analyze(output)
|
89
|
+
# there should be 2 images in the page resources
|
90
|
+
images.page_xobjects.first.size.should == 1
|
91
|
+
end
|
92
|
+
it "should place a background image if it is in options block" do
|
93
|
+
@pdf.instance_variable_defined?(:@background).should == true
|
94
|
+
@pdf.instance_variable_get(:@background).should == @filename
|
95
|
+
end
|
96
|
+
|
97
|
+
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
end
|
102
|
+
|
103
|
+
describe "The page_number method" do
|
104
|
+
it "should be 1 for a new document" do
|
105
|
+
pdf = Prawn::Document.new
|
106
|
+
pdf.page_number.should == 1
|
107
|
+
end
|
108
|
+
|
109
|
+
it "should be 0 for documents with no pages" do
|
110
|
+
pdf = Prawn::Document.new(:skip_page_creation => true)
|
111
|
+
pdf.page_number.should == 0
|
112
|
+
end
|
113
|
+
|
114
|
+
it "should be changed by go_to_page" do
|
115
|
+
pdf = Prawn::Document.new
|
116
|
+
10.times { pdf.start_new_page }
|
117
|
+
pdf.go_to_page 3
|
118
|
+
pdf.page_number.should == 3
|
119
|
+
end
|
120
|
+
|
121
|
+
end
|
122
|
+
|
123
|
+
describe "on_page_create callback" do
|
124
|
+
before do
|
125
|
+
create_pdf
|
126
|
+
end
|
127
|
+
|
128
|
+
it "should be invoked with document" do
|
129
|
+
called_with = nil
|
130
|
+
|
131
|
+
@pdf.on_page_create { |*args| called_with = args }
|
132
|
+
|
133
|
+
@pdf.start_new_page
|
134
|
+
|
135
|
+
called_with.should == [@pdf]
|
136
|
+
end
|
137
|
+
|
138
|
+
it "should be invoked for each new page" do
|
139
|
+
trigger = mock()
|
140
|
+
trigger.expects(:fire).times(5)
|
141
|
+
|
142
|
+
@pdf.on_page_create { trigger.fire }
|
143
|
+
|
144
|
+
5.times { @pdf.start_new_page }
|
145
|
+
end
|
146
|
+
|
147
|
+
it "should be replaceable" do
|
148
|
+
trigger1 = mock()
|
149
|
+
trigger1.expects(:fire).times(1)
|
150
|
+
|
151
|
+
trigger2 = mock()
|
152
|
+
trigger2.expects(:fire).times(1)
|
153
|
+
|
154
|
+
@pdf.on_page_create { trigger1.fire }
|
155
|
+
|
156
|
+
@pdf.start_new_page
|
157
|
+
|
158
|
+
@pdf.on_page_create { trigger2.fire }
|
159
|
+
|
160
|
+
@pdf.start_new_page
|
161
|
+
end
|
162
|
+
|
163
|
+
it "should be clearable by calling on_page_create without a block" do
|
164
|
+
trigger = mock()
|
165
|
+
trigger.expects(:fire).times(1)
|
166
|
+
|
167
|
+
@pdf.on_page_create { trigger.fire }
|
168
|
+
|
169
|
+
@pdf.start_new_page
|
170
|
+
|
171
|
+
@pdf.on_page_create
|
172
|
+
|
173
|
+
@pdf.start_new_page
|
174
|
+
end
|
175
|
+
|
176
|
+
end
|
177
|
+
|
178
|
+
describe "Document compression" do
|
179
|
+
|
180
|
+
it "should not compress the page content stream if compression is disabled" do
|
181
|
+
|
182
|
+
pdf = Prawn::Document.new(:compress => false)
|
183
|
+
pdf.page.content.stubs(:compress_stream).returns(true)
|
184
|
+
pdf.page.content.expects(:compress_stream).never
|
185
|
+
|
186
|
+
pdf.text "Hi There" * 20
|
187
|
+
pdf.render
|
188
|
+
end
|
189
|
+
|
190
|
+
it "should compress the page content stream if compression is enabled" do
|
191
|
+
|
192
|
+
pdf = Prawn::Document.new(:compress => true)
|
193
|
+
pdf.page.content.stubs(:compress_stream).returns(true)
|
194
|
+
pdf.page.content.expects(:compress_stream).once
|
195
|
+
|
196
|
+
pdf.text "Hi There" * 20
|
197
|
+
pdf.render
|
198
|
+
end
|
199
|
+
|
200
|
+
it "should result in a smaller file size when compressed" do
|
201
|
+
doc_uncompressed = Prawn::Document.new
|
202
|
+
doc_compressed = Prawn::Document.new(:compress => true)
|
203
|
+
[doc_compressed, doc_uncompressed].each do |pdf|
|
204
|
+
pdf.font "#{Prawn::BASEDIR}/data/fonts/gkai00mp.ttf"
|
205
|
+
pdf.text "更可怕的是,同质化竞争对手可以按照URL中后面这个ID来遍历" * 10
|
206
|
+
end
|
207
|
+
|
208
|
+
doc_compressed.render.length.should.be < doc_uncompressed.render.length
|
209
|
+
end
|
210
|
+
|
211
|
+
end
|
212
|
+
|
213
|
+
describe "When reopening pages" do
|
214
|
+
it "should modify the content stream size" do
|
215
|
+
@pdf = Prawn::Document.new do |pdf|
|
216
|
+
pdf.text "Page 1"
|
217
|
+
pdf.start_new_page
|
218
|
+
pdf.text "Page 2"
|
219
|
+
pdf.go_to_page 1
|
220
|
+
pdf.text "More for page 1"
|
221
|
+
end
|
222
|
+
|
223
|
+
# MalformedPDFError raised if content stream actual length does not match
|
224
|
+
# dictionary length
|
225
|
+
lambda{ PDF::Inspector::Page.analyze(@pdf.render) }.
|
226
|
+
should.not.raise(PDF::Reader::MalformedPDFError)
|
227
|
+
end
|
228
|
+
|
229
|
+
it "should insert pages after the current page when calling start_new_page" do
|
230
|
+
pdf = Prawn::Document.new
|
231
|
+
3.times { |i| pdf.text "Old page #{i+1}"; pdf.start_new_page }
|
232
|
+
pdf.go_to_page 1
|
233
|
+
pdf.start_new_page
|
234
|
+
pdf.text "New page 2"
|
235
|
+
|
236
|
+
pdf.page_number.should == 2
|
237
|
+
|
238
|
+
pages = PDF::Inspector::Page.analyze(pdf.render).pages
|
239
|
+
pages.size.should == 5
|
240
|
+
pages[1][:strings].should == ["New page 2"]
|
241
|
+
pages[2][:strings].should == ["Old page 2"]
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
describe "When setting page size" do
|
246
|
+
it "should default to LETTER" do
|
247
|
+
@pdf = Prawn::Document.new
|
248
|
+
pages = PDF::Inspector::Page.analyze(@pdf.render).pages
|
249
|
+
pages.first[:size].should == Prawn::Document::PageGeometry::SIZES["LETTER"]
|
250
|
+
end
|
251
|
+
|
252
|
+
(Prawn::Document::PageGeometry::SIZES.keys - ["LETTER"]).each do |k|
|
253
|
+
it "should provide #{k} geometry" do
|
254
|
+
@pdf = Prawn::Document.new(:page_size => k)
|
255
|
+
pages = PDF::Inspector::Page.analyze(@pdf.render).pages
|
256
|
+
pages.first[:size].should == Prawn::Document::PageGeometry::SIZES[k]
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
it "should allow custom page size" do
|
261
|
+
@pdf = Prawn::Document.new(:page_size => [1920, 1080] )
|
262
|
+
pages = PDF::Inspector::Page.analyze(@pdf.render).pages
|
263
|
+
pages.first[:size].should == [1920, 1080]
|
264
|
+
end
|
265
|
+
|
266
|
+
|
267
|
+
it "should retain page size by default when starting a new page" do
|
268
|
+
@pdf = Prawn::Document.new(:page_size => "LEGAL")
|
269
|
+
@pdf.start_new_page
|
270
|
+
pages = PDF::Inspector::Page.analyze(@pdf.render).pages
|
271
|
+
pages.each do |page|
|
272
|
+
page[:size].should == Prawn::Document::PageGeometry::SIZES["LEGAL"]
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
end
|
277
|
+
|
278
|
+
describe "When setting page layout" do
|
279
|
+
it "should reverse coordinates for landscape" do
|
280
|
+
@pdf = Prawn::Document.new(:page_size => "A4", :page_layout => :landscape)
|
281
|
+
pages = PDF::Inspector::Page.analyze(@pdf.render).pages
|
282
|
+
pages.first[:size].should == Prawn::Document::PageGeometry::SIZES["A4"].reverse
|
283
|
+
end
|
284
|
+
|
285
|
+
it "should retain page layout by default when starting a new page" do
|
286
|
+
@pdf = Prawn::Document.new(:page_layout => :landscape)
|
287
|
+
@pdf.start_new_page(:trace => true)
|
288
|
+
pages = PDF::Inspector::Page.analyze(@pdf.render).pages
|
289
|
+
pages.each do |page|
|
290
|
+
page[:size].should == Prawn::Document::PageGeometry::SIZES["LETTER"].reverse
|
291
|
+
end
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
describe "The mask() feature" do
|
296
|
+
it "should allow transactional restoration of attributes" do
|
297
|
+
@pdf = Prawn::Document.new
|
298
|
+
y, line_width = @pdf.y, @pdf.line_width
|
299
|
+
@pdf.mask(:y, :line_width) do
|
300
|
+
@pdf.y = y + 1
|
301
|
+
@pdf.line_width = line_width + 1
|
302
|
+
@pdf.y.should.not == y
|
303
|
+
@pdf.line_width.should.not == line_width
|
304
|
+
end
|
305
|
+
@pdf.y.should == y
|
306
|
+
@pdf.line_width.should == line_width
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
describe "The group() feature" do
|
311
|
+
it "should group a simple block on a single page" do
|
312
|
+
pdf = Prawn::Document.new do
|
313
|
+
self.y = 50
|
314
|
+
group do
|
315
|
+
text "Hello"
|
316
|
+
text "World"
|
317
|
+
end
|
318
|
+
end
|
319
|
+
pages = PDF::Inspector::Page.analyze(pdf.render).pages
|
320
|
+
pages.size.should == 2
|
321
|
+
pages[0][:strings].should == []
|
322
|
+
pages[1][:strings].should == ["Hello", "World"]
|
323
|
+
end
|
324
|
+
|
325
|
+
it "should raise CannotGroup if the content is too tall" do
|
326
|
+
lambda {
|
327
|
+
Prawn::Document.new do
|
328
|
+
group do
|
329
|
+
100.times { text "Too long" }
|
330
|
+
end
|
331
|
+
end.render
|
332
|
+
}.should.raise(Prawn::Errors::CannotGroup)
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
describe "The render() feature" do
|
337
|
+
if "spec".respond_to?(:encode!)
|
338
|
+
it "should return a 8 bit encoded string on a m17n aware VM" do
|
339
|
+
@pdf = Prawn::Document.new(:page_size => "A4", :page_layout => :landscape)
|
340
|
+
@pdf.line [100,100], [200,200]
|
341
|
+
str = @pdf.render
|
342
|
+
str.encoding.to_s.should == "ASCII-8BIT"
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
it "should trigger before_render callbacks just before rendering" do
|
347
|
+
pdf = Prawn::Document.new
|
348
|
+
|
349
|
+
seq = sequence("callback_order")
|
350
|
+
|
351
|
+
# Verify the order: finalize -> fire callbacks -> render body
|
352
|
+
pdf.expects(:finalize_all_page_contents).in_sequence(seq)
|
353
|
+
trigger = mock()
|
354
|
+
trigger.expects(:fire).in_sequence(seq)
|
355
|
+
|
356
|
+
# Store away the render_body method to be called below
|
357
|
+
render_body = pdf.method(:render_body)
|
358
|
+
pdf.expects(:render_body).in_sequence(seq)
|
359
|
+
|
360
|
+
pdf.before_render{ trigger.fire }
|
361
|
+
|
362
|
+
# Render the body to set up object offsets
|
363
|
+
render_body.call(StringIO.new)
|
364
|
+
pdf.render
|
365
|
+
end
|
366
|
+
|
367
|
+
end
|
368
|
+
|
369
|
+
describe "The :optimize_objects option" do
|
370
|
+
before(:all) do
|
371
|
+
@wasteful_doc = lambda do
|
372
|
+
transaction { start_new_page; text "Hidden text"; rollback }
|
373
|
+
text "Hello world"
|
374
|
+
end
|
375
|
+
end
|
376
|
+
|
377
|
+
it "should result in fewer objects when enabled" do
|
378
|
+
wasteful_pdf = Prawn::Document.new(&@wasteful_doc)
|
379
|
+
frugal_pdf = Prawn::Document.new(:optimize_objects => true,
|
380
|
+
&@wasteful_doc)
|
381
|
+
frugal_pdf.render.size.should.be < wasteful_pdf.render.size
|
382
|
+
end
|
383
|
+
|
384
|
+
it "should default to :false" do
|
385
|
+
default_pdf = Prawn::Document.new(&@wasteful_doc)
|
386
|
+
wasteful_pdf = Prawn::Document.new(:optimize_objects => false,
|
387
|
+
&@wasteful_doc)
|
388
|
+
default_pdf.render.size.should == wasteful_pdf.render.size
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
392
|
+
describe "PDF file versions" do
|
393
|
+
it "should default to 1.3" do
|
394
|
+
@pdf = Prawn::Document.new
|
395
|
+
str = @pdf.render
|
396
|
+
str[0,8].should == "%PDF-1.3"
|
397
|
+
end
|
398
|
+
|
399
|
+
it "should allow the default to be changed" do
|
400
|
+
@pdf = Prawn::Document.new
|
401
|
+
@pdf.__send__(:min_version, 1.4)
|
402
|
+
str = @pdf.render
|
403
|
+
str[0,8].should == "%PDF-1.4"
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
describe "Documents that use go_to_page" do
|
408
|
+
it "should have 2 pages after calling start_new_page and go_to_page" do
|
409
|
+
@pdf = Prawn::Document.new
|
410
|
+
@pdf.text "James"
|
411
|
+
@pdf.start_new_page
|
412
|
+
@pdf.text "Anthony"
|
413
|
+
@pdf.go_to_page(1)
|
414
|
+
@pdf.text "Healy"
|
415
|
+
|
416
|
+
page_counter = PDF::Inspector::Page.analyze(@pdf.render)
|
417
|
+
page_counter.pages.size.should == 2
|
418
|
+
end
|
419
|
+
|
420
|
+
it "should correctly add text to pages" do
|
421
|
+
@pdf = Prawn::Document.new
|
422
|
+
@pdf.text "James"
|
423
|
+
@pdf.start_new_page
|
424
|
+
@pdf.text "Anthony"
|
425
|
+
@pdf.go_to_page(1)
|
426
|
+
@pdf.text "Healy"
|
427
|
+
|
428
|
+
text = PDF::Inspector::Text.analyze(@pdf.render)
|
429
|
+
|
430
|
+
text.strings.size.should == 3
|
431
|
+
text.strings.include?("James").should == true
|
432
|
+
text.strings.include?("Anthony").should == true
|
433
|
+
text.strings.include?("Healy").should == true
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
437
|
+
describe "content stream characteristics" do
|
438
|
+
it "should have 1 single content stream for a single page PDF with no templates" do
|
439
|
+
@pdf = Prawn::Document.new
|
440
|
+
@pdf.text "James"
|
441
|
+
output = StringIO.new(@pdf.render)
|
442
|
+
hash = PDF::Hash.new(output)
|
443
|
+
|
444
|
+
streams = hash.values.select { |obj| obj.kind_of?(PDF::Reader::Stream) }
|
445
|
+
|
446
|
+
streams.size.should == 1
|
447
|
+
end
|
448
|
+
|
449
|
+
it "should have 1 single content stream for a single page PDF with no templates, even if go_to_page is used" do
|
450
|
+
@pdf = Prawn::Document.new
|
451
|
+
@pdf.text "James"
|
452
|
+
@pdf.go_to_page(1)
|
453
|
+
@pdf.text "Healy"
|
454
|
+
output = StringIO.new(@pdf.render)
|
455
|
+
hash = PDF::Hash.new(output)
|
456
|
+
|
457
|
+
streams = hash.values.select { |obj| obj.kind_of?(PDF::Reader::Stream) }
|
458
|
+
|
459
|
+
streams.size.should == 1
|
460
|
+
end
|
461
|
+
end
|