I am drawing an image using CoreGraphics and can't get the €-sign displaying correctly..
The dollar sign works fine, however. I have tried it using different fonts but same problem, my guess now is that there is an encoding problem of some sort, but I still cant get it working correctly.
Here is my code that does the drawing:
context.SelectFont (font.FamilyName, font.PointSize, CGTextEncoding.MacRoman);
context.SetFillColorWithColor (color.CGColor);
context.SetTextDrawingMode (CGTextDrawingMode.Fill);
context.SetShouldAntialias (antiAlias);
context.ShowTextAtPoint (position.X, position.Y,text);
Anything that can point me in the right direction is appreciated.