Class: Prawn::Font
- Inherits:
-
Object
- Object
- Prawn::Font
- Defined in:
- lib/prawn/font.rb,
lib/prawn/font/afm.rb,
lib/prawn/font/ttf.rb,
lib/prawn/font/dfont.rb
Overview
Provides font information and helper functions.
Defined Under Namespace
Instance Attribute Summary collapse
-
#family ⇒ Object
readonly
The current font family.
-
#name ⇒ Object
readonly
The current font name.
-
#options ⇒ Object
readonly
The options hash used to initialize the font.
Class Method Summary collapse
-
.load(document, name, options = {}) ⇒ Object
Shortcut interface for constructing a font object.
Instance Method Summary collapse
-
#add_to_current_page(subset) ⇒ Object
Registers the given subset of the current font with the current PDF page.
-
#ascender ⇒ Object
The size of the font ascender in PDF points.
-
#descender ⇒ Object
The size of the font descender in PDF points.
-
#height ⇒ Object
Gets height of current font in PDF points at current font size.
-
#height_at(size) ⇒ Object
Gets height of current font in PDF points at the given font size.
-
#identifier_for(subset) ⇒ Object
:nodoc:.
-
#initialize(document, name, options = {}) ⇒ Font
constructor
:nodoc:.
-
#inspect ⇒ Object
:nodoc:.
-
#line_gap ⇒ Object
The size of the recommended gap between lines of text in PDF points.
-
#normalize_encoding(string) ⇒ Object
Normalizes the encoding of the string to an encoding supported by the font.
-
#normalize_encoding!(str) ⇒ Object
Destructive version of normalize_encoding; normalizes the encoding of a string in place.
Constructor Details
#initialize(document, name, options = {}) ⇒ Font
:nodoc:
247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/prawn/font.rb', line 247 def initialize(document,name,={}) #:nodoc: @document = document @name = name @options = @family = [:family] @identifier = :"F#{@document.font_registry.size + 1}" @references = {} end |
Instance Attribute Details
#family ⇒ Object (readonly)
The current font family
229 230 231 |
# File 'lib/prawn/font.rb', line 229 def family @family end |
#name ⇒ Object (readonly)
The current font name
226 227 228 |
# File 'lib/prawn/font.rb', line 226 def name @name end |
#options ⇒ Object (readonly)
The options hash used to initialize the font
232 233 234 |
# File 'lib/prawn/font.rb', line 232 def @options end |
Class Method Details
.load(document, name, options = {}) ⇒ Object
Shortcut interface for constructing a font object. Filenames of the form *.ttf will call Font::TTF.new, *.dfont Font::DFont.new, and anything else will be passed through to Font::AFM.new()
238 239 240 241 242 243 244 245 |
# File 'lib/prawn/font.rb', line 238 def self.load(document,name,={}) case name when /\.ttf$/ then TTF.new(document, name, ) when /\.dfont$/ then DFont.new(document, name, ) when /\.afm$/ then AFM.new(document, name, ) else AFM.new(document, name, ) end end |
Instance Method Details
#add_to_current_page(subset) ⇒ Object
Registers the given subset of the current font with the current PDF page. This is safe to call multiple times for a given font and subset, as it will only add the font the first time it is called.
310 311 312 313 |
# File 'lib/prawn/font.rb', line 310 def add_to_current_page(subset) @references[subset] ||= register(subset) @document.page.fonts.merge!(identifier_for(subset) => @references[subset]) end |
#ascender ⇒ Object
The size of the font ascender in PDF points
261 262 263 |
# File 'lib/prawn/font.rb', line 261 def ascender @ascender / 1000.0 * size end |
#descender ⇒ Object
The size of the font descender in PDF points
267 268 269 |
# File 'lib/prawn/font.rb', line 267 def descender -@descender / 1000.0 * size end |
#height ⇒ Object
Gets height of current font in PDF points at current font size
302 303 304 |
# File 'lib/prawn/font.rb', line 302 def height height_at(size) end |
#height_at(size) ⇒ Object
Gets height of current font in PDF points at the given font size
295 296 297 298 |
# File 'lib/prawn/font.rb', line 295 def height_at(size) @normalized_height ||= (@ascender - @descender + @line_gap) / 1000.0 @normalized_height * size end |
#identifier_for(subset) ⇒ Object
:nodoc:
315 316 317 |
# File 'lib/prawn/font.rb', line 315 def identifier_for(subset) #:nodoc: "#{@identifier}.#{subset}" end |
#inspect ⇒ Object
:nodoc:
319 320 321 |
# File 'lib/prawn/font.rb', line 319 def inspect #:nodoc: "#{self.class.name}< #{name}: #{size} >" end |
#line_gap ⇒ Object
The size of the recommended gap between lines of text in PDF points
273 274 275 |
# File 'lib/prawn/font.rb', line 273 def line_gap @line_gap / 1000.0 * size end |
#normalize_encoding(string) ⇒ Object
Normalizes the encoding of the string to an encoding supported by the font. The string is expected to be UTF-8 going in. It will be re-encoded and the new string will be returned. For an in-place (destructive) version, see normalize_encoding!.
282 283 284 |
# File 'lib/prawn/font.rb', line 282 def normalize_encoding(string) raise NotImplementedError, "subclasses of Prawn::Font must implement #normalize_encoding" end |
#normalize_encoding!(str) ⇒ Object
Destructive version of normalize_encoding; normalizes the encoding of a string in place.
289 290 291 |
# File 'lib/prawn/font.rb', line 289 def normalize_encoding!(str) str.replace(normalize_encoding(str)) end |