我知道图像并不完美,但它足够接近(希望如此)。您可能必须使用提示或其他方式来获得漂亮的文本。
您可能正在使用专为小字符设计的字体,我的花哨字体仅在 12 点上看起来不错,可能不会削减它。
canvas.Clear(new SKColor(19, 139, 4));
var paint = new SKPaint
{
Color = SKColors.Black,
IsAntialias = true,
Style = SKPaintStyle.Fill,
TextAlign = SKTextAlign.Center,
TextSize = 11,
Typeface = SKTypeface.FromFamilyName("Terminal", SKTypefaceStyle.Bold)
};
var coord = new SKPoint(info.Width / 2, (info.Height + paint.TextSize) / 2);
canvas.DrawText("614", coord, paint);
paint.Color = new SKColor(0, 255, 0);
coord.Offset(1, -1);
canvas.DrawText("614", coord, paint);