prawn 2.0.2 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/GPLv2 +20 -21
- data/Gemfile +3 -9
- data/Rakefile +20 -23
- data/lib/prawn.rb +37 -49
- data/lib/prawn/document.rb +181 -133
- data/lib/prawn/document/bounding_box.rb +41 -29
- data/lib/prawn/document/column_box.rb +7 -7
- data/lib/prawn/document/internals.rb +18 -8
- data/lib/prawn/document/span.rb +21 -16
- data/lib/prawn/encoding.rb +69 -68
- data/lib/prawn/errors.rb +12 -7
- data/lib/prawn/font.rb +115 -69
- data/lib/prawn/font_metric_cache.rb +14 -8
- data/lib/prawn/{font → fonts}/afm.rb +102 -68
- data/lib/prawn/{font → fonts}/dfont.rb +5 -11
- data/lib/prawn/fonts/otf.rb +11 -0
- data/lib/prawn/fonts/ttc.rb +36 -0
- data/lib/prawn/{font → fonts}/ttf.rb +87 -68
- data/lib/prawn/graphics.rb +120 -80
- data/lib/prawn/graphics/blend_mode.rb +65 -0
- data/lib/prawn/graphics/cap_style.rb +3 -3
- data/lib/prawn/graphics/color.rb +27 -25
- data/lib/prawn/graphics/dash.rb +23 -11
- data/lib/prawn/graphics/join_style.rb +9 -3
- data/lib/prawn/graphics/patterns.rb +197 -67
- data/lib/prawn/graphics/transformation.rb +17 -8
- data/lib/prawn/graphics/transparency.rb +17 -13
- data/lib/prawn/grid.rb +48 -47
- data/lib/prawn/image_handler.rb +5 -5
- data/lib/prawn/images.rb +39 -30
- data/lib/prawn/images/image.rb +2 -1
- data/lib/prawn/images/jpg.rb +28 -22
- data/lib/prawn/images/png.rb +107 -66
- data/lib/prawn/measurement_extensions.rb +10 -9
- data/lib/prawn/measurements.rb +19 -15
- data/lib/prawn/outline.rb +97 -77
- data/lib/prawn/repeater.rb +14 -10
- data/lib/prawn/security.rb +81 -61
- data/lib/prawn/security/arcfour.rb +2 -2
- data/lib/prawn/soft_mask.rb +26 -26
- data/lib/prawn/stamp.rb +20 -13
- data/lib/prawn/text.rb +68 -52
- data/lib/prawn/text/box.rb +11 -8
- data/lib/prawn/text/formatted.rb +5 -5
- data/lib/prawn/text/formatted/arranger.rb +78 -49
- data/lib/prawn/text/formatted/box.rb +134 -100
- data/lib/prawn/text/formatted/fragment.rb +11 -14
- data/lib/prawn/text/formatted/line_wrap.rb +121 -63
- data/lib/prawn/text/formatted/parser.rb +139 -117
- data/lib/prawn/text/formatted/wrap.rb +43 -31
- data/lib/prawn/transformation_stack.rb +44 -0
- data/lib/prawn/utilities.rb +7 -22
- data/lib/prawn/version.rb +2 -2
- data/lib/prawn/view.rb +17 -7
- data/manual/basic_concepts/adding_pages.rb +6 -7
- data/manual/basic_concepts/basic_concepts.rb +31 -22
- data/manual/basic_concepts/creation.rb +10 -11
- data/manual/basic_concepts/cursor.rb +4 -5
- data/manual/basic_concepts/measurement.rb +6 -7
- data/manual/basic_concepts/origin.rb +5 -6
- data/manual/basic_concepts/other_cursor_helpers.rb +11 -12
- data/manual/basic_concepts/view.rb +22 -16
- data/manual/bounding_box/bounding_box.rb +29 -24
- data/manual/bounding_box/bounds.rb +11 -12
- data/manual/bounding_box/canvas.rb +4 -5
- data/manual/bounding_box/creation.rb +6 -7
- data/manual/bounding_box/indentation.rb +14 -15
- data/manual/bounding_box/nesting.rb +24 -17
- data/manual/bounding_box/russian_boxes.rb +14 -13
- data/manual/bounding_box/stretchy.rb +12 -13
- data/manual/contents.rb +28 -22
- data/manual/cover.rb +33 -28
- data/manual/document_and_page_options/background.rb +11 -13
- data/manual/document_and_page_options/document_and_page_options.rb +25 -20
- data/manual/document_and_page_options/metadata.rb +18 -16
- data/manual/document_and_page_options/page_margins.rb +18 -20
- data/manual/document_and_page_options/page_size.rb +13 -12
- data/manual/document_and_page_options/print_scaling.rb +17 -15
- data/manual/example_helper.rb +5 -4
- data/manual/graphics/blend_mode.rb +52 -0
- data/manual/graphics/circle_and_ellipse.rb +4 -5
- data/manual/graphics/color.rb +7 -9
- data/manual/graphics/common_lines.rb +7 -8
- data/manual/graphics/fill_and_stroke.rb +4 -5
- data/manual/graphics/fill_rules.rb +9 -10
- data/manual/graphics/gradients.rb +27 -21
- data/manual/graphics/graphics.rb +48 -39
- data/manual/graphics/helper.rb +12 -9
- data/manual/graphics/line_width.rb +8 -7
- data/manual/graphics/lines_and_curves.rb +7 -8
- data/manual/graphics/polygon.rb +6 -8
- data/manual/graphics/rectangle.rb +4 -5
- data/manual/graphics/rotate.rb +6 -7
- data/manual/graphics/scale.rb +14 -15
- data/manual/graphics/soft_masks.rb +4 -5
- data/manual/graphics/stroke_cap.rb +6 -7
- data/manual/graphics/stroke_dash.rb +11 -12
- data/manual/graphics/stroke_join.rb +5 -6
- data/manual/graphics/translate.rb +9 -10
- data/manual/graphics/transparency.rb +7 -8
- data/manual/how_to_read_this_manual.rb +6 -6
- data/manual/images/absolute_position.rb +6 -7
- data/manual/images/fit.rb +7 -8
- data/manual/images/horizontal.rb +9 -10
- data/manual/images/images.rb +28 -24
- data/manual/images/plain_image.rb +5 -6
- data/manual/images/scale.rb +9 -10
- data/manual/images/vertical.rb +13 -14
- data/manual/images/width_and_height.rb +10 -11
- data/manual/layout/boxes.rb +5 -6
- data/manual/layout/content.rb +7 -8
- data/manual/layout/layout.rb +18 -16
- data/manual/layout/simple_grid.rb +6 -7
- data/manual/outline/add_subsection_to.rb +20 -21
- data/manual/outline/insert_section_after.rb +15 -16
- data/manual/outline/outline.rb +21 -17
- data/manual/outline/sections_and_pages.rb +17 -18
- data/manual/repeatable_content/alternate_page_numbering.rb +21 -17
- data/manual/repeatable_content/page_numbering.rb +17 -16
- data/manual/repeatable_content/repeatable_content.rb +25 -19
- data/manual/repeatable_content/repeater.rb +14 -15
- data/manual/repeatable_content/stamp.rb +14 -15
- data/manual/security/encryption.rb +9 -10
- data/manual/security/permissions.rb +19 -14
- data/manual/security/security.rb +19 -16
- data/manual/table.rb +3 -3
- data/manual/text/alignment.rb +16 -17
- data/manual/text/color.rb +12 -11
- data/manual/text/column_box.rb +9 -10
- data/manual/text/fallback_fonts.rb +25 -21
- data/manual/text/font.rb +11 -12
- data/manual/text/font_size.rb +13 -14
- data/manual/text/font_style.rb +7 -8
- data/manual/text/formatted_callbacks.rb +25 -21
- data/manual/text/formatted_text.rb +33 -25
- data/manual/text/free_flowing_text.rb +20 -21
- data/manual/text/inline.rb +18 -19
- data/manual/text/kerning_and_character_spacing.rb +14 -15
- data/manual/text/leading.rb +7 -8
- data/manual/text/line_wrapping.rb +37 -18
- data/manual/text/paragraph_indentation.rb +13 -14
- data/manual/text/positioned_text.rb +15 -16
- data/manual/text/registering_families.rb +20 -21
- data/manual/text/rendering_and_color.rb +9 -10
- data/manual/text/right_to_left_text.rb +26 -19
- data/manual/text/rotation.rb +28 -23
- data/manual/text/single_usage.rb +8 -9
- data/manual/text/text.rb +57 -52
- data/manual/text/text_box_excess.rb +20 -17
- data/manual/text/text_box_extensions.rb +18 -15
- data/manual/text/text_box_overflow.rb +18 -19
- data/manual/text/utf8.rb +11 -12
- data/manual/text/win_ansi_charset.rb +21 -19
- data/prawn.gemspec +45 -33
- data/spec/extensions/encoding_helpers.rb +3 -3
- data/spec/prawn/document/bounding_box_spec.rb +546 -0
- data/spec/prawn/document/column_box_spec.rb +75 -0
- data/spec/prawn/document/security_spec.rb +176 -0
- data/spec/prawn/document_annotations_spec.rb +76 -0
- data/spec/prawn/document_destinations_spec.rb +15 -0
- data/spec/prawn/document_grid_spec.rb +99 -0
- data/spec/prawn/document_reference_spec.rb +27 -0
- data/spec/prawn/document_span_spec.rb +36 -0
- data/spec/prawn/document_spec.rb +802 -0
- data/spec/prawn/font_metric_cache_spec.rb +54 -0
- data/spec/prawn/font_spec.rb +542 -0
- data/spec/prawn/graphics/blend_mode_spec.rb +63 -0
- data/spec/prawn/graphics/transparency_spec.rb +81 -0
- data/spec/prawn/graphics_spec.rb +837 -0
- data/spec/prawn/graphics_stroke_styles_spec.rb +229 -0
- data/spec/prawn/image_handler_spec.rb +53 -0
- data/spec/prawn/images/jpg_spec.rb +20 -0
- data/spec/prawn/images/png_spec.rb +283 -0
- data/spec/prawn/images_spec.rb +224 -0
- data/spec/prawn/measurements_extensions_spec.rb +24 -0
- data/spec/prawn/outline_spec.rb +412 -0
- data/spec/prawn/repeater_spec.rb +165 -0
- data/spec/prawn/soft_mask_spec.rb +74 -0
- data/spec/prawn/stamp_spec.rb +172 -0
- data/spec/prawn/text/box_spec.rb +1112 -0
- data/spec/prawn/text/formatted/arranger_spec.rb +466 -0
- data/spec/prawn/text/formatted/box_spec.rb +846 -0
- data/spec/prawn/text/formatted/fragment_spec.rb +343 -0
- data/spec/prawn/text/formatted/line_wrap_spec.rb +494 -0
- data/spec/prawn/text/formatted/parser_spec.rb +697 -0
- data/spec/prawn/text_draw_text_spec.rb +149 -0
- data/spec/prawn/text_rendering_mode_spec.rb +48 -0
- data/spec/prawn/text_spacing_spec.rb +95 -0
- data/spec/prawn/text_spec.rb +603 -0
- data/spec/prawn/text_with_inline_formatting_spec.rb +35 -0
- data/spec/prawn/transformation_stack_spec.rb +66 -0
- data/spec/prawn/view_spec.rb +63 -0
- data/spec/prawn_manual_spec.rb +35 -0
- data/spec/spec_helper.rb +19 -23
- metadata +145 -185
- metadata.gz.sig +4 -0
- data/data/images/16bit.alpha +0 -0
- data/data/images/16bit.color +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/dice.alpha +0 -0
- data/data/images/dice.color +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/indexed_color.dat +0 -0
- data/data/images/indexed_color.png +0 -0
- data/data/images/letterhead.jpg +0 -0
- data/data/images/license.md +0 -8
- data/data/images/page_white_text.alpha +0 -0
- data/data/images/page_white_text.color +0 -0
- data/data/images/page_white_text.png +0 -0
- data/data/images/pal_bk.png +0 -0
- data/data/images/pigs.jpg +0 -0
- data/data/images/prawn.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 +0 -1
- 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/form.pdf +1 -819
- data/data/pdfs/hexagon.pdf +0 -61
- data/data/pdfs/indirect_reference.pdf +0 -86
- data/data/pdfs/multipage_template.pdf +0 -127
- data/data/pdfs/nested_pages.pdf +0 -118
- data/data/pdfs/page_without_mediabox.pdf +0 -193
- data/data/pdfs/resources_as_indirect_object.pdf +0 -83
- data/data/pdfs/two_hexagons.pdf +0 -90
- data/data/pdfs/version_1_6.pdf +0 -61
- data/data/shift_jis_text.txt +0 -1
- data/spec/acceptance/png.rb +0 -24
- data/spec/annotations_spec.rb +0 -67
- data/spec/bounding_box_spec.rb +0 -501
- data/spec/column_box_spec.rb +0 -59
- data/spec/destinations_spec.rb +0 -13
- data/spec/document_spec.rb +0 -742
- data/spec/extensions/mocha.rb +0 -45
- data/spec/font_metric_cache_spec.rb +0 -52
- data/spec/font_spec.rb +0 -475
- data/spec/formatted_text_arranger_spec.rb +0 -423
- data/spec/formatted_text_box_spec.rb +0 -716
- data/spec/formatted_text_fragment_spec.rb +0 -299
- data/spec/graphics_spec.rb +0 -666
- data/spec/grid_spec.rb +0 -95
- data/spec/image_handler_spec.rb +0 -53
- data/spec/images_spec.rb +0 -167
- data/spec/inline_formatted_text_parser_spec.rb +0 -568
- data/spec/jpg_spec.rb +0 -23
- data/spec/line_wrap_spec.rb +0 -366
- data/spec/measurement_units_spec.rb +0 -22
- data/spec/outline_spec.rb +0 -409
- data/spec/png_spec.rb +0 -235
- data/spec/reference_spec.rb +0 -25
- data/spec/repeater_spec.rb +0 -154
- data/spec/security_spec.rb +0 -151
- data/spec/soft_mask_spec.rb +0 -78
- data/spec/span_spec.rb +0 -43
- data/spec/stamp_spec.rb +0 -179
- data/spec/stroke_styles_spec.rb +0 -208
- data/spec/text_at_spec.rb +0 -142
- data/spec/text_box_spec.rb +0 -1038
- data/spec/text_rendering_mode_spec.rb +0 -45
- data/spec/text_spacing_spec.rb +0 -93
- data/spec/text_spec.rb +0 -549
- data/spec/text_with_inline_formatting_spec.rb +0 -35
- data/spec/transparency_spec.rb +0 -91
- data/spec/view_spec.rb +0 -42
@@ -1,5 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# Sometimes we want the text on a specific position on the page. The
|
4
4
|
# <code>text</code> method just won't help us.
|
5
5
|
#
|
@@ -16,23 +16,22 @@
|
|
16
16
|
# will flow to a new line if it reaches the right border.
|
17
17
|
#
|
18
18
|
# Given that, <code>text_box</code> is the better option available.
|
19
|
-
|
20
|
-
|
21
|
-
%w[.. example_helper]))
|
19
|
+
|
20
|
+
require_relative '../example_helper'
|
22
21
|
|
23
22
|
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
24
23
|
Prawn::ManualBuilder::Example.generate(filename) do
|
25
|
-
draw_text "This draw_text line is absolute positioned. However don't "
|
26
|
-
|
27
|
-
|
24
|
+
draw_text "This draw_text line is absolute positioned. However don't " \
|
25
|
+
'expect it to flow even if it hits the document border',
|
26
|
+
at: [200, 300]
|
28
27
|
|
29
|
-
text_box
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
28
|
+
text_box 'This is a text box, you can control where it will flow by ' \
|
29
|
+
'specifying the :height and :width options',
|
30
|
+
at: [100, 250],
|
31
|
+
height: 100,
|
32
|
+
width: 100
|
34
33
|
|
35
|
-
text_box
|
36
|
-
|
37
|
-
|
34
|
+
text_box 'Another text box with no :width option passed, so it will ' \
|
35
|
+
'flow to a new line whenever it reaches the right margin. ',
|
36
|
+
at: [200, 100]
|
38
37
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# Registering font families will help you when you want to use a font over and
|
4
4
|
# over or if you would like to take advantage of the <code>:style</code> option
|
5
5
|
# of the text methods and the <code>b</code> and <code>i</code> tags when using
|
@@ -7,46 +7,45 @@
|
|
7
7
|
#
|
8
8
|
# To register a font family update the <code>font_families</code>
|
9
9
|
# hash with the font path for each style you want to use.
|
10
|
-
|
11
|
-
|
12
|
-
%w[.. example_helper]))
|
10
|
+
|
11
|
+
require_relative '../example_helper'
|
13
12
|
|
14
13
|
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
15
14
|
Prawn::ManualBuilder::Example.generate(filename) do
|
16
|
-
# Registering a single
|
15
|
+
# Registering a single external font
|
17
16
|
font_families.update(
|
18
|
-
|
19
|
-
:
|
17
|
+
'DejaVu Sans' => {
|
18
|
+
normal: "#{Prawn::DATADIR}/fonts/DejaVuSans.ttf"
|
20
19
|
}
|
21
20
|
)
|
22
21
|
|
23
|
-
font(
|
24
|
-
text
|
22
|
+
font('DejaVu Sans') do
|
23
|
+
text 'Using the DejaVu Sans font providing only its name to the font method'
|
25
24
|
end
|
26
25
|
move_down 20
|
27
26
|
|
28
27
|
# Registering a DFONT package
|
29
28
|
font_path = "#{Prawn::DATADIR}/fonts/Panic+Sans.dfont"
|
30
29
|
font_families.update(
|
31
|
-
|
32
|
-
:
|
33
|
-
:
|
34
|
-
:
|
35
|
-
:
|
30
|
+
'Panic Sans' => {
|
31
|
+
normal: { file: font_path, font: 'PanicSans' },
|
32
|
+
italic: { file: font_path, font: 'PanicSans-Italic' },
|
33
|
+
bold: { file: font_path, font: 'PanicSans-Bold' },
|
34
|
+
bold_italic: { file: font_path, font: 'PanicSans-BoldItalic' }
|
36
35
|
}
|
37
36
|
)
|
38
37
|
|
39
|
-
font
|
40
|
-
text
|
38
|
+
font 'Panic Sans'
|
39
|
+
text 'Also using Panic Sans by providing only its name'
|
41
40
|
move_down 20
|
42
41
|
|
43
|
-
text
|
44
|
-
|
42
|
+
text 'Taking <b>advantage</b> of the <i>inline formatting</i>',
|
43
|
+
inline_format: true
|
45
44
|
move_down 20
|
46
45
|
|
47
|
-
[
|
46
|
+
%i[bold bold_italic italic normal].each do |style|
|
48
47
|
text "Using the #{style} style option.",
|
49
|
-
|
48
|
+
style: style
|
50
49
|
move_down 10
|
51
50
|
end
|
52
51
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# You have already seen how to set the text color using both inline formatting
|
4
4
|
# and the format text methods. There is another way by using the graphics
|
5
5
|
# methods <code>fill_color</code> and <code>stroke_color</code>.
|
@@ -11,27 +11,26 @@
|
|
11
11
|
# being filled (the default mode) or just stroked or both filled and stroked.
|
12
12
|
# This can be set using the <code>text_rendering_mode</code> method or the
|
13
13
|
# <code>:mode</code> option on the text methods.
|
14
|
-
|
15
|
-
|
16
|
-
%w[.. example_helper]))
|
14
|
+
|
15
|
+
require_relative '../example_helper'
|
17
16
|
|
18
17
|
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
19
18
|
Prawn::ManualBuilder::Example.generate(filename) do
|
20
|
-
fill_color
|
21
|
-
stroke_color
|
19
|
+
fill_color '00ff00'
|
20
|
+
stroke_color '0000ff'
|
22
21
|
|
23
22
|
font_size(40) do
|
24
23
|
# normal rendering mode: fill
|
25
|
-
text
|
24
|
+
text 'This text is filled with green.'
|
26
25
|
move_down 20
|
27
26
|
|
28
27
|
# inline rendering mode: stroke
|
29
|
-
text
|
28
|
+
text 'This text is stroked with blue', mode: :stroke
|
30
29
|
move_down 20
|
31
30
|
|
32
31
|
# block rendering mode: fill and stroke
|
33
32
|
text_rendering_mode(:fill_stroke) do
|
34
|
-
text
|
33
|
+
text 'This text is filled with green and stroked with blue'
|
35
34
|
end
|
36
35
|
end
|
37
36
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# Prawn can be used with right-to-left text. The direction can be set
|
4
4
|
# document-wide, on particular text, or on a text-box. Setting the direction to
|
5
5
|
# <code>:rtl</code> automatically changes the default alignment to
|
@@ -13,35 +13,42 @@
|
|
13
13
|
# languages is easy using the <code>bidi</code> Ruby Gem and its
|
14
14
|
# <code>render_visual</code> function. See https://github.com/elad/ruby-bidi for
|
15
15
|
# instructions and an example using Prawn.
|
16
|
-
|
17
|
-
|
16
|
+
|
17
|
+
require_relative '../example_helper'
|
18
18
|
|
19
19
|
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
20
20
|
Prawn::ManualBuilder::Example.generate(filename) do
|
21
21
|
# set the direction document-wide
|
22
22
|
self.text_direction = :rtl
|
23
23
|
|
24
|
-
font("#{Prawn::DATADIR}/fonts/gkai00mp.ttf", :
|
25
|
-
long_text =
|
24
|
+
font("#{Prawn::DATADIR}/fonts/gkai00mp.ttf", size: 16) do
|
25
|
+
long_text = '写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个'\
|
26
|
+
'小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事写个小爬虫把你的页'\
|
27
|
+
'面上的关键信息顺次爬下来也不是什么难事写个小'
|
26
28
|
text long_text
|
27
29
|
move_down 20
|
28
30
|
|
29
|
-
text
|
31
|
+
text 'You can override the document direction.', direction: :ltr
|
30
32
|
move_down 20
|
31
33
|
|
32
|
-
formatted_text [
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
formatted_text [
|
35
|
+
{ text: '更可怕的是,同质化竞争对手可以按照' },
|
36
|
+
{ text: 'URL', direction: :ltr },
|
37
|
+
{ text: '中后面这个' },
|
38
|
+
{ text: 'ID', direction: :ltr },
|
39
|
+
{ text: '来遍历您的' },
|
40
|
+
{ text: 'DB', direction: :ltr },
|
41
|
+
{ text: '中的内容,写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么'\
|
42
|
+
'难事,这样的话,你就非常被动了。' }
|
43
|
+
]
|
39
44
|
move_down 20
|
40
45
|
|
41
|
-
formatted_text [
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
+
formatted_text [
|
47
|
+
{ text: '更可怕的是,同质化竞争对手可以按照' },
|
48
|
+
{ text: 'this', direction: :ltr },
|
49
|
+
{ text: "won't", direction: :ltr, size: 24 },
|
50
|
+
{ text: 'work', direction: :ltr },
|
51
|
+
{ text: '中的内容,写个小爬虫把你的页面上的关键信息顺次爬下来也不是什么难事' }
|
52
|
+
]
|
46
53
|
end
|
47
54
|
end
|
data/manual/text/rotation.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# Rotating text is best avoided on free flowing text, so this example
|
4
4
|
# will only use the <code>text_box</code> method as we can have much more
|
5
5
|
# control over its output.
|
@@ -7,36 +7,41 @@
|
|
7
7
|
# To rotate text all we need to do is use the <code>:rotate</code> option
|
8
8
|
# passing an angle in degrees and an optional <code>:rotate_around</code> to
|
9
9
|
# indicate the origin of the rotation (the default is <code>:upper_left</code>).
|
10
|
-
|
11
|
-
|
12
|
-
%w[.. example_helper]))
|
10
|
+
|
11
|
+
require_relative '../example_helper'
|
13
12
|
|
14
13
|
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
15
14
|
Prawn::ManualBuilder::Example.generate(filename) do
|
16
|
-
width
|
15
|
+
width = 100
|
17
16
|
height = 60
|
18
|
-
angle
|
19
|
-
x
|
20
|
-
y
|
17
|
+
angle = 30
|
18
|
+
x = 200
|
19
|
+
y = cursor - 30
|
21
20
|
|
22
21
|
stroke_rectangle [0, y], width, height
|
23
|
-
text_box(
|
24
|
-
|
22
|
+
text_box(
|
23
|
+
'This text was not rotated',
|
24
|
+
at: [0, y], width: width, height: height
|
25
|
+
)
|
25
26
|
|
26
27
|
stroke_rectangle [0, y - 100], width, height
|
27
|
-
text_box(
|
28
|
-
|
29
|
-
|
28
|
+
text_box(
|
29
|
+
'This text was rotated around the center',
|
30
|
+
at: [0, y - 100], width: width, height: height,
|
31
|
+
rotate: angle, rotate_around: :center
|
32
|
+
)
|
30
33
|
|
31
|
-
[
|
32
|
-
|
33
|
-
y
|
34
|
+
%i[lower_left upper_left lower_right upper_right]
|
35
|
+
.each_with_index do |corner, index|
|
36
|
+
y -= 100 if index == 2
|
34
37
|
stroke_rectangle [x + (index % 2) * 200, y], width, height
|
35
|
-
text_box(
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
38
|
+
text_box(
|
39
|
+
"This text was rotated around the #{corner} corner.",
|
40
|
+
at: [x + (index % 2) * 200, y],
|
41
|
+
width: width,
|
42
|
+
height: height,
|
43
|
+
rotate: angle,
|
44
|
+
rotate_around: corner
|
45
|
+
)
|
41
46
|
end
|
42
47
|
end
|
data/manual/text/single_usage.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# The PDF format has some built-in font support. If you want to use other fonts
|
4
4
|
# in Prawn you need to embed the font file.
|
5
5
|
#
|
@@ -12,26 +12,25 @@
|
|
12
12
|
# times, providing the path each time it is used becomes cumbersome. The example
|
13
13
|
# on the next page shows a better way to deal with fonts which are used several
|
14
14
|
# times in a document.
|
15
|
-
|
16
|
-
|
17
|
-
%w[.. example_helper]))
|
15
|
+
|
16
|
+
require_relative '../example_helper'
|
18
17
|
|
19
18
|
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
|
20
19
|
Prawn::ManualBuilder::Example.generate(filename) do
|
21
20
|
# Using a TTF font file
|
22
21
|
font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf") do
|
23
|
-
text
|
22
|
+
text 'Written with the DejaVu Sans TTF font.'
|
24
23
|
end
|
25
24
|
move_down 20
|
26
25
|
|
27
|
-
text
|
26
|
+
text 'Written with the default font.'
|
28
27
|
move_down 20
|
29
28
|
|
30
29
|
# Using an DFONT font file
|
31
30
|
font("#{Prawn::DATADIR}/fonts/Panic+Sans.dfont") do
|
32
|
-
text
|
31
|
+
text 'Written with the Panic Sans DFONT font'
|
33
32
|
end
|
34
33
|
move_down 20
|
35
34
|
|
36
|
-
text
|
35
|
+
text 'Written with the default font once more.'
|
37
36
|
end
|
data/manual/text/text.rb
CHANGED
@@ -1,70 +1,75 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
3
|
# Examples for text rendering.
|
4
|
-
#
|
5
|
-
require File.expand_path(File.join(File.dirname(__FILE__),
|
6
|
-
%w[.. example_helper]))
|
7
4
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
s.example
|
14
|
-
s.example
|
15
|
-
s.example
|
5
|
+
require '../example_helper'
|
6
|
+
|
7
|
+
Prawn::ManualBuilder::Example.generate('text.pdf', page_size: 'FOLIO') do
|
8
|
+
package 'text' do |p|
|
9
|
+
p.section 'Basics' do |s|
|
10
|
+
s.example 'free_flowing_text'
|
11
|
+
s.example 'positioned_text'
|
12
|
+
s.example 'text_box_overflow'
|
13
|
+
s.example 'text_box_excess'
|
14
|
+
s.example 'column_box'
|
16
15
|
end
|
17
16
|
|
18
|
-
p.section
|
19
|
-
s.example
|
20
|
-
s.example
|
21
|
-
s.example
|
22
|
-
s.example
|
23
|
-
s.example
|
24
|
-
s.example
|
25
|
-
s.example
|
26
|
-
s.example
|
27
|
-
s.example
|
17
|
+
p.section 'Styling' do |s|
|
18
|
+
s.example 'font'
|
19
|
+
s.example 'font_size'
|
20
|
+
s.example 'font_style'
|
21
|
+
s.example 'color'
|
22
|
+
s.example 'alignment'
|
23
|
+
s.example 'leading'
|
24
|
+
s.example 'kerning_and_character_spacing'
|
25
|
+
s.example 'paragraph_indentation'
|
26
|
+
s.example 'rotation'
|
28
27
|
end
|
29
28
|
|
30
|
-
p.section
|
31
|
-
s.example
|
32
|
-
s.example
|
33
|
-
s.example
|
34
|
-
s.example
|
35
|
-
s.example
|
29
|
+
p.section 'Advanced Styling' do |s|
|
30
|
+
s.example 'inline'
|
31
|
+
s.example 'formatted_text'
|
32
|
+
s.example 'formatted_callbacks'
|
33
|
+
s.example 'rendering_and_color'
|
34
|
+
s.example 'text_box_extensions'
|
36
35
|
end
|
37
36
|
|
38
|
-
p.section
|
39
|
-
s.example
|
40
|
-
s.example
|
37
|
+
p.section 'External Fonts' do |s|
|
38
|
+
s.example 'single_usage'
|
39
|
+
s.example 'registering_families'
|
41
40
|
end
|
42
41
|
|
43
|
-
p.section
|
44
|
-
s.example
|
45
|
-
s.example
|
46
|
-
s.example
|
47
|
-
s.example
|
48
|
-
s.example
|
42
|
+
p.section 'Multilingualization' do |s|
|
43
|
+
s.example 'utf8'
|
44
|
+
s.example 'line_wrapping'
|
45
|
+
s.example 'right_to_left_text'
|
46
|
+
s.example 'fallback_fonts'
|
47
|
+
s.example 'win_ansi_charset'
|
49
48
|
end
|
50
49
|
|
51
50
|
p.intro do
|
52
|
-
prose
|
51
|
+
prose <<-TEXT
|
52
|
+
This is probably the feature people will use the most. There is no
|
53
|
+
shortage of options when it comes to text. You'll be hard pressed to
|
54
|
+
find a use case that is not covered by one of the text methods and
|
55
|
+
configurable options.
|
53
56
|
|
54
|
-
|
57
|
+
The examples show:
|
58
|
+
TEXT
|
55
59
|
|
56
|
-
list(
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
60
|
+
list(
|
61
|
+
'Text that flows from page to page automatically starting new pages when necessary',
|
62
|
+
'How to use text boxes and place them on specific positions',
|
63
|
+
'What to do when a text box is too small to fit its content',
|
64
|
+
'Flowing text in columns',
|
65
|
+
'How to change the text style configuring font, size, alignment and many other settings',
|
66
|
+
'How to style specific portions of a text with inline styling and formatted text',
|
67
|
+
'How to define formatted callbacks to reuse common styling definitions',
|
68
|
+
'How to use the different rendering modes available for the text methods',
|
69
|
+
'How to create your custom text box extensions',
|
70
|
+
'How to use external fonts on your pdfs',
|
71
|
+
'What happens when rendering text in different languages'
|
72
|
+
)
|
68
73
|
end
|
69
74
|
end
|
70
75
|
end
|