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
data/lib/prawn/font.rb
ADDED
@@ -0,0 +1,342 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
#
|
3
|
+
# font.rb : The Prawn font class
|
4
|
+
#
|
5
|
+
# Copyright May 2008, Gregory Brown / James Healy. All Rights Reserved.
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
#
|
9
|
+
require "prawn/font/afm"
|
10
|
+
require "prawn/font/ttf"
|
11
|
+
require "prawn/font/dfont"
|
12
|
+
|
13
|
+
module Prawn
|
14
|
+
|
15
|
+
class Document
|
16
|
+
# Without arguments, this returns the currently selected font. Otherwise,
|
17
|
+
# it sets the current font. When a block is used, the font is applied
|
18
|
+
# transactionally and is rolled back when the block exits.
|
19
|
+
#
|
20
|
+
# Prawn::Document.generate("font.pdf") do
|
21
|
+
# text "Default font is Helvetica"
|
22
|
+
#
|
23
|
+
# font "Times-Roman"
|
24
|
+
# text "Now using Times-Roman"
|
25
|
+
#
|
26
|
+
# font("Chalkboard.ttf") do
|
27
|
+
# text "Using TTF font from file Chalkboard.ttf"
|
28
|
+
# font "Courier", :style => :bold
|
29
|
+
# text "You see this in bold Courier"
|
30
|
+
# end
|
31
|
+
#
|
32
|
+
# text "Times-Roman, again"
|
33
|
+
# end
|
34
|
+
#
|
35
|
+
# The :name parameter must be a string. It can be one of the 14 built-in
|
36
|
+
# fonts supported by PDF, or the location of a TTF file. The Font::AFM::BUILT_INS
|
37
|
+
# array specifies the valid built in font values.
|
38
|
+
#
|
39
|
+
# If a ttf font is specified, the glyphs necessary to render your document
|
40
|
+
# will be embedded in the rendered PDF. This should be your preferred option
|
41
|
+
# in most cases. It will increase the size of the resulting file, but also
|
42
|
+
# make it more portable.
|
43
|
+
#
|
44
|
+
# The options parameter is an optional hash providing size and style. To use
|
45
|
+
# the :style option you need to map those font styles to their respective font files.
|
46
|
+
# See font_families for more information.
|
47
|
+
#
|
48
|
+
def font(name=nil, options={})
|
49
|
+
return((defined?(@font) && @font) || font("Helvetica")) if name.nil?
|
50
|
+
|
51
|
+
if state.pages.empty? && !state.page.in_stamp_stream?
|
52
|
+
raise Prawn::Errors::NotOnPage
|
53
|
+
end
|
54
|
+
|
55
|
+
new_font = find_font(name, options)
|
56
|
+
|
57
|
+
if block_given?
|
58
|
+
save_font do
|
59
|
+
set_font(new_font, options[:size])
|
60
|
+
yield
|
61
|
+
end
|
62
|
+
else
|
63
|
+
set_font(new_font, options[:size])
|
64
|
+
end
|
65
|
+
|
66
|
+
@font
|
67
|
+
end
|
68
|
+
|
69
|
+
# When called with no argument, returns the current font size.
|
70
|
+
# When called with a single argument but no block, sets the current font
|
71
|
+
# size. When a block is used, the font size is applied transactionally and
|
72
|
+
# is rolled back when the block exits. You may still change the font size
|
73
|
+
# within a transactional block for individual text segments, or nested calls
|
74
|
+
# to font_size.
|
75
|
+
#
|
76
|
+
# Prawn::Document.generate("font_size.pdf") do
|
77
|
+
# font_size 16
|
78
|
+
# text "At size 16"
|
79
|
+
#
|
80
|
+
# font_size(10) do
|
81
|
+
# text "At size 10"
|
82
|
+
# text "At size 6", :size => 6
|
83
|
+
# text "At size 10"
|
84
|
+
# end
|
85
|
+
#
|
86
|
+
# text "At size 16"
|
87
|
+
# end
|
88
|
+
#
|
89
|
+
# When called without an argument, this method returns the current font
|
90
|
+
# size.
|
91
|
+
#
|
92
|
+
def font_size(points=nil)
|
93
|
+
return @font_size unless points
|
94
|
+
size_before_yield = @font_size
|
95
|
+
@font_size = points
|
96
|
+
block_given? ? yield : return
|
97
|
+
@font_size = size_before_yield
|
98
|
+
end
|
99
|
+
|
100
|
+
# Sets the font directly, given an actual Font object
|
101
|
+
# and size.
|
102
|
+
#
|
103
|
+
def set_font(font, size=nil) # :nodoc:
|
104
|
+
@font = font
|
105
|
+
@font_size = size if size
|
106
|
+
end
|
107
|
+
|
108
|
+
# Saves the current font, and then yields. When the block
|
109
|
+
# finishes, the original font is restored.
|
110
|
+
#
|
111
|
+
def save_font
|
112
|
+
@font ||= find_font("Helvetica")
|
113
|
+
original_font = @font
|
114
|
+
original_size = @font_size
|
115
|
+
|
116
|
+
yield
|
117
|
+
ensure
|
118
|
+
set_font(original_font, original_size) if original_font
|
119
|
+
end
|
120
|
+
|
121
|
+
# Looks up the given font using the given criteria. Once a font has been
|
122
|
+
# found by that matches the criteria, it will be cached to subsequent lookups
|
123
|
+
# for that font will return the same object.
|
124
|
+
#--
|
125
|
+
# Challenges involved: the name alone is not sufficient to uniquely identify
|
126
|
+
# a font (think dfont suitcases that can hold multiple different fonts in a
|
127
|
+
# single file). Thus, the :name key is included in the cache key.
|
128
|
+
#
|
129
|
+
# It is further complicated, however, since fonts in some formats (like the
|
130
|
+
# dfont suitcases) can be identified either by numeric index, OR by their
|
131
|
+
# name within the suitcase, and both should hash to the same font object
|
132
|
+
# (to avoid the font being embedded multiple times). This is not yet implemented,
|
133
|
+
# which means if someone selects a font both by name, and by index, the
|
134
|
+
# font will be embedded twice. Since we do font subsetting, this double
|
135
|
+
# embedding won't be catastrophic, just annoying.
|
136
|
+
# ++
|
137
|
+
def find_font(name, options={}) #:nodoc:
|
138
|
+
if font_families.key?(name)
|
139
|
+
family, name = name, font_families[name][options[:style] || :normal]
|
140
|
+
if name.is_a?(Hash)
|
141
|
+
options = options.merge(name)
|
142
|
+
name = options[:file]
|
143
|
+
end
|
144
|
+
end
|
145
|
+
key = "#{name}:#{options[:font] || 0}"
|
146
|
+
font_registry[key] ||= Font.load(self, name, options.merge(:family => family))
|
147
|
+
end
|
148
|
+
|
149
|
+
# Hash of Font objects keyed by names
|
150
|
+
#
|
151
|
+
def font_registry #:nodoc:
|
152
|
+
@font_registry ||= {}
|
153
|
+
end
|
154
|
+
|
155
|
+
# Hash that maps font family names to their styled individual font names.
|
156
|
+
#
|
157
|
+
# To add support for another font family, append to this hash, e.g:
|
158
|
+
#
|
159
|
+
# pdf.font_families.update(
|
160
|
+
# "MyTrueTypeFamily" => { :bold => "foo-bold.ttf",
|
161
|
+
# :italic => "foo-italic.ttf",
|
162
|
+
# :bold_italic => "foo-bold-italic.ttf",
|
163
|
+
# :normal => "foo.ttf" })
|
164
|
+
#
|
165
|
+
# This will then allow you to use the fonts like so:
|
166
|
+
#
|
167
|
+
# pdf.font("MyTrueTypeFamily", :style => :bold)
|
168
|
+
# pdf.text "Some bold text"
|
169
|
+
# pdf.font("MyTrueTypeFamily")
|
170
|
+
# pdf.text "Some normal text"
|
171
|
+
#
|
172
|
+
# This assumes that you have appropriate TTF fonts for each style you
|
173
|
+
# wish to support.
|
174
|
+
#
|
175
|
+
# By default the styles :bold, :italic, :bold_italic, and :normal are
|
176
|
+
# defined for fonts "Courier", "Times-Roman" and "Helvetica".
|
177
|
+
#
|
178
|
+
# You probably want to provide those four styles, but are free to define
|
179
|
+
# custom ones, like :thin, and use them in font calls.
|
180
|
+
#
|
181
|
+
def font_families
|
182
|
+
@font_families ||= Hash.new { |h,k| h[k] = {} }.merge!(
|
183
|
+
{ "Courier" => { :bold => "Courier-Bold",
|
184
|
+
:italic => "Courier-Oblique",
|
185
|
+
:bold_italic => "Courier-BoldOblique",
|
186
|
+
:normal => "Courier" },
|
187
|
+
|
188
|
+
"Times-Roman" => { :bold => "Times-Bold",
|
189
|
+
:italic => "Times-Italic",
|
190
|
+
:bold_italic => "Times-BoldItalic",
|
191
|
+
:normal => "Times-Roman" },
|
192
|
+
|
193
|
+
"Helvetica" => { :bold => "Helvetica-Bold",
|
194
|
+
:italic => "Helvetica-Oblique",
|
195
|
+
:bold_italic => "Helvetica-BoldOblique",
|
196
|
+
:normal => "Helvetica" }
|
197
|
+
})
|
198
|
+
end
|
199
|
+
|
200
|
+
# Returns the width of the given string using the given font. If :size is not
|
201
|
+
# specified as one of the options, the string is measured using the current
|
202
|
+
# font size. You can also pass :kerning as an option to indicate whether
|
203
|
+
# kerning should be used when measuring the width (defaults to +false+).
|
204
|
+
#
|
205
|
+
# Note that the string _must_ be encoded properly for the font being used.
|
206
|
+
# For AFM fonts, this is WinAnsi. For TTF, make sure the font is encoded as
|
207
|
+
# UTF-8. You can use the Font#normalize_encoding method to make sure strings
|
208
|
+
# are in an encoding appropriate for the current font.
|
209
|
+
#--
|
210
|
+
# For the record, this method used to be a method of Font (and still delegates
|
211
|
+
# to width computations on Font). However, having the primary interface for
|
212
|
+
# calculating string widths exist on Font made it tricky to write extensions
|
213
|
+
# for Prawn in which widths are computed differently (e.g., taking formatting
|
214
|
+
# tags into account, or the like).
|
215
|
+
#
|
216
|
+
# By putting width_of here, on Document itself, extensions may easily override
|
217
|
+
# it and redefine the width calculation behavior.
|
218
|
+
#++
|
219
|
+
def width_of(string, options={})
|
220
|
+
font.compute_width_of(string, options)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
# Provides font information and helper functions.
|
225
|
+
#
|
226
|
+
class Font
|
227
|
+
|
228
|
+
# The current font name
|
229
|
+
attr_reader :name
|
230
|
+
|
231
|
+
# The current font family
|
232
|
+
attr_reader :family
|
233
|
+
|
234
|
+
# The options hash used to initialize the font
|
235
|
+
attr_reader :options
|
236
|
+
|
237
|
+
# Shortcut interface for constructing a font object. Filenames of the form
|
238
|
+
# *.ttf will call Font::TTF.new, *.dfont Font::DFont.new, and anything else
|
239
|
+
# will be passed through to Font::AFM.new()
|
240
|
+
#
|
241
|
+
def self.load(document,name,options={})
|
242
|
+
case name
|
243
|
+
when /\.ttf$/ then TTF.new(document, name, options)
|
244
|
+
when /\.dfont$/ then DFont.new(document, name, options)
|
245
|
+
when /\.afm$/ then AFM.new(document, name, options)
|
246
|
+
else AFM.new(document, name, options)
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def initialize(document,name,options={}) #:nodoc:
|
251
|
+
@document = document
|
252
|
+
@name = name
|
253
|
+
@options = options
|
254
|
+
|
255
|
+
@family = options[:family]
|
256
|
+
|
257
|
+
@identifier = :"F#{@document.font_registry.size + 1}"
|
258
|
+
|
259
|
+
@references = {}
|
260
|
+
end
|
261
|
+
|
262
|
+
# The size of the font ascender in PDF points
|
263
|
+
#
|
264
|
+
def ascender
|
265
|
+
@ascender / 1000.0 * size
|
266
|
+
end
|
267
|
+
|
268
|
+
# The size of the font descender in PDF points
|
269
|
+
#
|
270
|
+
def descender
|
271
|
+
-@descender / 1000.0 * size
|
272
|
+
end
|
273
|
+
|
274
|
+
# The size of the recommended gap between lines of text in PDF points
|
275
|
+
#
|
276
|
+
def line_gap
|
277
|
+
@line_gap / 1000.0 * size
|
278
|
+
end
|
279
|
+
|
280
|
+
def identifier_for(subset)
|
281
|
+
"#{@identifier}.#{subset}".to_sym
|
282
|
+
end
|
283
|
+
|
284
|
+
def inspect
|
285
|
+
"#{self.class.name}< #{name}: #{size} >"
|
286
|
+
end
|
287
|
+
|
288
|
+
# Normalizes the encoding of the string to an encoding supported by the
|
289
|
+
# font. The string is expected to be UTF-8 going in. It will be re-encoded
|
290
|
+
# and the new string will be returned. For an in-place (destructive)
|
291
|
+
# version, see normalize_encoding!.
|
292
|
+
#
|
293
|
+
def normalize_encoding(string)
|
294
|
+
raise NotImplementedError, "subclasses of Prawn::Font must implement #normalize_encoding"
|
295
|
+
end
|
296
|
+
|
297
|
+
# Destructive version of normalize_encoding; normalizes the encoding of a
|
298
|
+
# string in place.
|
299
|
+
#
|
300
|
+
def normalize_encoding!(str)
|
301
|
+
str.replace(normalize_encoding(str))
|
302
|
+
end
|
303
|
+
|
304
|
+
# Gets height of current font in PDF points at the given font size
|
305
|
+
#
|
306
|
+
def height_at(size)
|
307
|
+
@normalized_height ||= (@ascender - @descender + @line_gap) / 1000.0
|
308
|
+
@normalized_height * size
|
309
|
+
end
|
310
|
+
|
311
|
+
# Gets height of current font in PDF points at current font size
|
312
|
+
#
|
313
|
+
def height
|
314
|
+
height_at(size)
|
315
|
+
end
|
316
|
+
|
317
|
+
# Registers the given subset of the current font with the current PDF
|
318
|
+
# page. This is safe to call multiple times for a given font and subset,
|
319
|
+
# as it will only add the font the first time it is called.
|
320
|
+
#
|
321
|
+
def add_to_current_page(subset)
|
322
|
+
@references[subset] ||= register(subset)
|
323
|
+
@document.state.page.fonts.merge!(identifier_for(subset) => @references[subset])
|
324
|
+
end
|
325
|
+
|
326
|
+
def identifier_for(subset) #:nodoc:
|
327
|
+
"#{@identifier}.#{subset}"
|
328
|
+
end
|
329
|
+
|
330
|
+
def inspect #:nodoc:
|
331
|
+
"#{self.class.name}< #{name}: #{size} >"
|
332
|
+
end
|
333
|
+
|
334
|
+
private
|
335
|
+
|
336
|
+
def size
|
337
|
+
@document.font_size
|
338
|
+
end
|
339
|
+
|
340
|
+
end
|
341
|
+
|
342
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# cap_style.rb : Implements stroke cap styling
|
4
|
+
#
|
5
|
+
# Contributed by Daniel Nelson. October, 2009
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
#
|
9
|
+
module Prawn
|
10
|
+
module Graphics
|
11
|
+
module CapStyle
|
12
|
+
|
13
|
+
CAP_STYLES = { :butt => 0, :round => 1, :projecting_square => 2 }
|
14
|
+
|
15
|
+
# Sets the cap style for stroked lines and curves
|
16
|
+
#
|
17
|
+
# style is one of :butt, :round, or :projecting_square
|
18
|
+
#
|
19
|
+
# NOTE: If this method is never called, :butt will be used by default.
|
20
|
+
#
|
21
|
+
def cap_style(style=nil)
|
22
|
+
return @cap_style || :butt if style.nil?
|
23
|
+
|
24
|
+
@cap_style = style
|
25
|
+
|
26
|
+
write_stroke_cap_style
|
27
|
+
end
|
28
|
+
|
29
|
+
alias_method :cap_style=, :cap_style
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def write_stroke_cap_style
|
34
|
+
add_content "#{CAP_STYLES[@cap_style]} J"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,205 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# color.rb : Implements color handling
|
4
|
+
#
|
5
|
+
# Copyright June 2008, Gregory Brown. All Rights Reserved.
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
|
9
|
+
module Prawn
|
10
|
+
module Graphics
|
11
|
+
module Color
|
12
|
+
|
13
|
+
# Sets or returns the fill color.
|
14
|
+
#
|
15
|
+
# When called with no argument, it returns the current fill color.
|
16
|
+
#
|
17
|
+
# If a single argument is provided, it should be a 6 digit HTML color
|
18
|
+
# code.
|
19
|
+
#
|
20
|
+
# pdf.fill_color "f0ffc1"
|
21
|
+
#
|
22
|
+
# If 4 arguments are provided, the color is assumed to be a CMYK value
|
23
|
+
# Values range from 0 - 100.
|
24
|
+
#
|
25
|
+
# pdf.fill_color 0, 99, 95, 0
|
26
|
+
#
|
27
|
+
def fill_color(*color)
|
28
|
+
return @fill_color if color.empty?
|
29
|
+
@fill_color = process_color(*color)
|
30
|
+
set_fill_color
|
31
|
+
end
|
32
|
+
|
33
|
+
alias_method :fill_color=, :fill_color
|
34
|
+
|
35
|
+
# Sets or returns the line stroking color.
|
36
|
+
#
|
37
|
+
# When called with no argument, it returns the current stroking color.
|
38
|
+
#
|
39
|
+
# If a single argument is provided, it should be a 6 digit HTML color
|
40
|
+
# code.
|
41
|
+
#
|
42
|
+
# pdf.stroke_color "f0ffc1"
|
43
|
+
#
|
44
|
+
# If 4 arguments are provided, the color is assumed to be a CMYK value
|
45
|
+
# Values range from 0 - 100.
|
46
|
+
#
|
47
|
+
# pdf.stroke_color 0, 99, 95, 0
|
48
|
+
#
|
49
|
+
def stroke_color(*color)
|
50
|
+
return @stroke_color if color.empty?
|
51
|
+
@stroke_color = process_color(*color)
|
52
|
+
set_stroke_color
|
53
|
+
end
|
54
|
+
|
55
|
+
alias_method :stroke_color=, :stroke_color
|
56
|
+
|
57
|
+
# Provides the following shortcuts:
|
58
|
+
#
|
59
|
+
# stroke_some_method(*args) #=> some_method(*args); stroke
|
60
|
+
# fill_some_method(*args) #=> some_method(*args); fill
|
61
|
+
# fill_and_stroke_some_method(*args) #=> some_method(*args); fill_and_stroke
|
62
|
+
#
|
63
|
+
def method_missing(id,*args,&block)
|
64
|
+
case(id.to_s)
|
65
|
+
when /^fill_and_stroke_(.*)/
|
66
|
+
send($1,*args,&block); fill_and_stroke
|
67
|
+
when /^stroke_(.*)/
|
68
|
+
send($1,*args,&block); stroke
|
69
|
+
when /^fill_(.*)/
|
70
|
+
send($1,*args,&block); fill
|
71
|
+
else
|
72
|
+
super
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
module_function
|
77
|
+
|
78
|
+
# Converts RGB value array to hex string suitable for use with fill_color
|
79
|
+
# and stroke_color
|
80
|
+
#
|
81
|
+
# >> Prawn::Graphics::Color.rgb2hex([255,120,8])
|
82
|
+
# => "ff7808"
|
83
|
+
#
|
84
|
+
def rgb2hex(rgb)
|
85
|
+
rgb.map { |e| "%02x" % e }.join
|
86
|
+
end
|
87
|
+
|
88
|
+
# Converts hex string into RGB value array:
|
89
|
+
#
|
90
|
+
# >> Prawn::Graphics::Color.hex2rgb("ff7808")
|
91
|
+
# => [255, 120, 8]
|
92
|
+
#
|
93
|
+
def hex2rgb(hex)
|
94
|
+
r,g,b = hex[0..1], hex[2..3], hex[4..5]
|
95
|
+
[r,g,b].map { |e| e.to_i(16) }
|
96
|
+
end
|
97
|
+
|
98
|
+
private
|
99
|
+
|
100
|
+
def process_color(*color)
|
101
|
+
case(color.size)
|
102
|
+
when 1
|
103
|
+
color[0]
|
104
|
+
when 4
|
105
|
+
color
|
106
|
+
else
|
107
|
+
raise ArgumentError, 'wrong number of arguments supplied'
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
def color_type(color)
|
112
|
+
case color
|
113
|
+
when String
|
114
|
+
:RGB
|
115
|
+
when Array
|
116
|
+
:CMYK
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
def normalize_color(color)
|
121
|
+
case color_type(color)
|
122
|
+
when :RGB
|
123
|
+
r,g,b = hex2rgb(color)
|
124
|
+
[r / 255.0, g / 255.0, b / 255.0]
|
125
|
+
when :CMYK
|
126
|
+
c,m,y,k = *color
|
127
|
+
[c / 100.0, m / 100.0, y / 100.0, k / 100.0]
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
def color_to_s(color)
|
132
|
+
normalize_color(color).map { |c| '%.3f' % c }.join(' ')
|
133
|
+
end
|
134
|
+
|
135
|
+
def color_space(color)
|
136
|
+
case color_type(color)
|
137
|
+
when :RGB
|
138
|
+
:DeviceRGB
|
139
|
+
when :CMYK
|
140
|
+
:DeviceCMYK
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
COLOR_SPACES = [:DeviceRGB, :DeviceCMYK, :Pattern]
|
145
|
+
|
146
|
+
def set_color_space(type, color_space)
|
147
|
+
# don't set the same color space again
|
148
|
+
return if @color_space[type] == color_space
|
149
|
+
@color_space[type] = color_space
|
150
|
+
|
151
|
+
unless COLOR_SPACES.include?(color_space)
|
152
|
+
raise ArgumentError, "unknown color space: '#{color_space}'"
|
153
|
+
end
|
154
|
+
|
155
|
+
operator = case type
|
156
|
+
when :fill
|
157
|
+
'cs'
|
158
|
+
when :stroke
|
159
|
+
'CS'
|
160
|
+
else
|
161
|
+
raise ArgumentError, "unknown type '#{type}'"
|
162
|
+
end
|
163
|
+
|
164
|
+
add_content "/#{color_space} #{operator}"
|
165
|
+
end
|
166
|
+
|
167
|
+
def set_color(type, color, options = {})
|
168
|
+
operator = case type
|
169
|
+
when :fill
|
170
|
+
'scn'
|
171
|
+
when :stroke
|
172
|
+
'SCN'
|
173
|
+
else
|
174
|
+
raise ArgumentError, "unknown type '#{type}'"
|
175
|
+
end
|
176
|
+
|
177
|
+
if options[:pattern]
|
178
|
+
set_color_space type, :Pattern
|
179
|
+
add_content "/#{color} #{operator}"
|
180
|
+
else
|
181
|
+
set_color_space type, color_space(color)
|
182
|
+
color = color_to_s(color)
|
183
|
+
add_content "#{color} #{operator}"
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
def set_fill_color
|
188
|
+
set_color :fill, @fill_color
|
189
|
+
end
|
190
|
+
|
191
|
+
def set_stroke_color
|
192
|
+
set_color :stroke, @stroke_color
|
193
|
+
end
|
194
|
+
|
195
|
+
def update_colors
|
196
|
+
@color_space = {}
|
197
|
+
@fill_color ||= "000000"
|
198
|
+
@stroke_color ||= "000000"
|
199
|
+
set_fill_color
|
200
|
+
set_stroke_color
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# dash.rb : Implements stroke dashing
|
4
|
+
#
|
5
|
+
# Contributed by Daniel Nelson. October, 2009
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
#
|
9
|
+
module Prawn
|
10
|
+
module Graphics
|
11
|
+
module Dash
|
12
|
+
|
13
|
+
# Sets the dash pattern for stroked lines and curves
|
14
|
+
#
|
15
|
+
# length is the length of the dash. If options is not present,
|
16
|
+
# or options[:space] is nil, then length is also the length of
|
17
|
+
# the space between dashes
|
18
|
+
#
|
19
|
+
# options may contain :space and :phase
|
20
|
+
# :space is the space between the dashes
|
21
|
+
# :phase is where in the cycle to begin dashing. For
|
22
|
+
# example, a phase of 0 starts at the beginning of
|
23
|
+
# the dash; whereas, if the phase is equal to the
|
24
|
+
# length of the dash, then stroking will begin at
|
25
|
+
# the beginning of the space. Default is 0
|
26
|
+
#
|
27
|
+
# integers or floats may be used for length and the options
|
28
|
+
#
|
29
|
+
# dash units are in PDF points ( 1/72 in )
|
30
|
+
#
|
31
|
+
def dash(length=nil, options={})
|
32
|
+
return @dash || undash_hash if length.nil?
|
33
|
+
|
34
|
+
@dash = { :dash => length,
|
35
|
+
:space => options[:space] || length,
|
36
|
+
:phase => options[:phase] || 0 }
|
37
|
+
|
38
|
+
write_stroke_dash
|
39
|
+
end
|
40
|
+
|
41
|
+
alias_method :dash=, :dash
|
42
|
+
|
43
|
+
# Stops dashing, restoring solid stroked lines and curves
|
44
|
+
#
|
45
|
+
def undash
|
46
|
+
@dash = undash_hash
|
47
|
+
write_stroke_dash
|
48
|
+
end
|
49
|
+
|
50
|
+
# Returns when stroke is dashed, false otherwise
|
51
|
+
#
|
52
|
+
def dashed?
|
53
|
+
dash != undash_hash
|
54
|
+
end
|
55
|
+
|
56
|
+
private
|
57
|
+
|
58
|
+
def undash_hash
|
59
|
+
{ :dash => nil, :space => nil, :phase => 0 }
|
60
|
+
end
|
61
|
+
|
62
|
+
def write_stroke_dash
|
63
|
+
if @dash[:dash].nil?
|
64
|
+
add_content "[] 0 d"
|
65
|
+
return
|
66
|
+
end
|
67
|
+
add_content "[#{@dash[:dash]} #{@dash[:space]}] #{@dash[:phase]} d"
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# join_style.rb : Implements stroke join styling
|
4
|
+
#
|
5
|
+
# Contributed by Daniel Nelson. October, 2009
|
6
|
+
#
|
7
|
+
# This is free software. Please see the LICENSE and COPYING files for details.
|
8
|
+
#
|
9
|
+
module Prawn
|
10
|
+
module Graphics
|
11
|
+
module JoinStyle
|
12
|
+
JOIN_STYLES = { :miter => 0, :round => 1, :bevel => 2 }
|
13
|
+
|
14
|
+
# Sets the join style for stroked lines and curves
|
15
|
+
#
|
16
|
+
# style is one of :miter, :round, or :bevel
|
17
|
+
#
|
18
|
+
# NOTE: if this method is never called, :miter will be used for join style
|
19
|
+
# throughout the document
|
20
|
+
#
|
21
|
+
def join_style(style=nil)
|
22
|
+
return @join_style || :miter if style.nil?
|
23
|
+
|
24
|
+
@join_style = style
|
25
|
+
|
26
|
+
write_stroke_join_style
|
27
|
+
end
|
28
|
+
|
29
|
+
alias_method :join_style=, :join_style
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def write_stroke_join_style
|
34
|
+
add_content "#{JOIN_STYLES[@join_style]} j"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|