Merge pull request #4723 from mdmontesinos/dev
Image Resizing and Format via QueryString in Files Page (enhances #4692)
This commit is contained in:
15
Oqtane.Shared/Interfaces/IImageService.cs
Normal file
15
Oqtane.Shared/Interfaces/IImageService.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user