tags:

views:

284

answers:

2

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
GDI is not very nice for doing something like this. I second the GDI+ route.
GrendleM
A: 

I suggest to you see this API descriptions in Windows SDK: CreateFont, DrawTextEx, ExtTextOut, PolyTextOut.

mSafdel