Selecting Printer Fonts not included in windows enum
C / C++ / MFC
5
Posts
3
Posters
0
Views
1
Watching
-
Old method with PCL could select it using a font ID. File output direct to the port. However now I am using a Printer DC and I dont have a CFont object to select. How can I select the printer font in an MFC environment?
-
You can select a printer font inside OnBeginPrint() and OnPrint(). pDC->SelectObject(theFont); Kuphryn
-
As I said.. I do not have a CFont object to select. The font is only in the printers memory. It is not a TrueType windows font and therfore cannot be loaded into a CFont object.