Reputation: 2682
I need to draw text onto a window HDC along a circular path using C/C++, and I'm getting google-eyed from searching for several hours. Can someone point me to a good reference?
Upvotes: 1
Views: 1854
Reputation: 1495
I suggest to you see this API descriptions in Windows SDK: CreateFont, DrawTextEx, ExtTextOut, PolyTextOut.
Upvotes: -1
Reputation: 31928
Text on Path (Code Project) it uses GDI+ instead of GDI, but I'm sure you will manged.
Upvotes: 2