class HexaPDF:: Layout:: TextFragment
Parent | Object |
---|
A TextFragment
describes an optionally kerned piece of text that shares the same font, font size and other properties.
Its items are either glyph objects of the font or numeric values describing kerning information. All returned measurement values are in text space units. If the items or the style are changed, the clear_cache
has to be called. Otherwise the measurements may not be correct!
The items of a text fragment may be frozen to indicate that the fragment is potentially used multiple times.
The rectangle with the bottom-left corner (x_min
, y_min
) and the top-right corner (x_max
, y_max
) describes the minimum bounding box of the whole text fragment and is usually not equal to the box (0, 0)-(width
, height
).
Attributes
The items (glyphs and kerning values) of the text fragment.
The style to be applied.
Only the following properties are used:
Public Class Methods
Creates a new TextFragment
object for the given text, shapes it and returns it.
The needed style of the text fragment is specified by the style
argument (see Style::create
for details). Note that the resulting style object needs at least the font set.
Creates one or more TextFragment
objects for the given text - possibly using glyphs from fallback fonts -, shapes them and returns them.
If no block is given, the method works like create but returns the text fragment inside an array.
If a block is given, the text is split on codepoints for which there is no glyph in the style’s font. For the parts with valid glyphs TextFragment
objects are created like with create. Each codepoint without a valid glyph is yielded to the given block together with the associated HexaPDF::Font::InvalidGlyph
object as arguments. The block needs to return an array of either HexaPDF::Font::Type1Wrapper::Glyph
or HexaPDF::Font::TrueTypeWrapper::Glyph
objects. This array is then used for creating a TextFragment
object.
The needed style of the text fragments is specified by the style
argument (see Style::create
for details). Note that the resulting style object needs at least the font set.
Creates a new TextFragment
object with the given items and style.
The argument style
can either be a Style
object or a hash of style properties, see Style::create
for details.
Public Instance Methods
Returns the value that should be used as hash key when only the fragment’s attributes - without the items - should play a role.
Clears all cached values.
This method needs to be called if the fragment’s items or attributes are changed!
Draws the text onto the canvas at the given position.
This method is the main styled text drawing facility and therefore some optimizations are done:
-
The text is drawn using
HexaPDF::Content
;:Canvas#show_glyphs_only which means that the text matrix is not updated. Therefore the caller must not rely on it! -
All text style properties mentioned in the description of
style
are set except ifignore_text_properties
is set totrue
. Note that this only applies to style properties that directly affect text drawing, so, for example, underlays/overlays and underlining/strikeout is always done.The caller should set
ignore_text_properties
totrue
if the graphics state hasn’t been changed. This is the case, for example, if the last thing drawn was a text fragment with the same style. -
It is assumed that the text matrix is not rotated, skewed, etc. so that setting the text position can be done using the optimal method.
Creates a new TextFragment
with the same style and custom properties as this one but with the given items
.
The maximum y-coordinate of any item.
The minimum y-coordinate of any item.
Creates a new text fragment that repeats this fragment’s items and applies the necessary spacing so that the returned text fragment fills the given width
completely.
If the given width
is less than the fragment’s width, self
is returned.
The height of the text fragment.
It is calculated as the difference of the maximum of the y_max
values and the minimum of the y_min
values of the items. However, the text rise value is also taken into account so that the baseline is always inside the bounds. For example, if a large negative text rise value is used, the baseline will be equal to the top boundary; if a large positive value is used, it will be equal to the bottom boundary.
Returns the custom properties hash for the text fragment.
See Box#properties
for usage details.
Returns the text of the fragment.
Returns the vertical alignment inside a line which is always :text for text fragments.
See Line
for details.
The width of the text fragment.
It is the sum of the widths of its items and is calculated by using the algorithm presented in PDF2.0 s9.4.4. By using kerning values as the first and/or last items, the text contained in the fragment may spill over the left and/or right boundary.
The maximum x-coordinate of the last glyph.
The minimum x-coordinate of the first glyph.
The maximum y-coordinate, calculated using the scaled ascender of the font.
The minimum y-coordinate, calculated using the scaled descender of the font.