FYI, I've compiled, using NDK r6, the FreeType library (pulled from
AOSP) along with Skia (skia.googlecode.com), and played around with a
few text rendering examples. I'm wondering if I can use this engine to
render South Indian languages (such as Kannada:
http://en.wikipedia.org/wiki/Kannada_language).
Thanks for your insights.
dp
Some languages (at least Arabic) require a preprocessing step before you
can render them in FreeType (apparently Arabic words are written in a
form of cursive where each letter's look varies based on adjacent
letters). I don't know if Dravidian languages need that.
Tim
> --
> You received this message because you are subscribed to the Google Groups "android-ndk" group.
> To post to this group, send email to andro...@googlegroups.com.
> To unsubscribe from this group, send email to android-ndk...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/android-ndk?hl=en.
>
>
Hi, is it still true that Android requires UTF-16 encoding for
TrueType fonts?
Is the FreeType rendering engine capable of rendering
Dravidian languages
(http://en.wikipedia.org/wiki/Dravidian_languages)?
FYI, I've compiled, using NDK r6, the FreeType library (pulled from
AOSP) along with Skia (skia.googlecode.com), and played around with a
few text rendering examples. I'm wondering if I can use this engine to
render South Indian languages (such as Kannada:
http://en.wikipedia.org/wiki/Kannada_language).
Thanks for your insights.
dp
I used HarfBuzz on top of FreeType to get SkPaint draw UTF-16 encoded
strings of required typeface on Android Canvas (SkCanvas). After
hacking this POC, we are now trying to get some decent implementation
around the same scheme.
Thank you!
devi prasad