10 lines
193 B
C#
10 lines
193 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IImageReader
|
|
{
|
|
IImageDescriptor Get(Stream stream,
|
|
int width,
|
|
int height,
|
|
bool maintainAspectRatio = false);
|
|
}
|