jellyfin/MediaBrowser.Controller/Drawing/ImageHelper.cs
2021-04-17 11:37:55 +01:00

19 lines
666 B
C#

#pragma warning disable CS1591
#nullable enable
using MediaBrowser.Model.Drawing;
namespace MediaBrowser.Controller.Drawing
{
public static class ImageHelper
{
public static ImageDimensions GetNewImageSize(ImageProcessingOptions options, ImageDimensions originalImageSize)
{
// Determine the output size based on incoming parameters
var newSize = DrawingUtils.Resize(originalImageSize, options.Width ?? 0, options.Height ?? 0, options.MaxWidth ?? 0, options.MaxHeight ?? 0);
newSize = DrawingUtils.ResizeFill(newSize, options.FillWidth, options.FillHeight);
return newSize;
}
}
}