WIP Image imports and file access

This commit is contained in:
TheXamlGuy
2024-06-28 21:03:56 +01:00
parent b5a2bab691
commit f933afc24f
17 changed files with 192 additions and 40 deletions
+11
View File
@@ -0,0 +1,11 @@
using Avalonia.Media.Imaging;
namespace Toolkit.Avalonia;
public interface IImageResizer
{
public Bitmap Resize(Stream stream,
int targetWidth,
int targetHeight,
bool maintainAspectRatio);
}