mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 19:14:22 +00:00
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);
|
|
}
|
|
}
|