12 lines
224 B
C#
12 lines
224 B
C#
using Avalonia.Media.Imaging;
|
|
|
|
namespace Toolkit.Avalonia;
|
|
|
|
public interface IImageResizer
|
|
{
|
|
public Bitmap Resize(Stream stream,
|
|
int targetWidth,
|
|
int targetHeight,
|
|
bool maintainAspectRatio);
|
|
}
|