Aspose::Font::Renderers::IGlyphRenderer::RenderIndependentGlyphPath method

IGlyphRenderer::RenderIndependentGlyphPath method

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.

virtual void Aspose::Font::Renderers::IGlyphRenderer::RenderIndependentGlyphPath(System::SharedPtr<IFont> font, System::SharedPtr<Aspose::Font::Glyphs::GlyphId> glyphId, System::SharedPtr<Aspose::Font::Glyphs::Glyph> glyph, System::SharedPtr<TransformationMatrix> glyphPlacementMatrix)=0
ParameterTypeDescription
fontSystem::SharedPtr<IFont>The font that contains the glyph.
glyphIdSystem::SharedPtr<Aspose::Font::Glyphs::GlyphId>Physical glyph index inside font. Note that this is not a unicode.
glyphSystem::SharedPtr<Aspose::Font::Glyphs::Glyph>Glyph to render.
glyphPlacementMatrixSystem::SharedPtr<TransformationMatrix>Matrix that is applied to glyph coordinates.

See Also