jellyfin/MediaBrowser.Server.Mono/ImageEncoderHelper.cs

52 lines
1.7 KiB
C#
Raw Normal View History

2017-04-22 15:32:24 -04:00
using System;
using Emby.Drawing;
using Emby.Drawing.ImageMagick;
using Emby.Server.Implementations;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Logging;
2017-06-06 02:13:07 -04:00
using Emby.Drawing.Skia;
2017-06-21 10:51:11 -04:00
using MediaBrowser.Model.System;
using MediaBrowser.Model.Globalization;
2017-04-22 15:32:24 -04:00
namespace MediaBrowser.Server.Startup.Common
{
public class ImageEncoderHelper
{
public static IImageEncoder GetImageEncoder(ILogger logger,
ILogManager logManager,
IFileSystem fileSystem,
StartupOptions startupOptions,
Func<IHttpClient> httpClient,
2017-06-21 10:51:11 -04:00
IApplicationPaths appPaths,
IEnvironmentInfo environment,
ILocalizationManager localizationManager)
2017-04-22 15:32:24 -04:00
{
if (!startupOptions.ContainsOption("-enablegdi"))
{
2017-06-08 14:39:04 -04:00
try
{
return new SkiaEncoder(logManager.GetLogger("Skia"), appPaths, httpClient, fileSystem, localizationManager);
2017-06-08 14:39:04 -04:00
}
2017-06-15 13:34:05 -04:00
catch (Exception ex)
2017-06-08 14:39:04 -04:00
{
2017-11-16 16:25:18 -05:00
logger.Info("Skia not available. Will try next image processor. {0}", ex.Message);
2017-06-08 14:39:04 -04:00
}
2017-06-06 02:13:07 -04:00
2017-04-22 15:32:24 -04:00
try
{
2017-06-21 10:51:11 -04:00
return new ImageMagickEncoder(logManager.GetLogger("ImageMagick"), appPaths, httpClient, fileSystem, environment);
2017-04-22 15:32:24 -04:00
}
catch
{
2017-11-16 16:25:18 -05:00
logger.Info("ImageMagick not available. Will try next image processor.");
2017-04-22 15:32:24 -04:00
}
}
return new NullImageEncoder();
}
}
}