Why DrawText output is different on Bitmap.Canvas and Form.Canvas for strings which combine arabic and other symbols? (See attachment)
What can I do to fix that?
...
DrawText(Form1.Canvas.Handle, PChar(s), Length(s), R, DT_WORDBREAK);
DrawText(Bitmap.Canvas.Handle, PChar(s), Length(s), R, DT_WORDBREAK);
Form1.Canvas.Draw (10, 40, Bitmap);
...