10 lines
297 B
C#
10 lines
297 B
C#
namespace Oqtane.Services
|
|
{
|
|
public interface IImageService
|
|
{
|
|
public string[] GetAvailableFormats();
|
|
|
|
public string CreateImage(string filepath, int width, int height, string mode, string position, string background, string rotate, string format, string imagepath);
|
|
}
|
|
}
|