jellyfin/Emby.Drawing/ImageMagick/PlayedIndicatorDrawer.cs

87 lines
2.8 KiB
C#
Raw Normal View History

using ImageMagickSharp;
2015-03-09 04:56:42 +01:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Drawing;
2015-03-09 04:56:42 +01:00
using System;
using System.IO;
2015-04-08 16:38:02 +02:00
namespace Emby.Drawing.ImageMagick
{
public class PlayedIndicatorDrawer
{
private const int FontSize = 52;
private const int OffsetFromTopRightCorner = 38;
2015-03-09 04:56:42 +01:00
private readonly IApplicationPaths _appPaths;
public PlayedIndicatorDrawer(IApplicationPaths appPaths)
{
_appPaths = appPaths;
}
public void DrawPlayedIndicator(MagickWand wand, ImageSize imageSize)
{
var x = imageSize.Width - OffsetFromTopRightCorner;
using (var draw = new DrawingWand())
{
using (PixelWand pixel = new PixelWand())
{
pixel.Color = "#52B54B";
pixel.Opacity = 0.2;
draw.FillColor = pixel;
draw.DrawCircle(x, OffsetFromTopRightCorner, x - 20, OffsetFromTopRightCorner - 20);
pixel.Opacity = 0;
pixel.Color = "white";
draw.FillColor = pixel;
2015-03-09 04:56:42 +01:00
draw.Font = ExtractFont("webdings.ttf", _appPaths);
draw.FontSize = FontSize;
draw.FontStyle = FontStyleType.NormalStyle;
draw.TextAlignment = TextAlignType.CenterAlign;
draw.FontWeight = FontWeightType.RegularStyle;
draw.TextAntialias = true;
draw.DrawAnnotation(x + 4, OffsetFromTopRightCorner + 14, "a");
draw.FillColor = pixel;
wand.CurrentImage.DrawImage(draw);
}
2015-03-09 04:56:42 +01:00
}
}
internal static string ExtractFont(string name, IApplicationPaths paths)
{
var filePath = Path.Combine(paths.ProgramDataPath, "fonts", name);
if (File.Exists(filePath))
{
return filePath;
}
var namespacePath = typeof(PlayedIndicatorDrawer).Namespace + ".fonts." + name;
var tempPath = Path.Combine(paths.TempDirectory, Guid.NewGuid().ToString("N") + ".ttf");
Directory.CreateDirectory(Path.GetDirectoryName(tempPath));
using (var stream = typeof(PlayedIndicatorDrawer).Assembly.GetManifestResourceStream(namespacePath))
{
using (var fileStream = new FileStream(tempPath, FileMode.Create, FileAccess.Write, FileShare.Read))
{
stream.CopyTo(fileStream);
}
}
2015-03-09 04:56:42 +01:00
Directory.CreateDirectory(Path.GetDirectoryName(filePath));
try
{
File.Copy(tempPath, filePath, false);
}
2015-03-09 04:56:42 +01:00
catch (IOException)
{
}
return tempPath;
}
}
}