Charles
Charles

Reputation: 2682

How do I use GDI to draw text around a circular path?

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

Answers (2)

mSafdel
mSafdel

Reputation: 1495

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

Upvotes: -1

Shay Erlichmen
Shay Erlichmen

Reputation: 31928

Text on Path (Code Project) it uses GDI+ instead of GDI, but I'm sure you will manged.

Upvotes: 2

Related Questions