1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for win32 memory font loading.

This commit is contained in:
jules 2013-12-19 16:43:51 +00:00
parent ff6655fedb
commit d3b92ab447

View file

@ -319,7 +319,7 @@ public:
ascent (1.0f), heightToPointsFactor (1.0f),
defaultGlyph (-1)
{
loadFont (name);
loadFont();
}
WindowsTypeface (const void* data, size_t dataSize)
@ -335,7 +335,8 @@ public:
nullptr, &numInstalled);
MemoryInputStream m (data, dataSize, false);
loadFont (TTFNameExtractor::getTypefaceNameFromFile (m));
name = TTFNameExtractor::getTypefaceNameFromFile (m);
loadFont();
}
~WindowsTypeface()
@ -494,7 +495,7 @@ private:
SortedSet<KerningPair> kerningPairs;
void loadFont (const String& faceName)
void loadFont()
{
SetMapperFlags (dc, 0);
SetMapMode (dc, MM_TEXT);
@ -508,7 +509,7 @@ private:
lf.lfItalic = (BYTE) (style == "Italic" ? TRUE : FALSE);
lf.lfWeight = style == "Bold" ? FW_BOLD : FW_NORMAL;
lf.lfHeight = -256;
faceName.copyToUTF16 (lf.lfFaceName, sizeof (lf.lfFaceName));
name.copyToUTF16 (lf.lfFaceName, sizeof (lf.lfFaceName));
HFONT standardSizedFont = CreateFontIndirect (&lf);