embed fonts

This commit is contained in:
Luke Pulverenti
2015-03-08 23:56:42 -04:00
parent e70e06f0ac
commit 2caf01f43b
4 changed files with 62 additions and 8 deletions

View File

@@ -282,13 +282,13 @@ namespace MediaBrowser.Server.Implementations.Drawing
{
var currentImageSize = new ImageSize(imageWidth, imageHeight);
new PlayedIndicatorDrawer().DrawPlayedIndicator(wand, currentImageSize);
new PlayedIndicatorDrawer(_appPaths).DrawPlayedIndicator(wand, currentImageSize);
}
else if (options.UnplayedCount.HasValue)
{
var currentImageSize = new ImageSize(imageWidth, imageHeight);
new UnplayedCountIndicator().DrawUnplayedCountIndicator(wand, currentImageSize, options.UnplayedCount.Value);
new UnplayedCountIndicator(_appPaths).DrawUnplayedCountIndicator(wand, currentImageSize, options.UnplayedCount.Value);
}
if (options.PercentPlayed > 0)