Files
Toolkit2/Toolkit.Foundation/IImageProvider.cs
T
2024-06-28 21:03:56 +01:00

10 lines
203 B
C#

namespace Toolkit.Foundation;
public interface IImageProvider
{
Task<IImageDescriptor> Get(string filePath,
int width,
int height,
bool maintainAspectRatio = false);
}