10 lines
276 B
C#

namespace View_by_Distance.Shared.Models.Methods;
public interface IThumbHasher
{
byte[] Encode(string path);
(byte[], MemoryStream) EncodeAndSave(string path, int width, int height);
MemoryStream GetMemoryStream(byte[] thumbHashBytes, int width, int height);
}