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?
+2
A:
Text on Path (Code Project) it uses GDI+ instead of GDI, but I'm sure you will manged.
Shay Erlichmen
2009-07-01 18:51:29
GDI is not very nice for doing something like this. I second the GDI+ route.
GrendleM
2009-07-05 00:08:28
A:
I suggest to you see this API descriptions in Windows SDK: CreateFont, DrawTextEx, ExtTextOut, PolyTextOut.
mSafdel
2009-07-02 11:24:25