public interface IGlyphRenderer
Interface used to render glyphs.
| Modifier and Type | Method and Description |
|---|---|
void |
renderGlyph(IFont font,
GlyphId glyphId)
Renders glyph.
|
void |
renderGlyph(IFont font,
GlyphId glyphId,
Glyph glyph,
TransformationMatrix glyphPlacementMatrix)
Renders glyph, an objective of this overloaded version - to be used with cache for glyphs.
|
void |
renderGlyph(IFont font,
GlyphId glyphId,
TransformationMatrix glyphPlacementMatrix)
Renders glyph.
|
void |
renderGlyph(IFont font,
long glyphIndex)
Renders glyph.
|
void |
renderGlyph(IFont font,
long glyphIndex,
TransformationMatrix glyphPlacementMatrix)
Renders glyph.
|
void |
renderIndependentGlyphPath(IFont font,
GlyphId glyphId,
Glyph glyph,
TransformationMatrix glyphPlacementMatrix)
Renders glyph using independent glyph path.
|
void renderGlyph(IFont font, long glyphIndex)
Renders glyph.
font - The font that contains the glyph.glyphIndex - Physical glyph index inside font. Note that this is not a unicode.void renderGlyph(IFont font, long glyphIndex, TransformationMatrix glyphPlacementMatrix)
Renders glyph.
font - The font that contains the glyph.glyphIndex - Physical glyph index inside font. Note that this is not a unicode.glyphPlacementMatrix - Matrix that is applied to glyph coordinates.void renderGlyph(IFont font, GlyphId glyphId)
Renders glyph.
font - The font that contains the glyph.glyphId - Physical glyph index inside font. Note that this is not a unicode.void renderGlyph(IFont font, GlyphId glyphId, TransformationMatrix glyphPlacementMatrix)
Renders glyph.
font - The font that contains the glyph.glyphId - Physical glyph index inside font. Note that this is not a unicode.glyphPlacementMatrix - Matrix that is applied to glyph coordinates.void renderGlyph(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)
Renders glyph, an objective of this overloaded version - to be used with cache for glyphs.
font - The font that contains the glyph.glyphId - Physical glyph index inside font. Note that this is not a unicode.glyph - Glyph to render.glyphPlacementMatrix - Matrix that is applied to glyph coordinates.void renderIndependentGlyphPath(IFont font, GlyphId glyphId, Glyph glyph, TransformationMatrix glyphPlacementMatrix)
Renders glyph using independent glyph path. RenderGlyph() function family changes glyph path on rendering. It then leads to necessity reload this glyph again. This function uses copy of glyph path and doesn't changes original glyph path, so the same glyph could be reused multiple times. This version of function is intended for use with cache of glyphs.
font - The font that contains the glyph.glyphId - Physical glyph index inside font. Note that this is not a unicode.glyph - Glyph to render.glyphPlacementMatrix - Matrix that is applied to glyph coordinates.Copyright © 2025 Aspose. All Rights Reserved.