prawn 0.15.0 → 1.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +2 -2
- data/LICENSE +1 -1
- data/README.md +96 -0
- data/Rakefile +27 -30
- 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/DejaVuSans.ttf +0 -0
- data/data/fonts/Dustismo_Roman.ttf +0 -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/dice.alpha +0 -0
- data/data/images/dice.dat +0 -0
- data/data/images/page_white_text.alpha +0 -0
- data/data/images/page_white_text.dat +0 -0
- data/data/images/rails.dat +0 -0
- data/data/images/rails.png +0 -0
- data/data/pdfs/nested_pages.pdf +13 -13
- data/lib/prawn.rb +21 -85
- data/lib/prawn/compatibility.rb +51 -0
- data/lib/prawn/core.rb +85 -0
- data/lib/prawn/core/annotations.rb +61 -0
- data/lib/prawn/core/byte_string.rb +9 -0
- data/lib/prawn/core/destinations.rb +90 -0
- data/lib/prawn/core/document_state.rb +78 -0
- data/lib/prawn/core/literal_string.rb +16 -0
- data/lib/prawn/core/name_tree.rb +177 -0
- data/lib/prawn/core/object_store.rb +264 -0
- data/lib/prawn/core/page.rb +215 -0
- data/lib/prawn/core/pdf_object.rb +108 -0
- data/lib/prawn/core/reference.rb +115 -0
- data/lib/prawn/core/text.rb +268 -0
- data/lib/prawn/core/text/formatted/arranger.rb +294 -0
- data/lib/prawn/core/text/formatted/line_wrap.rb +273 -0
- data/lib/prawn/core/text/formatted/wrap.rb +153 -0
- data/lib/prawn/document.rb +122 -155
- data/lib/prawn/document/bounding_box.rb +7 -36
- data/lib/prawn/document/column_box.rb +10 -38
- data/lib/prawn/document/graphics_state.rb +74 -11
- data/lib/prawn/document/internals.rb +23 -24
- data/lib/prawn/document/page_geometry.rb +136 -0
- data/lib/prawn/document/snapshot.rb +6 -7
- data/lib/prawn/document/span.rb +10 -12
- data/lib/prawn/encoding.rb +10 -9
- data/lib/prawn/errors.rb +30 -15
- data/lib/prawn/font.rb +104 -136
- data/lib/prawn/font/afm.rb +44 -46
- data/lib/prawn/font/dfont.rb +3 -4
- data/lib/prawn/font/ttf.rb +50 -31
- data/lib/prawn/graphics.rb +57 -302
- data/lib/prawn/graphics/cap_style.rb +3 -4
- data/lib/prawn/graphics/color.rb +5 -13
- data/lib/prawn/graphics/dash.rb +31 -53
- data/lib/prawn/graphics/gradient.rb +84 -0
- data/lib/prawn/graphics/join_style.rb +7 -9
- data/lib/prawn/graphics/transformation.rb +9 -10
- data/lib/prawn/graphics/transparency.rb +1 -3
- data/lib/prawn/images.rb +59 -69
- data/lib/prawn/images/image.rb +22 -6
- data/lib/prawn/images/jpg.rb +14 -20
- data/lib/prawn/images/png.rb +118 -61
- data/lib/prawn/layout.rb +15 -10
- data/lib/prawn/layout/grid.rb +54 -66
- data/lib/prawn/measurement_extensions.rb +6 -10
- data/lib/prawn/measurements.rb +21 -27
- data/lib/prawn/outline.rb +308 -6
- data/lib/prawn/repeater.rb +8 -10
- data/lib/prawn/security.rb +33 -55
- data/lib/prawn/security/arcfour.rb +0 -1
- data/lib/prawn/stamp.rb +3 -5
- data/lib/prawn/table.rb +60 -188
- data/lib/prawn/table/cell.rb +44 -272
- data/lib/prawn/table/cell/image.rb +3 -2
- data/lib/prawn/table/cell/in_table.rb +2 -4
- data/lib/prawn/table/cell/subtable.rb +2 -2
- data/lib/prawn/table/cell/text.rb +18 -41
- data/lib/prawn/table/cells.rb +48 -142
- data/lib/prawn/text.rb +25 -32
- data/lib/prawn/text/box.rb +6 -12
- data/lib/prawn/text/formatted.rb +4 -5
- data/lib/prawn/text/formatted/box.rb +59 -96
- data/lib/prawn/text/formatted/fragment.rb +23 -34
- data/lib/prawn/text/formatted/parser.rb +5 -15
- data/prawn.gemspec +13 -24
- data/spec/annotations_spec.rb +32 -16
- data/spec/bounding_box_spec.rb +17 -119
- data/spec/cell_spec.rb +42 -112
- data/spec/destinations_spec.rb +5 -5
- data/spec/document_spec.rb +111 -155
- data/spec/extensions/mocha.rb +0 -1
- data/spec/font_spec.rb +99 -149
- data/spec/formatted_text_arranger_spec.rb +43 -43
- data/spec/formatted_text_box_spec.rb +44 -43
- data/spec/formatted_text_fragment_spec.rb +8 -8
- data/spec/graphics_spec.rb +68 -151
- data/spec/grid_spec.rb +15 -26
- data/spec/images_spec.rb +30 -51
- data/spec/inline_formatted_text_parser_spec.rb +20 -69
- data/spec/jpg_spec.rb +4 -4
- data/spec/line_wrap_spec.rb +28 -28
- data/spec/measurement_units_spec.rb +6 -6
- data/spec/name_tree_spec.rb +112 -0
- data/spec/object_store_spec.rb +106 -17
- data/spec/outline_spec.rb +63 -103
- data/spec/pdf_object_spec.rb +170 -0
- data/spec/png_spec.rb +25 -25
- data/spec/reference_spec.rb +65 -8
- data/spec/repeater_spec.rb +10 -10
- data/spec/security_spec.rb +12 -44
- data/spec/snapshot_spec.rb +7 -7
- data/spec/span_spec.rb +15 -10
- data/spec/spec_helper.rb +8 -32
- data/spec/stamp_spec.rb +30 -29
- data/spec/stroke_styles_spec.rb +18 -36
- data/spec/table_spec.rb +111 -706
- data/spec/template_spec.rb +297 -0
- data/spec/text_at_spec.rb +33 -19
- data/spec/text_box_spec.rb +64 -100
- data/spec/text_rendering_mode_spec.rb +5 -5
- data/spec/text_spacing_spec.rb +4 -4
- data/spec/text_spec.rb +64 -84
- data/spec/transparency_spec.rb +5 -5
- metadata +290 -463
- checksums.yaml +0 -7
- data/.yardopts +0 -10
- data/Gemfile +0 -11
- data/data/images/16bit.color +0 -0
- data/data/images/dice.color +0 -0
- data/data/images/indexed_color.dat +0 -0
- data/data/images/indexed_color.png +0 -0
- data/data/images/page_white_text.color +0 -0
- data/lib/prawn/font_metric_cache.rb +0 -47
- data/lib/prawn/graphics/patterns.rb +0 -138
- data/lib/prawn/image_handler.rb +0 -36
- data/lib/prawn/soft_mask.rb +0 -96
- data/lib/prawn/table/cell/span_dummy.rb +0 -93
- data/lib/prawn/table/column_width_calculator.rb +0 -61
- data/lib/prawn/text/formatted/arranger.rb +0 -290
- data/lib/prawn/text/formatted/line_wrap.rb +0 -266
- data/lib/prawn/text/formatted/wrap.rb +0 -150
- data/lib/prawn/utilities.rb +0 -46
- data/manual/basic_concepts/adding_pages.rb +0 -27
- data/manual/basic_concepts/basic_concepts.rb +0 -34
- data/manual/basic_concepts/creation.rb +0 -39
- data/manual/basic_concepts/cursor.rb +0 -33
- data/manual/basic_concepts/measurement.rb +0 -25
- data/manual/basic_concepts/origin.rb +0 -38
- data/manual/basic_concepts/other_cursor_helpers.rb +0 -40
- data/manual/bounding_box/bounding_box.rb +0 -39
- data/manual/bounding_box/bounds.rb +0 -49
- data/manual/bounding_box/canvas.rb +0 -24
- data/manual/bounding_box/creation.rb +0 -23
- data/manual/bounding_box/indentation.rb +0 -46
- data/manual/bounding_box/nesting.rb +0 -45
- data/manual/bounding_box/russian_boxes.rb +0 -40
- data/manual/bounding_box/stretchy.rb +0 -31
- data/manual/document_and_page_options/background.rb +0 -27
- data/manual/document_and_page_options/document_and_page_options.rb +0 -32
- data/manual/document_and_page_options/metadata.rb +0 -23
- data/manual/document_and_page_options/page_margins.rb +0 -38
- data/manual/document_and_page_options/page_size.rb +0 -34
- data/manual/document_and_page_options/print_scaling.rb +0 -20
- data/manual/example_file.rb +0 -111
- data/manual/example_helper.rb +0 -411
- data/manual/example_package.rb +0 -53
- data/manual/example_section.rb +0 -46
- data/manual/graphics/circle_and_ellipse.rb +0 -22
- data/manual/graphics/color.rb +0 -24
- data/manual/graphics/common_lines.rb +0 -30
- data/manual/graphics/fill_and_stroke.rb +0 -42
- data/manual/graphics/fill_rules.rb +0 -37
- data/manual/graphics/gradients.rb +0 -37
- data/manual/graphics/graphics.rb +0 -58
- data/manual/graphics/helper.rb +0 -24
- data/manual/graphics/line_width.rb +0 -35
- data/manual/graphics/lines_and_curves.rb +0 -41
- data/manual/graphics/polygon.rb +0 -29
- data/manual/graphics/rectangle.rb +0 -21
- data/manual/graphics/rotate.rb +0 -28
- data/manual/graphics/scale.rb +0 -41
- data/manual/graphics/soft_masks.rb +0 -46
- data/manual/graphics/stroke_cap.rb +0 -31
- data/manual/graphics/stroke_dash.rb +0 -48
- data/manual/graphics/stroke_join.rb +0 -30
- data/manual/graphics/translate.rb +0 -29
- data/manual/graphics/transparency.rb +0 -35
- data/manual/images/absolute_position.rb +0 -23
- data/manual/images/fit.rb +0 -21
- data/manual/images/horizontal.rb +0 -25
- data/manual/images/images.rb +0 -40
- data/manual/images/plain_image.rb +0 -18
- data/manual/images/scale.rb +0 -22
- data/manual/images/vertical.rb +0 -28
- data/manual/images/width_and_height.rb +0 -25
- data/manual/layout/boxes.rb +0 -27
- data/manual/layout/content.rb +0 -25
- data/manual/layout/layout.rb +0 -28
- data/manual/layout/simple_grid.rb +0 -23
- data/manual/manual/cover.rb +0 -36
- data/manual/manual/foreword.rb +0 -85
- data/manual/manual/how_to_read_this_manual.rb +0 -41
- data/manual/manual/manual.rb +0 -34
- data/manual/outline/add_subsection_to.rb +0 -61
- data/manual/outline/insert_section_after.rb +0 -47
- data/manual/outline/outline.rb +0 -32
- data/manual/outline/sections_and_pages.rb +0 -67
- data/manual/repeatable_content/page_numbering.rb +0 -54
- data/manual/repeatable_content/repeatable_content.rb +0 -31
- data/manual/repeatable_content/repeater.rb +0 -55
- data/manual/repeatable_content/stamp.rb +0 -41
- data/manual/security/encryption.rb +0 -31
- data/manual/security/permissions.rb +0 -38
- data/manual/security/security.rb +0 -28
- data/manual/syntax_highlight.rb +0 -52
- data/manual/table/basic_block.rb +0 -53
- data/manual/table/before_rendering_page.rb +0 -26
- data/manual/table/cell_border_lines.rb +0 -24
- data/manual/table/cell_borders_and_bg.rb +0 -31
- data/manual/table/cell_dimensions.rb +0 -30
- data/manual/table/cell_text.rb +0 -38
- data/manual/table/column_widths.rb +0 -30
- data/manual/table/content_and_subtables.rb +0 -39
- data/manual/table/creation.rb +0 -27
- data/manual/table/filtering.rb +0 -36
- data/manual/table/flow_and_header.rb +0 -17
- data/manual/table/image_cells.rb +0 -33
- data/manual/table/position.rb +0 -29
- data/manual/table/row_colors.rb +0 -20
- data/manual/table/span.rb +0 -30
- data/manual/table/style.rb +0 -22
- data/manual/table/table.rb +0 -52
- data/manual/table/width.rb +0 -27
- data/manual/text/alignment.rb +0 -44
- data/manual/text/color.rb +0 -24
- data/manual/text/column_box.rb +0 -32
- data/manual/text/fallback_fonts.rb +0 -37
- data/manual/text/font.rb +0 -41
- data/manual/text/font_size.rb +0 -45
- data/manual/text/font_style.rb +0 -23
- data/manual/text/formatted_callbacks.rb +0 -60
- data/manual/text/formatted_text.rb +0 -54
- data/manual/text/free_flowing_text.rb +0 -51
- data/manual/text/group.rb +0 -31
- data/manual/text/inline.rb +0 -43
- data/manual/text/kerning_and_character_spacing.rb +0 -39
- data/manual/text/leading.rb +0 -25
- data/manual/text/line_wrapping.rb +0 -41
- data/manual/text/paragraph_indentation.rb +0 -26
- data/manual/text/positioned_text.rb +0 -38
- data/manual/text/registering_families.rb +0 -48
- data/manual/text/rendering_and_color.rb +0 -37
- data/manual/text/right_to_left_text.rb +0 -43
- data/manual/text/rotation.rb +0 -43
- data/manual/text/single_usage.rb +0 -37
- data/manual/text/text.rb +0 -75
- data/manual/text/text_box_excess.rb +0 -32
- data/manual/text/text_box_extensions.rb +0 -45
- data/manual/text/text_box_overflow.rb +0 -44
- data/manual/text/utf8.rb +0 -28
- data/manual/text/win_ansi_charset.rb +0 -59
- data/spec/acceptance/png.rb +0 -23
- data/spec/column_box_spec.rb +0 -65
- data/spec/extensions/encoding_helpers.rb +0 -9
- data/spec/font_metric_cache_spec.rb +0 -52
- data/spec/image_handler_spec.rb +0 -54
- data/spec/soft_mask_spec.rb +0 -117
- data/spec/table/span_dummy_spec.rb +0 -17
@@ -1,43 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# Prawn can be used with right-to-left text. The direction can be set
|
4
|
-
# document-wide, on particular text, or on a text-box. Setting the direction to
|
5
|
-
# <code>:rtl</code> automatically changes the default alignment to
|
6
|
-
# <code>:right</code>
|
7
|
-
#
|
8
|
-
# You can even override direction on an individual fragment. The one caveat is
|
9
|
-
# that two fragments going against the main direction cannot be placed next to
|
10
|
-
# each other without appearing in the wrong order.
|
11
|
-
#
|
12
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
13
|
-
%w[.. example_helper]))
|
14
|
-
|
15
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
16
|
-
Prawn::Example.generate(filename) do
|
17
|
-
# set the direction document-wide
|
18
|
-
self.text_direction = :rtl
|
19
|
-
|
20
|
-
font("#{Prawn::DATADIR}/fonts/gkai00mp.ttf", :size => 16) do
|
21
|
-
long_text = "写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小"
|
22
|
-
text long_text
|
23
|
-
move_down 20
|
24
|
-
|
25
|
-
text "You can override the document direction.", :direction => :ltr
|
26
|
-
move_down 20
|
27
|
-
|
28
|
-
formatted_text [{ :text => "更可怕的是,同质化竞争对手可以按照" },
|
29
|
-
{ :text => "URL", :direction => :ltr },
|
30
|
-
{ :text => "中后面这个" },
|
31
|
-
{ :text => "ID", :direction => :ltr },
|
32
|
-
{ :text => "来遍历您的" },
|
33
|
-
{ :text => "DB", :direction => :ltr },
|
34
|
-
{ :text => "中的内容,写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事,这样的话,你就非常被动了。" }]
|
35
|
-
move_down 20
|
36
|
-
|
37
|
-
formatted_text [{ :text => "更可怕的是,同质化竞争对手可以按照" },
|
38
|
-
{ :text => "this", :direction => :ltr },
|
39
|
-
{ :text => "won't", :direction => :ltr, :size => 24 },
|
40
|
-
{ :text => "work", :direction => :ltr },
|
41
|
-
{ :text => "中的内容,写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事" }]
|
42
|
-
end
|
43
|
-
end
|
data/manual/text/rotation.rb
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# Rotating text is best avoided on free flowing text, so this example
|
4
|
-
# will only use the <code>text_box</code> method as we can have much more
|
5
|
-
# control over its output.
|
6
|
-
#
|
7
|
-
# To rotate text all we need to do is use the <code>:rotate</code> option
|
8
|
-
# passing an angle in degrees and an optional <code>:rotate_around</code> to
|
9
|
-
# indicate the origin of the rotation (the default is <code>:upper_left</code>).
|
10
|
-
#
|
11
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
12
|
-
%w[.. example_helper]))
|
13
|
-
|
14
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
15
|
-
Prawn::Example.generate(filename) do
|
16
|
-
width = 100
|
17
|
-
height = 60
|
18
|
-
angle = 30
|
19
|
-
x = 200
|
20
|
-
y = cursor - 30
|
21
|
-
|
22
|
-
stroke_rectangle [0, y], width, height
|
23
|
-
text_box("This text was not rotated",
|
24
|
-
:at => [0, y], :width => width, :height => height)
|
25
|
-
|
26
|
-
stroke_rectangle [0, y - 100], width, height
|
27
|
-
text_box("This text was rotated around the center",
|
28
|
-
:at => [0, y - 100], :width => width, :height => height,
|
29
|
-
:rotate => angle, :rotate_around => :center)
|
30
|
-
|
31
|
-
[:lower_left, :upper_left,
|
32
|
-
:lower_right, :upper_right].each_with_index do |corner, index|
|
33
|
-
|
34
|
-
y = y - 100 if index == 2
|
35
|
-
stroke_rectangle [x + (index % 2) * 200, y], width, height
|
36
|
-
text_box("This text was rotated around the #{corner} corner.",
|
37
|
-
:at => [x + (index % 2) * 200, y],
|
38
|
-
:width => width,
|
39
|
-
:height => height,
|
40
|
-
:rotate => angle,
|
41
|
-
:rotate_around => corner)
|
42
|
-
end
|
43
|
-
end
|
data/manual/text/single_usage.rb
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# The PDF format has some built-in font support. If you want to use other fonts
|
4
|
-
# in Prawn you need to embed the font file.
|
5
|
-
#
|
6
|
-
# Doing this for a single font is extremely simple. Remember the Styling font
|
7
|
-
# example? Another use of the <code>font</code> method is to provide a font file
|
8
|
-
# path and the font will be embedded in the document and set as the current
|
9
|
-
# font.
|
10
|
-
#
|
11
|
-
# This is reasonable if a font is used only once, but, if a font used several
|
12
|
-
# times, providing the path each time it is used becomes cumbersome. The example
|
13
|
-
# on the next page shows a better way to deal with fonts which are used several
|
14
|
-
# times in a document.
|
15
|
-
#
|
16
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
17
|
-
%w[.. example_helper]))
|
18
|
-
|
19
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
20
|
-
Prawn::Example.generate(filename) do
|
21
|
-
# Using a TTF font file
|
22
|
-
font("#{Prawn::DATADIR}/fonts/Chalkboard.ttf") do
|
23
|
-
text "Written with the Chalkboard TTF font."
|
24
|
-
end
|
25
|
-
move_down 20
|
26
|
-
|
27
|
-
text "Written with the default font."
|
28
|
-
move_down 20
|
29
|
-
|
30
|
-
# Using an DFONT font file
|
31
|
-
font("#{Prawn::DATADIR}/fonts/Action Man.dfont") do
|
32
|
-
text "Written with the Action Man DFONT font"
|
33
|
-
end
|
34
|
-
move_down 20
|
35
|
-
|
36
|
-
text "Written with the default font once more."
|
37
|
-
end
|
data/manual/text/text.rb
DELETED
@@ -1,75 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# Examples for text rendering.
|
4
|
-
#
|
5
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
-
%w[.. example_helper]))
|
7
|
-
|
8
|
-
Prawn::Example.generate("text.pdf", :page_size => "FOLIO") do
|
9
|
-
|
10
|
-
package "text" do |p|
|
11
|
-
|
12
|
-
p.section "Basics" do |s|
|
13
|
-
s.example "free_flowing_text"
|
14
|
-
s.example "positioned_text"
|
15
|
-
s.example "text_box_overflow"
|
16
|
-
s.example "text_box_excess"
|
17
|
-
s.example "group", :eval_source => false
|
18
|
-
s.example "column_box"
|
19
|
-
end
|
20
|
-
|
21
|
-
p.section "Styling" do |s|
|
22
|
-
s.example "font"
|
23
|
-
s.example "font_size"
|
24
|
-
s.example "font_style"
|
25
|
-
s.example "color"
|
26
|
-
s.example "alignment"
|
27
|
-
s.example "leading"
|
28
|
-
s.example "kerning_and_character_spacing"
|
29
|
-
s.example "paragraph_indentation"
|
30
|
-
s.example "rotation"
|
31
|
-
end
|
32
|
-
|
33
|
-
p.section "Advanced Styling" do |s|
|
34
|
-
s.example "inline"
|
35
|
-
s.example "formatted_text"
|
36
|
-
s.example "formatted_callbacks"
|
37
|
-
s.example "rendering_and_color"
|
38
|
-
s.example "text_box_extensions"
|
39
|
-
end
|
40
|
-
|
41
|
-
p.section "External Fonts" do |s|
|
42
|
-
s.example "single_usage"
|
43
|
-
s.example "registering_families"
|
44
|
-
end
|
45
|
-
|
46
|
-
p.section "M17n" do |s|
|
47
|
-
s.example "utf8"
|
48
|
-
s.example "line_wrapping"
|
49
|
-
s.example "right_to_left_text"
|
50
|
-
s.example "fallback_fonts"
|
51
|
-
s.example "win_ansi_charset"
|
52
|
-
end
|
53
|
-
|
54
|
-
p.intro do
|
55
|
-
prose("This is probably the feature people will use the most. There is no shortage of options when it comes to text. You'll be hard pressed to find a use case that is not covered by one of the text methods and configurable options.
|
56
|
-
|
57
|
-
The examples show:")
|
58
|
-
|
59
|
-
list( "Text that flows from page to page automatically starting new pages when necessary",
|
60
|
-
"How to use text boxes and place them on specific positions",
|
61
|
-
"What to do when a text box is too small to fit its content",
|
62
|
-
"How to proceed when you want to prevent paragraphs from splitting between pages",
|
63
|
-
"Flowing text in columns",
|
64
|
-
"How to change the text style configuring font, size, alignment and many other settings",
|
65
|
-
"How to style specific portions of a text with inline styling and formatted text",
|
66
|
-
"How to define formatted callbacks to reuse common styling definitions",
|
67
|
-
"How to use the different rendering modes available for the text methods",
|
68
|
-
"How to create your custom text box extensions",
|
69
|
-
"How to use external fonts on your pdfs",
|
70
|
-
"What happens when rendering text in different languages"
|
71
|
-
)
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|
75
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# Whenever the <code>text_box</code> method truncates text, this truncated bit
|
4
|
-
# is not lost, it is the method return value and we can take advantage of that.
|
5
|
-
#
|
6
|
-
# We just need to take some precautions.
|
7
|
-
#
|
8
|
-
# This example renders as much of the text as will fit in a larger font inside
|
9
|
-
# one text_box and then proceeds to render the remaining text in the default
|
10
|
-
# size in a second text_box.
|
11
|
-
#
|
12
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
13
|
-
%w[.. example_helper]))
|
14
|
-
|
15
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
16
|
-
Prawn::Example.generate(filename) do
|
17
|
-
string = "This is the beginning of the text. It will be cut somewhere and " +
|
18
|
-
"the rest of the text will procede to be rendered this time by " +
|
19
|
-
"calling another method." + " . " * 50
|
20
|
-
|
21
|
-
y_position = cursor - 20
|
22
|
-
excess_text = text_box string,
|
23
|
-
:width => 300,
|
24
|
-
:height => 50,
|
25
|
-
:overflow => :truncate,
|
26
|
-
:at => [100, y_position],
|
27
|
-
:size => 18
|
28
|
-
|
29
|
-
text_box excess_text,
|
30
|
-
:width => 300,
|
31
|
-
:at => [100, y_position - 100]
|
32
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# We've already seen one way of using text boxes with the <code>text_box</code>
|
4
|
-
# method. Turns out this method is just a convenience for using the
|
5
|
-
# <code>Prawn::Text::Box</code> class as it creates a new object and call
|
6
|
-
# <code>render</code> on it.
|
7
|
-
#
|
8
|
-
# Knowing that any extensions we add to <code>Prawn::Text::Box</code> will take
|
9
|
-
# effect when we use the <code>text_box</code> method. To add an extension all
|
10
|
-
# we need to do is append the <code>Prawn::Text::Box.extensions</code> array
|
11
|
-
# with a module.
|
12
|
-
#
|
13
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
14
|
-
%w[.. example_helper]))
|
15
|
-
|
16
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
17
|
-
Prawn::Example.generate(filename) do
|
18
|
-
module TriangleBox
|
19
|
-
def available_width
|
20
|
-
height + 25
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
y_position = cursor - 10
|
25
|
-
width = 100
|
26
|
-
height = 100
|
27
|
-
|
28
|
-
Prawn::Text::Box.extensions << TriangleBox
|
29
|
-
stroke_rectangle([0, y_position], width, height)
|
30
|
-
text_box("A" * 100,
|
31
|
-
:at => [0, y_position],
|
32
|
-
:width => width,
|
33
|
-
:height => height)
|
34
|
-
|
35
|
-
Prawn::Text::Formatted::Box.extensions << TriangleBox
|
36
|
-
stroke_rectangle([200, y_position], width, height)
|
37
|
-
formatted_text_box([:text => "A" * 100, :color => "009900"],
|
38
|
-
:at => [200, y_position],
|
39
|
-
:width => width,
|
40
|
-
:height => height)
|
41
|
-
|
42
|
-
# Here we clear the extensions array
|
43
|
-
Prawn::Text::Box.extensions.clear
|
44
|
-
Prawn::Text::Formatted::Box.extensions.clear
|
45
|
-
end
|
@@ -1,44 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# The <code>text_box</code> method accepts both <code>:width</code> and
|
4
|
-
# <code>:height</code> options. So what happens if the text doesn't fit the box?
|
5
|
-
#
|
6
|
-
# The default behavior is to truncate the text but this can be changed with
|
7
|
-
# the <code>:overflow</code> option. Available modes are <code>:expand</code>
|
8
|
-
# (the box will increase to fit the text) and <code>:shrink_to_fit</code>
|
9
|
-
# (the text font size will be shrunk to fit).
|
10
|
-
#
|
11
|
-
# If <code>:shrink_to_fit</code> mode is used with the
|
12
|
-
# <code>:min_font_size</code> option set. The font size will not be reduced to
|
13
|
-
# less than the value provided even if it means truncating some text.
|
14
|
-
#
|
15
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
16
|
-
%w[.. example_helper]))
|
17
|
-
|
18
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
19
|
-
Prawn::Example.generate(filename) do
|
20
|
-
string = "This is the sample text used for the text boxes. See how it " +
|
21
|
-
"behave with the various overflow options used."
|
22
|
-
|
23
|
-
text string
|
24
|
-
|
25
|
-
y_position = cursor - 20
|
26
|
-
[:truncate, :expand, :shrink_to_fit].each_with_index do |mode, i|
|
27
|
-
text_box string, :at => [i * 150, y_position],
|
28
|
-
:width => 100, :height => 50,
|
29
|
-
:overflow => mode
|
30
|
-
end
|
31
|
-
|
32
|
-
string = "If the box is too small for the text, :shrink_to_fit " +
|
33
|
-
"can render the text in a really small font size."
|
34
|
-
|
35
|
-
move_down 120
|
36
|
-
text string
|
37
|
-
y_position = cursor - 20
|
38
|
-
[nil, 8, 10, 12].each_with_index do |value, index|
|
39
|
-
text_box string, :at => [index * 150, y_position],
|
40
|
-
:width => 50, :height => 50,
|
41
|
-
:overflow => :shrink_to_fit,
|
42
|
-
:min_font_size => value
|
43
|
-
end
|
44
|
-
end
|
data/manual/text/utf8.rb
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# Multilingualization isn't much of a problem on Prawn as its default encoding
|
4
|
-
# is UTF-8. The only thing you need to worry about is if the font support the
|
5
|
-
# glyphs of your language.
|
6
|
-
#
|
7
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
8
|
-
%w[.. example_helper]))
|
9
|
-
|
10
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
11
|
-
Prawn::Example.generate(filename) do
|
12
|
-
text "Take this example, a simple Euro sign:"
|
13
|
-
text "€", :size => 32
|
14
|
-
move_down 20
|
15
|
-
|
16
|
-
text "Seems ok. Now let's try something more complex:"
|
17
|
-
text "ὕαλον ϕαγεῖν δύναμαι· τοῦτο οὔ με βλάπτει."
|
18
|
-
move_down 20
|
19
|
-
|
20
|
-
text "Looks like the current font (#{font.inspect}) doesn't support those."
|
21
|
-
text "Let's try them with another font."
|
22
|
-
move_down 20
|
23
|
-
|
24
|
-
font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf") do
|
25
|
-
text "ὕαλον ϕαγεῖν δύναμαι· τοῦτο οὔ με βλάπτει."
|
26
|
-
text "There you go."
|
27
|
-
end
|
28
|
-
end
|
@@ -1,59 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
#
|
3
|
-
# Prints a list of all of the glyphs that can be rendered by Adobe's built
|
4
|
-
# in fonts, along with their character widths and WinAnsi codes. Be sure
|
5
|
-
# to pass these glyphs as UTF-8, and Prawn will transcode them for you.
|
6
|
-
#
|
7
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
8
|
-
%w[.. example_helper]))
|
9
|
-
|
10
|
-
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
11
|
-
Prawn::Example.generate(filename) do
|
12
|
-
FONT_SIZE = 9.5
|
13
|
-
|
14
|
-
x = 0
|
15
|
-
y = bounds.top
|
16
|
-
|
17
|
-
fields = [[20, :right], [8, :left], [12, :center], [30, :right], [8, :left],
|
18
|
-
[0, :left]]
|
19
|
-
|
20
|
-
font "Helvetica", :size => FONT_SIZE
|
21
|
-
|
22
|
-
move_down 30
|
23
|
-
text "(See next page for WinAnsi table)", :align => :center
|
24
|
-
start_new_page
|
25
|
-
|
26
|
-
Prawn::Encoding::WinAnsi::CHARACTERS.each_with_index do |name, index|
|
27
|
-
next if name == ".notdef"
|
28
|
-
y -= FONT_SIZE
|
29
|
-
|
30
|
-
if y < FONT_SIZE
|
31
|
-
y = bounds.top - FONT_SIZE
|
32
|
-
x += 170
|
33
|
-
end
|
34
|
-
|
35
|
-
code = "%d." % index
|
36
|
-
char = index.chr
|
37
|
-
|
38
|
-
width = 1000 * width_of(char, :size => FONT_SIZE) / FONT_SIZE
|
39
|
-
size = "%d" % width
|
40
|
-
|
41
|
-
data = [code, nil, char, size, nil, name]
|
42
|
-
dx = x
|
43
|
-
fields.zip(data).each do |(total_width, align), field|
|
44
|
-
if field
|
45
|
-
width = width_of(field, :size => FONT_SIZE)
|
46
|
-
|
47
|
-
case align
|
48
|
-
when :left then offset = 0
|
49
|
-
when :right then offset = total_width - width
|
50
|
-
when :center then offset = (total_width - width)/2
|
51
|
-
end
|
52
|
-
|
53
|
-
text_box(field, :at => [dx + offset, y], :skip_encoding => true)
|
54
|
-
end
|
55
|
-
|
56
|
-
dx += total_width
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
data/spec/acceptance/png.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
require_relative "../../lib/prawn"
|
2
|
-
|
3
|
-
images = [
|
4
|
-
["Type 0", "#{Prawn::BASEDIR}/data/images/web-links.png"],
|
5
|
-
["Type 2", "#{Prawn::BASEDIR}/data/images/ruport.png"],
|
6
|
-
["Type 3", "#{Prawn::BASEDIR}/data/images/indexed_color.png"],
|
7
|
-
["Type 4", "#{Prawn::BASEDIR}/data/images/page_white_text.png"],
|
8
|
-
["Type 6", "#{Prawn::BASEDIR}/data/images/dice.png"],
|
9
|
-
]
|
10
|
-
|
11
|
-
Prawn::Document.generate("png_types.pdf", :page_size => "A5") do
|
12
|
-
images.each do |header, file|
|
13
|
-
start_new_page unless header.include?("0")
|
14
|
-
|
15
|
-
fill_color "FF0000"
|
16
|
-
|
17
|
-
fill_rectangle bounds.top_left, bounds.width, bounds.height
|
18
|
-
text header
|
19
|
-
|
20
|
-
image file, :at => [50,450]
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
data/spec/column_box_spec.rb
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
|
4
|
-
|
5
|
-
describe "A column box" do
|
6
|
-
it "has sensible left and right values" do
|
7
|
-
create_pdf
|
8
|
-
@pdf.column_box [0, @pdf.cursor], :width => @pdf.bounds.width,
|
9
|
-
:height => 200, :columns => 3, :spacer => 25 do
|
10
|
-
left = @pdf.bounds.left
|
11
|
-
right = @pdf.bounds.right
|
12
|
-
|
13
|
-
@pdf.bounds.move_past_bottom # next column
|
14
|
-
|
15
|
-
@pdf.bounds.left.should be > left
|
16
|
-
@pdf.bounds.left.should be > right
|
17
|
-
@pdf.bounds.right.should be > @pdf.bounds.left
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
it "includes spacers between columns but not at the end" do
|
22
|
-
create_pdf
|
23
|
-
@pdf.column_box [0, @pdf.cursor], :width => 500,
|
24
|
-
:height => 200, :columns => 3, :spacer => 25 do
|
25
|
-
@pdf.bounds.width.should == 150 # (500 - (25 * 2)) / 3
|
26
|
-
|
27
|
-
@pdf.bounds.move_past_bottom
|
28
|
-
@pdf.bounds.move_past_bottom
|
29
|
-
|
30
|
-
@pdf.bounds.right.should == 500
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
it "does not reset the top margin on a new page by default" do
|
35
|
-
create_pdf
|
36
|
-
page_top = @pdf.cursor
|
37
|
-
@pdf.move_down 50
|
38
|
-
init_column_top = @pdf.cursor
|
39
|
-
@pdf.column_box [0, @pdf.cursor], :width => 500,
|
40
|
-
:height => 200, :columns => 2 do
|
41
|
-
|
42
|
-
@pdf.bounds.move_past_bottom
|
43
|
-
@pdf.bounds.move_past_bottom
|
44
|
-
|
45
|
-
@pdf.bounds.absolute_top.should == init_column_top
|
46
|
-
@pdf.bounds.absolute_top.should_not == page_top
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
it "does reset the top margin when reflow_margins is set" do
|
51
|
-
create_pdf
|
52
|
-
page_top = @pdf.cursor
|
53
|
-
@pdf.move_down 50
|
54
|
-
init_column_top = @pdf.cursor
|
55
|
-
@pdf.column_box [0, @pdf.cursor], :width => 500, :reflow_margins => true,
|
56
|
-
:height => 200, :columns => 2 do
|
57
|
-
|
58
|
-
@pdf.bounds.move_past_bottom
|
59
|
-
@pdf.bounds.move_past_bottom
|
60
|
-
|
61
|
-
@pdf.bounds.absolute_top.should == page_top
|
62
|
-
@pdf.bounds.absolute_top.should_not == init_column_top
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|