2017-04-22 12:32:24 -07: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;
|
2018-12-13 06:18:25 -07:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2017-06-05 23:13:07 -07:00
|
|
|
|
using Emby.Drawing.Skia;
|
2017-06-21 07:51:11 -07:00
|
|
|
|
using MediaBrowser.Model.System;
|
2017-11-01 12:45:10 -07:00
|
|
|
|
using MediaBrowser.Model.Globalization;
|
2017-04-22 12:32:24 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Startup.Common
|
|
|
|
|
{
|
|
|
|
|
public class ImageEncoderHelper
|
|
|
|
|
{
|
|
|
|
|
public static IImageEncoder GetImageEncoder(ILogger logger,
|
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
|
StartupOptions startupOptions,
|
|
|
|
|
Func<IHttpClient> httpClient,
|
2017-06-21 07:51:11 -07:00
|
|
|
|
IApplicationPaths appPaths,
|
2017-11-01 12:45:10 -07:00
|
|
|
|
IEnvironmentInfo environment,
|
|
|
|
|
ILocalizationManager localizationManager)
|
2017-04-22 12:32:24 -07:00
|
|
|
|
{
|
|
|
|
|
if (!startupOptions.ContainsOption("-enablegdi"))
|
|
|
|
|
{
|
2017-06-08 11:39:04 -07:00
|
|
|
|
try
|
|
|
|
|
{
|
2018-12-13 06:18:25 -07:00
|
|
|
|
return new SkiaEncoder(logger, appPaths, httpClient, fileSystem, localizationManager);
|
2017-06-08 11:39:04 -07:00
|
|
|
|
}
|
2017-06-15 10:34:05 -07:00
|
|
|
|
catch (Exception ex)
|
2017-06-08 11:39:04 -07:00
|
|
|
|
{
|
2018-12-13 06:18:25 -07:00
|
|
|
|
logger.LogInformation("Skia not available. Will try next image processor. {0}", ex.Message);
|
2017-06-08 11:39:04 -07:00
|
|
|
|
}
|
2017-06-05 23:13:07 -07:00
|
|
|
|
|
2017-04-22 12:32:24 -07:00
|
|
|
|
try
|
|
|
|
|
{
|
2018-12-13 06:18:25 -07:00
|
|
|
|
return new ImageMagickEncoder(logger, appPaths, httpClient, fileSystem, environment);
|
2017-04-22 12:32:24 -07:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
2018-12-13 06:18:25 -07:00
|
|
|
|
logger.LogInformation("ImageMagick not available. Will try next image processor.");
|
2017-04-22 12:32:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new NullImageEncoder();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|