i need to draw text with border on NSImage. I do something like this:
[image lockFocus];
[@"Hello" drawAtPoint:NSZeroPoint withAttributes:myAttr];
[image unlockFocus];
All work, but i need to draw text with white color and with 4 pixels thick black border.
How I can do this?
If you specify a stroke width and color in the attributes, you should get a stroke.