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