Which part of Win32API?
-
Is there any subset of Win32API that is capable of dealing with TrueType Fonts like picking up a Glyph from the TrueType and rasterizing it.... (While the font is'nt installed in Fonts folder) Please let me know... Best regards, Mohsin Hijazee Polite Programmer
More Object Oriented then C#
-
Is there any subset of Win32API that is capable of dealing with TrueType Fonts like picking up a Glyph from the TrueType and rasterizing it.... (While the font is'nt installed in Fonts folder) Please let me know... Best regards, Mohsin Hijazee Polite Programmer
More Object Oriented then C#
See AddFontResourceEx( , R_PRIVATE, ) to load a font from a file into the application space. Once the font is added to the application space you can get a font handle just like you would for a system font, load it into a DC (bitmap), and then write the required text to the DC. ...cmk Save the whales - collect the whole set
-
Is there any subset of Win32API that is capable of dealing with TrueType Fonts like picking up a Glyph from the TrueType and rasterizing it.... (While the font is'nt installed in Fonts folder) Please let me know... Best regards, Mohsin Hijazee Polite Programmer
More Object Oriented then C#
TrueType Fonts is new in the .NET Framework version 2.0. So use the following namespace to get that, S
ystem.Windows.Forms.VisualStyles Namespace
Appu.. "If you judge people, you have no time to love them." -
TrueType Fonts is new in the .NET Framework version 2.0. So use the following namespace to get that, S
ystem.Windows.Forms.VisualStyles Namespace
Appu.. "If you judge people, you have no time to love them."Uh.. which part of Win32 API did you not understand?