I am trying to get a substring of a RTL string and draw it onto graphics.
If I divide my arabic string then its first part has LTR direction and the second one has RTL. All chars are stored in logics order one-by-one from left to right.
Maybe when I create substring I remove a some special character?
Although TextLayout can draw both substrings correctly.
This how result looks https://dl.dropbox.com/u/1170068/screens/rtl_substrings.png
Take a look at the source
public class RTLText extends JFrame {
private RTLTextComponent drawPanel;
String arabicLine = "ﻟﺒﻮﺍﺑﺔ ﺍﻟﻄﻠﺒــﺔ";
private String sub, sub2;
private Font font = new Font("Arial", Font.PLAIN, 12);
public RTLText() throws Exception
{
setTitle("RTL Text");
setSize(600, 500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
drawPanel = new RTLTextComponent();
setLayout(new BorderLayout());
getContentPane().add(drawPanel, BorderLayout.CENTER);
setVisible(true);
//
initStrings();
}
private void initStrings()
{
sub = arabicLine.substring(0, 6);
sub2 = arabicLine.substring(7, 15);
}
public class RTLTextComponent extends JComponent
{
public void paint(java.awt.Graphics arg0)
{
Graphics2D g2d = (Graphics2D) arg0;
g2d.setFont(font);
g2d.scale(4, 4);
g2d.drawString("Orig= " + arabicLine, 5, 30);
g2d.drawString("Substr(0,6)= " + sub, 5, 50);
g2d.drawString("Substr2(7,15)= " + sub2, 5, 70);
//TextLayout draws both correctly
// new TextLayout(arabicLine, font,
// g2d.getFontRenderContext()).draw(g2d, 5, 30);
// new TextLayout(sub, font, g2d.getFontRenderContext()).draw(g2d,
// 5, 50);
// new TextLayout(sub2, font, g2d.getFontRenderContext()).draw(g2d,
// 5, 70);
};
}
public static void main(String[] args) throws Exception
{
new RTLText();
}
}
Thanks for any help.