jellyfin/Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs

37 lines
1.3 KiB
C#
Raw Normal View History

using System;
2017-05-09 15:53:46 -04:00
using MediaBrowser.Model.Drawing;
using SkiaSharp;
2017-05-09 15:53:46 -04:00
2019-01-26 14:43:13 -05:00
namespace Jellyfin.Drawing.Skia
2017-05-09 15:53:46 -04:00
{
/// <summary>
/// Static helper class used to draw percentage-played indicators on images.
/// </summary>
2019-01-20 08:25:13 -05:00
public static class PercentPlayedDrawer
2017-05-09 15:53:46 -04:00
{
private const int IndicatorHeight = 8;
/// <summary>
/// Draw a percentage played indicator on a canvas.
/// </summary>
/// <param name="canvas">The canvas to draw the indicator on.</param>
/// <param name="imageSize">The size of the image being drawn on.</param>
/// <param name="percent">The percentage played to display with the indicator.</param>
public static void Process(SKCanvas canvas, ImageDimensions imageSize, double percent)
2017-05-09 15:53:46 -04:00
{
2020-07-19 14:12:53 -04:00
using var paint = new SKPaint();
var endX = imageSize.Width - 1;
var endY = imageSize.Height - 1;
2017-05-09 15:53:46 -04:00
2020-07-19 14:12:53 -04:00
paint.Color = SKColor.Parse("#99000000");
paint.Style = SKPaintStyle.Fill;
2020-07-19 14:13:18 -04:00
canvas.DrawRect(SKRect.Create(0, (float)endY - IndicatorHeight, endX, endY), paint);
2017-05-09 15:53:46 -04:00
2020-07-19 14:13:56 -04:00
double foregroundWidth = (endX * percent) / 100;
2017-05-09 15:53:46 -04:00
2020-07-19 14:12:53 -04:00
paint.Color = SKColor.Parse("#FF00A4DC");
2020-07-19 14:13:18 -04:00
canvas.DrawRect(SKRect.Create(0, (float)endY - IndicatorHeight, Convert.ToInt32(foregroundWidth), endY), paint);
2017-05-09 15:53:46 -04:00
}
}
}