Board index » Visual Studio » OpenType fonts (how to retrieve .otf files)

OpenType fonts (how to retrieve .otf files)

Visual Studio45
if I do this I only get TrueType(.ttf) fonts. Is there anyway I can retrieve

OpenType fonts(.otf)??

if ( FontType & TRUETYPE_FONTTYPE )

{

do something;

}



thanks


-
 

Re:OpenType fonts (how to retrieve .otf files)

As far as I understand, "TrueType" is being supplanted by "OpenType", so I think the

TRUETYPE flags are now interpreted in terms of being equivalent to OpenType.

joe



On Tue, 25 Jul 2006 11:47:03 -0700, MFC <MFC@discussions.microsoft.com>wrote:



Quote
if I do this I only get TrueType(.ttf) fonts. Is there anyway I can retrieve

OpenType fonts(.otf)??

if ( FontType & TRUETYPE_FONTTYPE )

{

do something;

}



thanks

Joseph M. Newcomer [MVP]

email: newcomer@flounder.com

Web: www.flounder.com">www.flounder.com

MVP Tips: www.flounder.com/mvp_tips.htm">www.flounder.com/mvp_tips.htm

-

Re:OpenType fonts (how to retrieve .otf files)

apparently, TRUETYPE_FONTTYPE is not retreiving any .otf files...

help!!!



"Joseph M. Newcomer" wrote:



Quote
As far as I understand, "TrueType" is being supplanted by "OpenType", so I think the

TRUETYPE flags are now interpreted in terms of being equivalent to OpenType.

joe



On Tue, 25 Jul 2006 11:47:03 -0700, MFC <MFC@discussions.microsoft.com>wrote:



>if I do this I only get TrueType(.ttf) fonts. Is there anyway I can retrieve

>OpenType fonts(.otf)??

>if ( FontType & TRUETYPE_FONTTYPE )

>{

>do something;

>}

>

>thanks

Joseph M. Newcomer [MVP]

email: newcomer@flounder.com

Web: www.flounder.com">www.flounder.com

MVP Tips: www.flounder.com/mvp_tips.htm">www.flounder.com/mvp_tips.htm



-