IImageTools.cs 245 B

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