jellyfin/MediaBrowser.ServerApplication/ImageEncoderHelper.cs

35 lines
976 B
C#
Raw Normal View History

2016-11-11 12:55:12 -07:00
using System;
using Emby.Drawing;
2017-05-09 13:18:02 -07:00
using Emby.Drawing.Skia;
2016-11-18 14:06:00 -07:00
using Emby.Server.Implementations;
2016-11-11 12:55:12 -07:00
using MediaBrowser.Common.Configuration;
2016-11-11 10:33:10 -07:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Logging;
namespace MediaBrowser.Server.Startup.Common
{
public class ImageEncoderHelper
{
2017-06-24 11:30:45 -07:00
public static IImageEncoder GetImageEncoder(ILogger logger,
ILogManager logManager,
IFileSystem fileSystem,
StartupOptions startupOptions,
2016-11-11 12:55:12 -07:00
Func<IHttpClient> httpClient,
IApplicationPaths appPaths)
2016-11-11 10:33:10 -07:00
{
2017-05-15 22:44:06 -07:00
try
2016-11-11 10:33:10 -07:00
{
2017-05-15 22:44:06 -07:00
return new SkiaEncoder(logManager.GetLogger("Skia"), appPaths, httpClient, fileSystem);
}
catch
{
2017-06-24 11:30:45 -07:00
logger.Error("Skia not available. Will try next image processor.");
2016-11-11 10:33:10 -07:00
}
return new NullImageEncoder();
}
}
}