Update CharacterMapXamlExporter.cs

This commit is contained in:
Wiesław Šoltés 2020-07-02 00:15:36 +02:00
Родитель 02fde53d36
Коммит 8f951760db
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -9,10 +9,12 @@ namespace TypefaceUtil
{
public static void Save(Dictionary<int, ushort> characterToGlyphMap, SKTypeface typeface, float textSize, string brush, StreamWriter streamWriter)
{
var skColor = new SKColor(0x00, 0x00, 0x00);
using var skTextPaint = new SKPaint
{
IsAntialias = true,
Color = new SKColor(0x00, 0x00, 0x00),
Color = skColor,
Typeface = typeface,
TextEncoding = SKTextEncoding.Utf32,
TextSize = textSize,