2019-01-13 19:54:44 +00:00
|
|
|
using System.Globalization;
|
2017-05-09 19:53:46 +00:00
|
|
|
using MediaBrowser.Model.Drawing;
|
2019-01-13 19:16:43 +00:00
|
|
|
using SkiaSharp;
|
2017-05-09 19:53:46 +00:00
|
|
|
|
2019-01-26 19:43:13 +00:00
|
|
|
namespace Jellyfin.Drawing.Skia
|
2017-05-09 19:53:46 +00:00
|
|
|
{
|
2019-01-20 13:25:13 +00:00
|
|
|
public static class UnplayedCountIndicator
|
2017-05-09 19:53:46 +00:00
|
|
|
{
|
|
|
|
private const int OffsetFromTopRightCorner = 38;
|
|
|
|
|
2019-01-26 12:16:47 +00:00
|
|
|
public static void DrawUnplayedCountIndicator(SKCanvas canvas, ImageDimensions imageSize, int count)
|
2017-05-09 19:53:46 +00:00
|
|
|
{
|
|
|
|
var x = imageSize.Width - OffsetFromTopRightCorner;
|
|
|
|
var text = count.ToString(CultureInfo.InvariantCulture);
|
|
|
|
|
|
|
|
using (var paint = new SKPaint())
|
|
|
|
{
|
2019-03-05 03:36:23 +00:00
|
|
|
paint.Color = SKColor.Parse("#CC00A4DC");
|
2017-05-09 19:53:46 +00:00
|
|
|
paint.Style = SKPaintStyle.Fill;
|
|
|
|
canvas.DrawCircle((float)x, OffsetFromTopRightCorner, 20, paint);
|
|
|
|
}
|
|
|
|
using (var paint = new SKPaint())
|
|
|
|
{
|
|
|
|
paint.Color = new SKColor(255, 255, 255, 255);
|
|
|
|
paint.Style = SKPaintStyle.Fill;
|
2017-11-21 22:14:56 +00:00
|
|
|
|
2017-05-09 19:53:46 +00:00
|
|
|
paint.TextSize = 24;
|
|
|
|
paint.IsAntialias = true;
|
|
|
|
|
|
|
|
var y = OffsetFromTopRightCorner + 9;
|
|
|
|
|
|
|
|
if (text.Length == 1)
|
|
|
|
{
|
|
|
|
x -= 7;
|
|
|
|
}
|
|
|
|
if (text.Length == 2)
|
|
|
|
{
|
|
|
|
x -= 13;
|
|
|
|
}
|
|
|
|
else if (text.Length >= 3)
|
|
|
|
{
|
|
|
|
x -= 15;
|
|
|
|
y -= 2;
|
|
|
|
paint.TextSize = 18;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas.DrawText(text, (float)x, y, paint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|