2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2013-09-19 08:12:28 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
2013-09-18 11:49:06 -07:00
|
|
|
using System.IO;
|
2013-09-19 08:12:28 -07:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
2019-01-13 12:17:02 -07:00
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
|
using MediaBrowser.Controller;
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2017-08-25 23:18:52 -07:00
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
2019-01-13 12:17:02 -07:00
|
|
|
using MediaBrowser.Model.Drawing;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.IO;
|
2015-11-09 11:18:37 -07:00
|
|
|
using MediaBrowser.Model.Net;
|
2019-01-13 12:17:02 -07:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2015-04-08 07:38:02 -07:00
|
|
|
namespace Emby.Drawing
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-08-11 07:52:37 -07:00
|
|
|
/// Class ImageProcessor.
|
2013-02-20 18:33:05 -07:00
|
|
|
/// </summary>
|
2020-01-21 12:26:30 -07:00
|
|
|
public sealed class ImageProcessor : IImageProcessor, IDisposable
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2019-08-11 07:52:37 -07:00
|
|
|
// Increment this when there's a change requiring caches to be invalidated
|
|
|
|
private const string Version = "3";
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
private static readonly HashSet<string> _transparentImageTypes
|
|
|
|
= new HashSet<string>(StringComparer.OrdinalIgnoreCase) { ".png", ".webp", ".gif" };
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2013-02-21 14:39:53 -07:00
|
|
|
private readonly ILogger _logger;
|
2013-10-31 07:03:23 -07:00
|
|
|
private readonly IFileSystem _fileSystem;
|
2013-11-07 08:57:12 -07:00
|
|
|
private readonly IServerApplicationPaths _appPaths;
|
2020-01-21 12:26:30 -07:00
|
|
|
private readonly IImageEncoder _imageEncoder;
|
2020-04-04 14:12:24 -07:00
|
|
|
private readonly IMediaEncoder _mediaEncoder;
|
2013-09-18 11:49:06 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
private bool _disposed = false;
|
|
|
|
|
|
|
|
/// <summary>
|
2020-01-21 12:26:30 -07:00
|
|
|
/// Initializes a new instance of the <see cref="ImageProcessor"/> class.
|
2019-08-11 07:52:37 -07:00
|
|
|
/// </summary>
|
2020-01-21 12:26:30 -07:00
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
/// <param name="appPaths">The server application paths.</param>
|
|
|
|
/// <param name="fileSystem">The filesystem.</param>
|
|
|
|
/// <param name="imageEncoder">The image encoder.</param>
|
|
|
|
/// <param name="mediaEncoder">The media encoder.</param>
|
2019-01-12 06:46:17 -07:00
|
|
|
public ImageProcessor(
|
2019-08-11 07:52:37 -07:00
|
|
|
ILogger<ImageProcessor> logger,
|
2015-04-29 10:39:23 -07:00
|
|
|
IServerApplicationPaths appPaths,
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
IImageEncoder imageEncoder,
|
2020-04-04 14:12:24 -07:00
|
|
|
IMediaEncoder mediaEncoder)
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2019-08-11 07:52:37 -07:00
|
|
|
_logger = logger;
|
2013-10-31 07:03:23 -07:00
|
|
|
_fileSystem = fileSystem;
|
2015-04-08 07:38:02 -07:00
|
|
|
_imageEncoder = imageEncoder;
|
2017-08-25 23:18:52 -07:00
|
|
|
_mediaEncoder = mediaEncoder;
|
2019-01-20 18:46:40 -07:00
|
|
|
_appPaths = appPaths;
|
2015-04-08 07:38:02 -07:00
|
|
|
}
|
2014-10-26 20:06:01 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
private string ResizedImageCachePath => Path.Combine(_appPaths.ImageCachePath, "resized-images");
|
2017-05-12 11:09:42 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-06 13:31:41 -07:00
|
|
|
public IReadOnlyCollection<string> SupportedInputFormats =>
|
|
|
|
new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
2013-12-14 18:17:57 -07:00
|
|
|
{
|
2019-01-13 13:31:14 -07:00
|
|
|
"tiff",
|
|
|
|
"tif",
|
|
|
|
"jpeg",
|
|
|
|
"jpg",
|
|
|
|
"png",
|
|
|
|
"aiff",
|
|
|
|
"cr2",
|
|
|
|
"crw",
|
2020-01-21 12:26:30 -07:00
|
|
|
"nef",
|
2019-01-13 13:31:14 -07:00
|
|
|
"orf",
|
|
|
|
"pef",
|
|
|
|
"arw",
|
|
|
|
"webp",
|
|
|
|
"gif",
|
|
|
|
"bmp",
|
|
|
|
"erf",
|
|
|
|
"raf",
|
|
|
|
"rw2",
|
|
|
|
"nrw",
|
|
|
|
"dng",
|
|
|
|
"ico",
|
|
|
|
"astc",
|
|
|
|
"ktx",
|
|
|
|
"pkm",
|
|
|
|
"wbmp"
|
|
|
|
};
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public bool SupportsImageCollageCreation => _imageEncoder.SupportsImageCollageCreation;
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2013-09-19 08:12:28 -07:00
|
|
|
public async Task ProcessImage(ImageProcessingOptions options, Stream toStream)
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2014-07-17 15:21:35 -07:00
|
|
|
var file = await ProcessImage(options).ConfigureAwait(false);
|
|
|
|
|
2020-01-08 09:52:50 -07:00
|
|
|
using (var fileStream = new FileStream(file.Item1, FileMode.Open, FileAccess.Read, FileShare.Read, IODefaults.FileStreamBufferSize, true))
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2014-07-17 15:21:35 -07:00
|
|
|
await fileStream.CopyToAsync(toStream).ConfigureAwait(false);
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
2014-07-17 15:21:35 -07:00
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-06 13:31:41 -07:00
|
|
|
public IReadOnlyCollection<ImageFormat> GetSupportedImageOutputFormats()
|
|
|
|
=> _imageEncoder.SupportedOutputFormats;
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2017-09-07 11:17:18 -07:00
|
|
|
public bool SupportsTransparency(string path)
|
2019-08-11 07:52:37 -07:00
|
|
|
=> _transparentImageTypes.Contains(Path.GetExtension(path));
|
2017-07-25 11:32:03 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-12 06:46:17 -07:00
|
|
|
public async Task<(string path, string mimeType, DateTime dateModified)> ProcessImage(ImageProcessingOptions options)
|
2014-07-17 15:21:35 -07:00
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
ItemImageInfo originalImage = options.Image;
|
|
|
|
BaseItem item = options.Item;
|
2015-10-16 10:06:31 -07:00
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
string originalImagePath = originalImage.Path;
|
|
|
|
DateTime dateModified = originalImage.DateModified;
|
2019-01-26 05:16:47 -07:00
|
|
|
ImageDimensions? originalImageSize = null;
|
2019-01-12 06:46:17 -07:00
|
|
|
if (originalImage.Width > 0 && originalImage.Height > 0)
|
|
|
|
{
|
2019-01-26 05:16:47 -07:00
|
|
|
originalImageSize = new ImageDimensions(originalImage.Width, originalImage.Height);
|
2019-01-12 06:46:17 -07:00
|
|
|
}
|
2013-11-07 08:57:12 -07:00
|
|
|
|
2015-10-25 22:29:32 -07:00
|
|
|
if (!_imageEncoder.SupportsImageEncoding)
|
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
|
2013-11-06 14:32:26 -07:00
|
|
|
}
|
|
|
|
|
2017-08-25 23:18:52 -07:00
|
|
|
var supportedImageInfo = await GetSupportedImage(originalImagePath, dateModified).ConfigureAwait(false);
|
2019-01-12 06:46:17 -07:00
|
|
|
originalImagePath = supportedImageInfo.path;
|
2019-03-11 12:44:12 -07:00
|
|
|
|
|
|
|
if (!File.Exists(originalImagePath))
|
|
|
|
{
|
|
|
|
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
|
|
|
|
}
|
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
dateModified = supportedImageInfo.dateModified;
|
2019-08-11 07:52:37 -07:00
|
|
|
bool requiresTransparency = _transparentImageTypes.Contains(Path.GetExtension(originalImagePath));
|
2017-08-25 23:18:52 -07:00
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
bool autoOrient = false;
|
2017-06-09 12:24:31 -07:00
|
|
|
ImageOrientation? orientation = null;
|
2019-01-12 06:46:17 -07:00
|
|
|
if (item is Photo photo)
|
2017-06-09 12:24:31 -07:00
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
if (photo.Orientation.HasValue)
|
|
|
|
{
|
|
|
|
if (photo.Orientation.Value != ImageOrientation.TopLeft)
|
|
|
|
{
|
|
|
|
autoOrient = true;
|
|
|
|
orientation = photo.Orientation;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Orientation unknown, so do it
|
|
|
|
autoOrient = true;
|
|
|
|
orientation = photo.Orientation;
|
|
|
|
}
|
2017-06-09 12:24:31 -07:00
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (options.HasDefaultOptions(originalImagePath, originalImageSize) && (!autoOrient || !options.RequiresAutoOrientation))
|
2015-11-09 11:18:37 -07:00
|
|
|
{
|
|
|
|
// Just spit out the original file if all the options are default
|
2019-01-12 06:46:17 -07:00
|
|
|
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
|
2015-11-09 11:18:37 -07:00
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2019-01-26 05:16:47 -07:00
|
|
|
ImageDimensions newSize = ImageHelper.GetNewImageSize(options, null);
|
2019-01-12 06:46:17 -07:00
|
|
|
int quality = options.Quality;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
ImageFormat outputFormat = GetOutputFormat(options.SupportedOutputFormats, requiresTransparency);
|
|
|
|
string cacheFilePath = GetCacheFilePath(originalImagePath, newSize, quality, dateModified, outputFormat, options.AddPlayedIndicator, options.PercentPlayed, options.UnplayedCount, options.Blur, options.BackgroundColor, options.ForegroundLayer);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2013-04-02 19:59:27 -07:00
|
|
|
try
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2019-01-26 14:59:53 -07:00
|
|
|
if (!File.Exists(cacheFilePath))
|
2015-03-26 21:17:04 -07:00
|
|
|
{
|
2017-07-25 11:32:03 -07:00
|
|
|
if (options.CropWhiteSpace && !SupportsTransparency(originalImagePath))
|
|
|
|
{
|
|
|
|
options.CropWhiteSpace = false;
|
|
|
|
}
|
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
string resultPath = _imageEncoder.EncodeImage(originalImagePath, dateModified, cacheFilePath, autoOrient, orientation, quality, options, outputFormat);
|
2017-05-17 11:18:18 -07:00
|
|
|
|
|
|
|
if (string.Equals(resultPath, originalImagePath, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
|
2017-05-17 11:18:18 -07:00
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
2015-11-11 07:56:31 -07:00
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
return (cacheFilePath, GetMimeType(outputFormat, cacheFilePath), _fileSystem.GetLastWriteTimeUtc(cacheFilePath));
|
2015-11-11 07:56:31 -07:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
// If it fails for whatever reason, return the original image
|
2018-12-20 05:11:26 -07:00
|
|
|
_logger.LogError(ex, "Error encoding image");
|
2019-01-12 06:46:17 -07:00
|
|
|
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
2016-07-17 09:59:40 -07:00
|
|
|
}
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
private ImageFormat GetOutputFormat(IReadOnlyCollection<ImageFormat> clientSupportedFormats, bool requiresTransparency)
|
2017-09-07 11:17:18 -07:00
|
|
|
{
|
|
|
|
var serverFormats = GetSupportedImageOutputFormats();
|
|
|
|
|
|
|
|
// Client doesn't care about format, so start with webp if supported
|
|
|
|
if (serverFormats.Contains(ImageFormat.Webp) && clientSupportedFormats.Contains(ImageFormat.Webp))
|
|
|
|
{
|
|
|
|
return ImageFormat.Webp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If transparency is needed and webp isn't supported, than png is the only option
|
2018-09-12 10:26:21 -07:00
|
|
|
if (requiresTransparency && clientSupportedFormats.Contains(ImageFormat.Png))
|
2017-09-07 11:17:18 -07:00
|
|
|
{
|
|
|
|
return ImageFormat.Png;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (var format in clientSupportedFormats)
|
|
|
|
{
|
|
|
|
if (serverFormats.Contains(format))
|
|
|
|
{
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We should never actually get here
|
|
|
|
return ImageFormat.Jpg;
|
|
|
|
}
|
|
|
|
|
2015-11-09 11:18:37 -07:00
|
|
|
private string GetMimeType(ImageFormat format, string path)
|
2020-01-21 12:26:30 -07:00
|
|
|
=> format switch
|
|
|
|
{
|
|
|
|
ImageFormat.Bmp => MimeTypes.GetMimeType("i.bmp"),
|
|
|
|
ImageFormat.Gif => MimeTypes.GetMimeType("i.gif"),
|
|
|
|
ImageFormat.Jpg => MimeTypes.GetMimeType("i.jpg"),
|
|
|
|
ImageFormat.Png => MimeTypes.GetMimeType("i.png"),
|
|
|
|
ImageFormat.Webp => MimeTypes.GetMimeType("i.webp"),
|
|
|
|
_ => MimeTypes.GetMimeType(path)
|
|
|
|
};
|
2015-10-27 19:30:19 -07:00
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
/// <summary>
|
2020-01-21 12:26:30 -07:00
|
|
|
/// Gets the cache file path based on a set of parameters.
|
2013-02-20 18:33:05 -07:00
|
|
|
/// </summary>
|
2019-01-26 05:16:47 -07:00
|
|
|
private string GetCacheFilePath(string originalPath, ImageDimensions outputSize, int quality, DateTime dateModified, ImageFormat format, bool addPlayedIndicator, double percentPlayed, int? unwatchedCount, int? blur, string backgroundColor, string foregroundLayer)
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
var filename = originalPath
|
|
|
|
+ "width=" + outputSize.Width
|
|
|
|
+ "height=" + outputSize.Height
|
|
|
|
+ "quality=" + quality
|
|
|
|
+ "datemodified=" + dateModified.Ticks
|
|
|
|
+ "f=" + format;
|
2013-09-19 08:12:28 -07:00
|
|
|
|
2013-10-02 08:32:11 -07:00
|
|
|
if (addPlayedIndicator)
|
|
|
|
{
|
|
|
|
filename += "pl=true";
|
|
|
|
}
|
|
|
|
|
2014-09-01 13:10:54 -07:00
|
|
|
if (percentPlayed > 0)
|
2013-09-19 10:45:48 -07:00
|
|
|
{
|
2014-09-01 13:10:54 -07:00
|
|
|
filename += "p=" + percentPlayed;
|
2013-09-21 08:06:00 -07:00
|
|
|
}
|
|
|
|
|
2014-01-01 11:26:31 -07:00
|
|
|
if (unwatchedCount.HasValue)
|
|
|
|
{
|
|
|
|
filename += "p=" + unwatchedCount.Value;
|
|
|
|
}
|
2014-03-27 20:32:43 -07:00
|
|
|
|
2016-12-03 00:58:48 -07:00
|
|
|
if (blur.HasValue)
|
|
|
|
{
|
|
|
|
filename += "blur=" + blur.Value;
|
|
|
|
}
|
|
|
|
|
2013-09-21 08:06:00 -07:00
|
|
|
if (!string.IsNullOrEmpty(backgroundColor))
|
|
|
|
{
|
|
|
|
filename += "b=" + backgroundColor;
|
2013-09-19 10:45:48 -07:00
|
|
|
}
|
|
|
|
|
2016-02-23 12:48:58 -07:00
|
|
|
if (!string.IsNullOrEmpty(foregroundLayer))
|
|
|
|
{
|
|
|
|
filename += "fl=" + foregroundLayer;
|
|
|
|
}
|
|
|
|
|
2015-03-01 22:16:29 -07:00
|
|
|
filename += "v=" + Version;
|
|
|
|
|
2019-01-27 04:03:43 -07:00
|
|
|
return GetCachePath(ResizedImageCachePath, filename, "." + format.ToString().ToLowerInvariant());
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-05 11:53:50 -07:00
|
|
|
public ImageDimensions GetImageDimensions(BaseItem item, ItemImageInfo info)
|
2015-02-28 06:42:47 -07:00
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
int width = info.Width;
|
|
|
|
int height = info.Height;
|
2015-02-28 06:42:47 -07:00
|
|
|
|
2017-10-21 23:22:43 -07:00
|
|
|
if (height > 0 && width > 0)
|
|
|
|
{
|
2019-01-26 05:16:47 -07:00
|
|
|
return new ImageDimensions(width, height);
|
2017-10-21 23:22:43 -07:00
|
|
|
}
|
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
string path = info.Path;
|
|
|
|
_logger.LogInformation("Getting image size for item {ItemType} {Path}", item.GetType().Name, path);
|
2017-10-21 23:22:43 -07:00
|
|
|
|
2019-02-05 11:53:50 -07:00
|
|
|
ImageDimensions size = GetImageDimensions(path);
|
2019-01-26 05:16:47 -07:00
|
|
|
info.Width = size.Width;
|
|
|
|
info.Height = size.Height;
|
2017-10-21 23:22:43 -07:00
|
|
|
|
|
|
|
return size;
|
2015-10-16 12:25:19 -07:00
|
|
|
}
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-05 11:53:50 -07:00
|
|
|
public ImageDimensions GetImageDimensions(string path)
|
2019-01-26 05:16:47 -07:00
|
|
|
=> _imageEncoder.GetImageSize(path);
|
2013-06-03 19:02:49 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-23 12:05:49 -07:00
|
|
|
public string GetImageHash(string path)
|
|
|
|
=> _imageEncoder.GetImageHash(path);
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2018-09-12 10:26:21 -07:00
|
|
|
public string GetImageCacheTag(BaseItem item, ItemImageInfo image)
|
2020-01-21 12:26:30 -07:00
|
|
|
=> (item.Path + image.DateModified.Ticks).GetMD5().ToString("N", CultureInfo.InvariantCulture);
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2018-09-12 10:26:21 -07:00
|
|
|
public string GetImageCacheTag(BaseItem item, ChapterInfo chapter)
|
|
|
|
{
|
2020-04-05 12:19:04 -07:00
|
|
|
return GetImageCacheTag(item, new ItemImageInfo
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2020-04-05 12:19:04 -07:00
|
|
|
Path = chapter.ImagePath,
|
|
|
|
Type = ImageType.Chapter,
|
|
|
|
DateModified = chapter.ImageDateModified
|
|
|
|
});
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
private async Task<(string path, DateTime dateModified)> GetSupportedImage(string originalImagePath, DateTime dateModified)
|
2017-08-25 23:18:52 -07:00
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
var inputFormat = Path.GetExtension(originalImagePath)
|
2017-08-25 23:18:52 -07:00
|
|
|
.TrimStart('.')
|
|
|
|
.Replace("jpeg", "jpg", StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
2017-09-10 13:40:31 -07:00
|
|
|
// These are just jpg files renamed as tbn
|
|
|
|
if (string.Equals(inputFormat, "tbn", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
return (originalImagePath, dateModified);
|
2017-09-10 13:40:31 -07:00
|
|
|
}
|
|
|
|
|
2019-02-06 13:31:41 -07:00
|
|
|
if (!_imageEncoder.SupportedInputFormats.Contains(inputFormat))
|
2017-08-25 23:18:52 -07:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2019-08-11 07:52:37 -07:00
|
|
|
string filename = (originalImagePath + dateModified.Ticks.ToString(CultureInfo.InvariantCulture)).GetMD5().ToString("N", CultureInfo.InvariantCulture);
|
2017-08-25 23:18:52 -07:00
|
|
|
|
2020-04-04 14:12:24 -07:00
|
|
|
string cacheExtension = _mediaEncoder.SupportsEncoder("libwebp") ? ".webp" : ".png";
|
2017-09-18 10:07:50 -07:00
|
|
|
var outputPath = Path.Combine(_appPaths.ImageCachePath, "converted-images", filename + cacheExtension);
|
2017-08-25 23:18:52 -07:00
|
|
|
|
|
|
|
var file = _fileSystem.GetFileInfo(outputPath);
|
|
|
|
if (!file.Exists)
|
|
|
|
{
|
2020-04-04 14:12:24 -07:00
|
|
|
await _mediaEncoder.ConvertImage(originalImagePath, outputPath).ConfigureAwait(false);
|
2017-08-25 23:18:52 -07:00
|
|
|
dateModified = _fileSystem.GetLastWriteTimeUtc(outputPath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dateModified = file.LastWriteTimeUtc;
|
|
|
|
}
|
|
|
|
|
|
|
|
originalImagePath = outputPath;
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
_logger.LogError(ex, "Image conversion failed for {Path}", originalImagePath);
|
2017-08-25 23:18:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
return (originalImagePath, dateModified);
|
2017-08-25 23:18:52 -07:00
|
|
|
}
|
|
|
|
|
2013-09-18 11:49:06 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the cache path.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
/// <param name="uniqueName">Name of the unique.</param>
|
|
|
|
/// <param name="fileExtension">The file extension.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
2019-01-13 13:37:13 -07:00
|
|
|
/// <exception cref="ArgumentNullException">
|
2013-09-18 11:49:06 -07:00
|
|
|
/// path
|
|
|
|
/// or
|
|
|
|
/// uniqueName
|
|
|
|
/// or
|
2020-01-21 12:26:30 -07:00
|
|
|
/// fileExtension.
|
2013-09-18 11:49:06 -07:00
|
|
|
/// </exception>
|
|
|
|
public string GetCachePath(string path, string uniqueName, string fileExtension)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(path))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(path));
|
2013-09-18 11:49:06 -07:00
|
|
|
}
|
2019-08-11 07:52:37 -07:00
|
|
|
|
2013-09-18 11:49:06 -07:00
|
|
|
if (string.IsNullOrEmpty(uniqueName))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(uniqueName));
|
2013-09-18 11:49:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(fileExtension))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(fileExtension));
|
2013-09-18 11:49:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
var filename = uniqueName.GetMD5() + fileExtension;
|
|
|
|
|
|
|
|
return GetCachePath(path, filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the cache path.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
/// <param name="filename">The filename.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
2019-01-13 13:37:13 -07:00
|
|
|
/// <exception cref="ArgumentNullException">
|
2013-09-18 11:49:06 -07:00
|
|
|
/// path
|
|
|
|
/// or
|
2020-01-21 12:26:30 -07:00
|
|
|
/// filename.
|
2013-09-18 11:49:06 -07:00
|
|
|
/// </exception>
|
|
|
|
public string GetCachePath(string path, string filename)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(path))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(path));
|
2013-09-18 11:49:06 -07:00
|
|
|
}
|
2020-01-21 12:26:30 -07:00
|
|
|
|
2013-09-18 11:49:06 -07:00
|
|
|
if (string.IsNullOrEmpty(filename))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(filename));
|
2013-09-18 11:49:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
var prefix = filename.Substring(0, 1);
|
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
return Path.Combine(path, prefix, filename);
|
2013-09-18 11:49:06 -07:00
|
|
|
}
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2017-05-19 10:09:37 -07:00
|
|
|
public void CreateImageCollage(ImageCollageOptions options)
|
2015-04-08 07:38:02 -07:00
|
|
|
{
|
2019-01-12 06:46:17 -07:00
|
|
|
_logger.LogInformation("Creating image collage and saving to {Path}", options.OutputPath);
|
2015-04-23 09:50:54 -07:00
|
|
|
|
2016-12-02 13:10:35 -07:00
|
|
|
_imageEncoder.CreateImageCollage(options);
|
2015-05-11 09:32:15 -07:00
|
|
|
|
2019-01-12 06:46:17 -07:00
|
|
|
_logger.LogInformation("Completed creation of image collage and saved to {Path}", options.OutputPath);
|
2015-04-08 07:38:02 -07:00
|
|
|
}
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2020-01-21 12:26:30 -07:00
|
|
|
public void Dispose()
|
2017-12-01 10:04:32 -07:00
|
|
|
{
|
2020-01-21 12:26:30 -07:00
|
|
|
if (_disposed)
|
2017-12-01 10:04:32 -07:00
|
|
|
{
|
2020-01-21 12:26:30 -07:00
|
|
|
return;
|
2017-12-01 10:04:32 -07:00
|
|
|
}
|
2017-09-05 12:49:02 -07:00
|
|
|
|
2020-01-21 12:26:30 -07:00
|
|
|
if (_imageEncoder is IDisposable disposable)
|
2017-09-05 12:49:02 -07:00
|
|
|
{
|
|
|
|
disposable.Dispose();
|
|
|
|
}
|
2015-03-05 23:42:59 -07:00
|
|
|
|
2020-01-21 12:26:30 -07:00
|
|
|
_disposed = true;
|
2015-03-05 23:42:59 -07:00
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
2018-12-28 08:48:26 -07:00
|
|
|
}
|