views:

202

answers:

2

Hi all
Recently i asked two questions (1 and 2) about using OpenType features in programs written by python and .net languages, but didn't get an answer. i realized there is no way to change text rendering engines of operating systems, or force them to use OpenType. so now want to implement my own. such a program that:

  • provides a text engine that
    • receives glyph shapes from otf and ttf files and renders them in sequence of glyphs in text.
    • generates all of OTL features
  • can be used in other parts of applications like controls and components of .NET or python GUI libraries.

if python and .net languages are not suitable in this situation, aware me about other programming languages or tools.
comments and answers about text rendering system of common Operating Systems, or designing text engines compatible with unicode 5.02 protocol are welcomed.

+1  A: 

Pango+Cairo does what you want

You might want to check out Pango which is a text layout and rendering engine which can handle OpenType ... see This blog entry on advanced opentype in Pango.

Pango also uses Cairo for rendering fonts, blocks of text using an SVG like backend.

Aiden Bell
A: 

Take a look at HarfBuzz

xxx
was not related to text engines... that's just an opentype tool.
Sorush Rabiee