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,198 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# core/text/line_wrap.rb : Implements individual line wrapping
|
4
|
+
#
|
5
|
+
# Copyright January 2010, Daniel Nelson. All Rights Reserved.
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
#
|
9
|
+
|
10
|
+
module Prawn
|
11
|
+
module Core
|
12
|
+
module Text
|
13
|
+
|
14
|
+
class LineWrap #:nodoc:
|
15
|
+
|
16
|
+
# The width of the last wrapped line
|
17
|
+
#
|
18
|
+
def width
|
19
|
+
@accumulated_width || 0
|
20
|
+
end
|
21
|
+
|
22
|
+
# The number of spaces in the last wrapped line
|
23
|
+
#
|
24
|
+
def space_count
|
25
|
+
@space_count
|
26
|
+
end
|
27
|
+
|
28
|
+
# The number of characters consumed from the last line passed into
|
29
|
+
# wrap_line. This may differ from the number of characters in the
|
30
|
+
# returned line because trailing white spaces are removed
|
31
|
+
#
|
32
|
+
def consumed_char_count
|
33
|
+
@consumed_char_count
|
34
|
+
end
|
35
|
+
|
36
|
+
# The pattern used to determine chunks of text to place on a given line
|
37
|
+
#
|
38
|
+
def scan_pattern
|
39
|
+
pattern = "[^#{break_chars}]+#{soft_hyphen}|" +
|
40
|
+
"[^#{break_chars}]+#{hyphen}+|" +
|
41
|
+
"[^#{break_chars}]+|" +
|
42
|
+
"[#{whitespace}]+|" +
|
43
|
+
"#{hyphen}+[^#{break_chars}]*|" +
|
44
|
+
"#{soft_hyphen}"
|
45
|
+
new_regexp(pattern)
|
46
|
+
end
|
47
|
+
|
48
|
+
# The pattern used to determine whether any word breaks exist on a
|
49
|
+
# current line, which in turn determines whether character level
|
50
|
+
# word breaking is needed
|
51
|
+
#
|
52
|
+
def word_division_scan_pattern
|
53
|
+
new_regexp("\\s|[#{hyphen}#{soft_hyphen}]")
|
54
|
+
end
|
55
|
+
|
56
|
+
# Take a single line and deterimine what part of it fits within the
|
57
|
+
# width defined by the :width option
|
58
|
+
#
|
59
|
+
def wrap_line(line, options)
|
60
|
+
initialize_line(options)
|
61
|
+
|
62
|
+
previous_segment = nil
|
63
|
+
line.scan(@scan_pattern).each do |segment|
|
64
|
+
segment_width = @document.width_of(segment, :kerning => @kerning)
|
65
|
+
|
66
|
+
if @accumulated_width + segment_width <= @width
|
67
|
+
@accumulated_width += segment_width
|
68
|
+
@output += segment
|
69
|
+
else
|
70
|
+
end_of_the_line(segment)
|
71
|
+
break
|
72
|
+
end
|
73
|
+
previous_segment = segment
|
74
|
+
end
|
75
|
+
raise Errors::CannotFit if @output.empty? && !line.strip.empty?
|
76
|
+
|
77
|
+
finalize_line
|
78
|
+
@space_count = @output.count(" ")
|
79
|
+
@output
|
80
|
+
end
|
81
|
+
|
82
|
+
private
|
83
|
+
|
84
|
+
def initialize_line(options)
|
85
|
+
@document = options[:document]
|
86
|
+
@kerning = options[:kerning]
|
87
|
+
@width = options[:width]
|
88
|
+
|
89
|
+
@scan_pattern = scan_pattern
|
90
|
+
@word_division_scan_pattern = word_division_scan_pattern
|
91
|
+
|
92
|
+
@accumulated_width = 0
|
93
|
+
@output = ""
|
94
|
+
end
|
95
|
+
|
96
|
+
def break_chars
|
97
|
+
"#{whitespace}#{soft_hyphen}#{hyphen}"
|
98
|
+
end
|
99
|
+
|
100
|
+
def whitespace
|
101
|
+
" \\t"
|
102
|
+
end
|
103
|
+
|
104
|
+
def hyphen
|
105
|
+
"-"
|
106
|
+
end
|
107
|
+
|
108
|
+
def soft_hyphen
|
109
|
+
@document.font.normalize_encoding("")
|
110
|
+
end
|
111
|
+
|
112
|
+
# If there is more than one word on the line, then clean up the last
|
113
|
+
# word on the line; otherwise, wrap by character
|
114
|
+
#
|
115
|
+
def end_of_the_line(segment)
|
116
|
+
if @output =~ @word_division_scan_pattern
|
117
|
+
if segment =~ new_regexp("^#{hyphen}") &&
|
118
|
+
@output !~ new_regexp("[#{break_chars}]$")
|
119
|
+
remove_last_output_word
|
120
|
+
end
|
121
|
+
else
|
122
|
+
wrap_by_char(segment)
|
123
|
+
# since when adding characters individually, kerning has no effect,
|
124
|
+
# recompute width of the output after adding characters
|
125
|
+
# IMPORTANT: leave this computation here, rather than moving it into
|
126
|
+
# append_char because append_char is more general than
|
127
|
+
# end_of_the_line, so while end_of_the_line is likely to be
|
128
|
+
# overridden, wrap_by_char may not be, and we don't want to
|
129
|
+
# recompute line width except where necessary (for example, see
|
130
|
+
# Prawn::Core::Text::Formatted::LineWrap)
|
131
|
+
@accumulated_width = compute_output_width
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
def remove_last_output_word
|
136
|
+
segments = []
|
137
|
+
regexp = new_regexp("[^#{break_chars}]+|[#{break_chars}]+")
|
138
|
+
@output.scan(regexp).each { |segment| segments << segment }
|
139
|
+
segments.pop
|
140
|
+
@output = segments.join("")
|
141
|
+
end
|
142
|
+
|
143
|
+
def finalize_line
|
144
|
+
@consumed_char_count = @output.length
|
145
|
+
|
146
|
+
@output = @output[0..-2].gsub(soft_hyphen, "") + @output[-1..-1]
|
147
|
+
|
148
|
+
strip_trailing_whitespace
|
149
|
+
end
|
150
|
+
|
151
|
+
def strip_trailing_whitespace
|
152
|
+
@accumulated_width = compute_output_width if @output.strip!
|
153
|
+
end
|
154
|
+
|
155
|
+
def compute_output_width
|
156
|
+
@document.width_of(@output, :kerning => @kerning)
|
157
|
+
end
|
158
|
+
|
159
|
+
def wrap_by_char(segment)
|
160
|
+
if @document.font.unicode?
|
161
|
+
segment.unpack("U*").each do |char_int|
|
162
|
+
break unless append_char([char_int].pack("U"))
|
163
|
+
end
|
164
|
+
else
|
165
|
+
segment.each_char do |char|
|
166
|
+
break unless append_char(char)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
def append_char(char)
|
172
|
+
# kerning doesn't make sense in the context of a single character
|
173
|
+
char_width = @document.width_of(char)
|
174
|
+
@accumulated_width += char_width
|
175
|
+
|
176
|
+
if @accumulated_width >= @width
|
177
|
+
false
|
178
|
+
else
|
179
|
+
@output << char
|
180
|
+
true
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
def new_regexp(pattern)
|
185
|
+
regexp = ruby_19 {
|
186
|
+
Regexp.new(pattern)
|
187
|
+
}
|
188
|
+
regexp = regexp || ruby_18 {
|
189
|
+
lang = @document.font.unicode? ? 'U' : 'N'
|
190
|
+
Regexp.new(pattern, 0, lang)
|
191
|
+
}
|
192
|
+
regexp
|
193
|
+
end
|
194
|
+
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
require "prawn/core/text/line_wrap"
|
2
|
+
|
3
|
+
module Prawn
|
4
|
+
module Core
|
5
|
+
module Text
|
6
|
+
module Wrap #:nodoc:
|
7
|
+
|
8
|
+
def initialize(text, options)
|
9
|
+
@line_wrap = Prawn::Core::Text::LineWrap.new
|
10
|
+
end
|
11
|
+
|
12
|
+
# #wrap is part of the developer API. Override it in extensions to Prawn
|
13
|
+
# that inherit Text::Box but need a different placement algorithm.
|
14
|
+
# #wrap is where the actual placement of text happens. If @inked is
|
15
|
+
# false, then all the placement computations should be performed, and
|
16
|
+
# unprinted text returned, but no text should actually be drawn to the
|
17
|
+
# PDF. This enables look-ahead computations that need to know whether all
|
18
|
+
# the text was printed under a set of conditions or how tall the text was
|
19
|
+
# under certain conditions.
|
20
|
+
#
|
21
|
+
# #wrap is called from several places within box.rb and relies on
|
22
|
+
# certain conditions established by render. Do not call #wrap from
|
23
|
+
# outside of Text::Box or its descendants.
|
24
|
+
#
|
25
|
+
# #wrap should set the following instance variables:
|
26
|
+
# <tt>@text</tt>:: the text that was printed
|
27
|
+
# <tt>@line_height</tt>:: the height of the last printed line
|
28
|
+
# <tt>@descender</tt>:: the descender height of the last printed line
|
29
|
+
# <tt>@ascender</tt>:: the ascender heigth of the last printed line
|
30
|
+
# <tt>@baseline_y</tt>:: the base line of the last printed line
|
31
|
+
#
|
32
|
+
# Returns any unprinted text
|
33
|
+
#
|
34
|
+
def wrap(text) #:nodoc:
|
35
|
+
@text = nil
|
36
|
+
remaining_text = text
|
37
|
+
@line_height = @document.font.height
|
38
|
+
@descender = @document.font.descender
|
39
|
+
@ascender = @document.font.ascender
|
40
|
+
@baseline_y = -@ascender
|
41
|
+
|
42
|
+
printed_lines = []
|
43
|
+
|
44
|
+
while remaining_text &&
|
45
|
+
remaining_text.length > 0 &&
|
46
|
+
@baseline_y.abs + @descender <= @height
|
47
|
+
line_to_print = @line_wrap.wrap_line(remaining_text.first_line,
|
48
|
+
:document => @document,
|
49
|
+
:kerning => @kerning,
|
50
|
+
:width => available_width)
|
51
|
+
|
52
|
+
remaining_text = remaining_text.slice(@line_wrap.consumed_char_count..
|
53
|
+
remaining_text.length)
|
54
|
+
include_ellipses = (@overflow == :ellipses && last_line? &&
|
55
|
+
remaining_text.length > 0)
|
56
|
+
printed_lines << draw_line(line_to_print, @line_wrap.width,
|
57
|
+
word_spacing_for_this_line, include_ellipses)
|
58
|
+
@baseline_y -= (@line_height + @leading)
|
59
|
+
break if @single_line
|
60
|
+
end
|
61
|
+
|
62
|
+
@text = printed_lines.join("\n")
|
63
|
+
|
64
|
+
remaining_text
|
65
|
+
end
|
66
|
+
|
67
|
+
private
|
68
|
+
|
69
|
+
def word_spacing_for_this_line
|
70
|
+
if @align != :justify || @line_wrap.width.to_f / available_width.to_f < 0.75
|
71
|
+
0
|
72
|
+
else
|
73
|
+
(available_width - @line_wrap.width) / @line_wrap.space_count
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# prawn/core/text.rb : Implements low level text helpers for Prawn
|
4
|
+
#
|
5
|
+
# Copyright January 2010, Daniel Nelson. All Rights Reserved.
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
|
9
|
+
ruby_18 { $KCODE="U" }
|
10
|
+
|
11
|
+
module Prawn
|
12
|
+
module Core
|
13
|
+
module Text #:nodoc:
|
14
|
+
|
15
|
+
# These should be used as a base. Extensions may build on this list
|
16
|
+
#
|
17
|
+
VALID_OPTIONS = [:kerning, :size, :style]
|
18
|
+
|
19
|
+
attr_reader :skip_encoding
|
20
|
+
|
21
|
+
# Low level text placement method. All font and size alterations
|
22
|
+
# should already be set
|
23
|
+
#
|
24
|
+
def draw_text!(text, options)
|
25
|
+
x,y = map_to_absolute(options[:at])
|
26
|
+
add_text_content(text,x,y,options)
|
27
|
+
end
|
28
|
+
|
29
|
+
# Low level call to set the current font style and extract text options from
|
30
|
+
# an options hash. Should be called from within a save_font block
|
31
|
+
#
|
32
|
+
def process_text_options(options)
|
33
|
+
if options[:style]
|
34
|
+
raise "Bad font family" unless font.family
|
35
|
+
font(font.family, :style => options[:style])
|
36
|
+
end
|
37
|
+
|
38
|
+
# must compare against false to keep kerning on as default
|
39
|
+
unless options[:kerning] == false
|
40
|
+
options[:kerning] = font.has_kerning_data?
|
41
|
+
end
|
42
|
+
|
43
|
+
options[:size] ||= font_size
|
44
|
+
end
|
45
|
+
|
46
|
+
# Document wide setting of whether or not to use kerning with text
|
47
|
+
# Defaults to true
|
48
|
+
# Can be overridden using the :kerning text option
|
49
|
+
#
|
50
|
+
def default_kerning?
|
51
|
+
return true if @default_kerning.nil?
|
52
|
+
@default_kerning
|
53
|
+
end
|
54
|
+
|
55
|
+
def default_kerning(boolean)
|
56
|
+
@default_kerning = boolean
|
57
|
+
end
|
58
|
+
|
59
|
+
alias_method :default_kerning=, :default_kerning
|
60
|
+
|
61
|
+
# Increases or decreases the space between characters.
|
62
|
+
# For horizontal text, a positive value will increase the space.
|
63
|
+
# For veritical text, a positive value will decrease the space.
|
64
|
+
#
|
65
|
+
def character_spacing(amount=nil)
|
66
|
+
return @character_spacing || 0 if amount.nil?
|
67
|
+
@character_spacing = amount
|
68
|
+
add_content "\n%.3f Tc" % amount
|
69
|
+
yield
|
70
|
+
add_content "\n0 Tc"
|
71
|
+
@character_spacing = 0
|
72
|
+
end
|
73
|
+
|
74
|
+
# Increases or decreases the space between words.
|
75
|
+
# For horizontal text, a positive value will increase the space.
|
76
|
+
# For veritical text, a positive value will decrease the space.
|
77
|
+
#
|
78
|
+
def word_spacing(amount=nil)
|
79
|
+
return @word_spacing || 0 if amount.nil?
|
80
|
+
@word_spacing = amount
|
81
|
+
add_content "\n%.3f Tw" % amount
|
82
|
+
yield
|
83
|
+
add_content "\n0 Tw"
|
84
|
+
@word_spacing = 0
|
85
|
+
end
|
86
|
+
|
87
|
+
private
|
88
|
+
|
89
|
+
def add_text_content(text, x, y, options)
|
90
|
+
chunks = font.encode_text(text,options)
|
91
|
+
|
92
|
+
add_content "\nBT"
|
93
|
+
|
94
|
+
if options[:rotate]
|
95
|
+
rad = options[:rotate].to_i * Math::PI / 180
|
96
|
+
arr = [ Math.cos(rad), Math.sin(rad), -Math.sin(rad), Math.cos(rad), x, y ]
|
97
|
+
add_content "%.3f %.3f %.3f %.3f %.3f %.3f Tm" % arr
|
98
|
+
else
|
99
|
+
add_content "#{x} #{y} Td"
|
100
|
+
end
|
101
|
+
|
102
|
+
chunks.each do |(subset, string)|
|
103
|
+
font.add_to_current_page(subset)
|
104
|
+
add_content "/#{font.identifier_for(subset)} #{font_size} Tf"
|
105
|
+
|
106
|
+
operation = options[:kerning] && string.is_a?(Array) ? "TJ" : "Tj"
|
107
|
+
add_content Prawn::Core::PdfObject(string, true) << " " << operation
|
108
|
+
end
|
109
|
+
|
110
|
+
add_content "ET\n"
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
end
|
115
|
+
end
|
data/lib/prawn/core.rb
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Prawn : A library for PDF generation in Ruby
|
3
|
+
#
|
4
|
+
# Copyright April 2008, Gregory Brown. All Rights Reserved.
|
5
|
+
#
|
6
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
7
|
+
|
8
|
+
require "set"
|
9
|
+
|
10
|
+
%w[ttfunk/lib].each do |dep|
|
11
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__) + "/../../vendor/#{dep}")
|
12
|
+
end
|
13
|
+
|
14
|
+
begin
|
15
|
+
require 'ttfunk'
|
16
|
+
rescue LoadError
|
17
|
+
puts "Failed to load ttfunk. If you are running Prawn from git:"
|
18
|
+
puts " git submodule init"
|
19
|
+
puts " git submodule update"
|
20
|
+
exit
|
21
|
+
end
|
22
|
+
|
23
|
+
module Prawn
|
24
|
+
extend self
|
25
|
+
|
26
|
+
file = __FILE__
|
27
|
+
file = File.readlink(file) if File.symlink?(file)
|
28
|
+
dir = File.dirname(file)
|
29
|
+
|
30
|
+
# The base source directory for Prawn as installed on the system
|
31
|
+
#
|
32
|
+
BASEDIR = File.expand_path(File.join(dir, '..', '..'))
|
33
|
+
|
34
|
+
VERSION = "0.10.2"
|
35
|
+
|
36
|
+
extend self
|
37
|
+
|
38
|
+
# Whe set to true, Prawn will verify hash options to ensure only valid keys
|
39
|
+
# are used. Off by default.
|
40
|
+
#
|
41
|
+
# Example:
|
42
|
+
# >> Prawn::Document.new(:tomato => "Juicy")
|
43
|
+
# Prawn::Errors::UnknownOption:
|
44
|
+
# Detected unknown option(s): [:tomato]
|
45
|
+
# Accepted options are: [:page_size, :page_layout, :left_margin, ...]
|
46
|
+
#
|
47
|
+
attr_accessor :debug
|
48
|
+
|
49
|
+
def verify_options(accepted, actual) #:nodoc:
|
50
|
+
return unless debug || $DEBUG
|
51
|
+
unless (act=Set[*actual.keys]).subset?(acc=Set[*accepted])
|
52
|
+
raise Prawn::Errors::UnknownOption,
|
53
|
+
"\nDetected unknown option(s): #{(act - acc).to_a.inspect}\n" <<
|
54
|
+
"Accepted options are: #{accepted.inspect}"
|
55
|
+
end
|
56
|
+
yield if block_given?
|
57
|
+
end
|
58
|
+
|
59
|
+
module Configurable #:nodoc:
|
60
|
+
def configuration(*args)
|
61
|
+
@config ||= Marshal.load(Marshal.dump(default_configuration))
|
62
|
+
if Hash === args[0]
|
63
|
+
@config.update(args[0])
|
64
|
+
elsif args.length > 1
|
65
|
+
@config.values_at(*args)
|
66
|
+
elsif args.length == 1
|
67
|
+
@config[args[0]]
|
68
|
+
else
|
69
|
+
@config
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
alias_method :C, :configuration
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
require "prawn/compatibility"
|
78
|
+
require "prawn/errors"
|
79
|
+
require "prawn/core/pdf_object"
|
80
|
+
require "prawn/core/reference"
|
81
|
+
require "prawn/core/page"
|
82
|
+
require "prawn/core/object_store"
|
83
|
+
require "prawn/core/document_state"
|
84
|
+
require "prawn/core/literal_string"
|
85
|
+
require "prawn/core/byte_string"
|
86
|
+
require "prawn/core/name_tree"
|
87
|
+
require "prawn/core/annotations"
|
88
|
+
require "prawn/core/destinations"
|
89
|
+
|