You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
335 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using SixLabors.ImageSharp;
namespace Common.Library.ImageHandling
{
public interface IImageHandler
{
public KeyValuePair<string, byte[]> ConvertImageFromFile(string pathToImage);
public Image RestoreImageToFile(byte[] imageData);
}
}