write thumbnail to wallet store

This commit is contained in:
TheXamlGuy
2024-06-29 19:39:34 +01:00
parent 4b185513ee
commit a02b9e7825
13 changed files with 68 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Toolkit.Foundation;
public interface IImageReader
{
Task<IImageDescriptor> Get(Stream stream,
int width,
int height,
bool maintainAspectRatio = false);
}