Dashboard/Quik.Media.Stb/QFontStbtt.cs

37 lines
877 B
C#
Raw Normal View History

2023-07-09 16:46:35 +02:00
using System;
using System.IO;
using static StbTrueTypeSharp.StbTrueType;
using Quik.Media.Color;
namespace Quik.Media.Stb
{
public class QFontStbtt : QFont
{
public override FontInfo Info => throw new NotImplementedException();
public QFontStbtt(Stream source)
{
}
public override QGlyphMetrics[] GetMetricsForPage(int codepage)
{
throw new NotImplementedException();
}
public override QGlyphMetrics GetMetricsForRune(int rune)
{
throw new NotImplementedException();
}
public override bool HasRune(int rune)
{
throw new NotImplementedException();
}
public override QImage RenderPage(int codepage, float resolution, bool sdf)
{
throw new NotImplementedException();
}
}
}