Problem:
I'm trying to display a small amount of text using complex scripts such as Arabic and Bengali on mobile devices (specifically Android, BlackBerry phones, and BlackBerry PlayBook). (The app is Allergy Traveler) These devices both fail to correctly display the text, but for different reasons.
On Android and PlayBook, I can supply a font in which case the characters display, but the characters are not connected correctly. Each character displays without considering the context.
On BlackBerry, the device doesn't have appropriate fonts. I can supply a font, but the font file far exceeds the maximum font size (70kB).
Proposed Solution:
I think the process of correctly using context to display a word is called reshaping. Presumably, this takes the text and returns an alternative set of characters to display. My proposed solution is to do this reshaping in advance. On Android, this would ensure the text correctly uses the context, and on BlackBerry, this would allow me to remove unused characters, and reduce the font size.
Question:
Are there any APIs to do this "reshaping" or any other suggestions? I'm willing to use any technology on Windows or Linux (eg a Win32 API, Perl, Python, Java, ...)
Thanks for all the suggestions.