Print text that looks hollow
-
Is there any easy way to print text like this: http://www.ruthtechnology.com/hollow\_20.jpg The numbers have a black trim, but nothing inside. Please any response any one can give me will be greatly appreciated. Sincerely, Danielle Brina
-
Is there any easy way to print text like this: http://www.ruthtechnology.com/hollow\_20.jpg The numbers have a black trim, but nothing inside. Please any response any one can give me will be greatly appreciated. Sincerely, Danielle Brina
You can create a path of the text and then stroke it. You'd do this by -i assume you are using the CDC class- something like:
CDC dc;
...
dc.BeginPath();
dc.TextOut(0, 0, _T("Hollow text"));
dc.EndPath();
dc.StrokePath();
...> The problem with computers is that they do what you tell them to do and not what you want them to do. < > Computers are evil, EVIL i tell you!! <