// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschränkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System.IO; using System.Threading.Tasks; namespace Squidex.Infrastructure.Assets { public interface IAssetThumbnailGenerator { Task GetImageInfoAsync(Stream source); Task FixOrientationAsync(Stream source, Stream destination); Task CreateThumbnailAsync(Stream source, Stream destination, ResizeOptions options); } }