IImageTools.cs 151 B

1234567
  1. namespace InABox.Mobile
  2. {
  3. public interface IImageTools
  4. {
  5. byte[] CreateThumbnail(byte[] image, float maxwidth, float maxheight);
  6. }
  7. }