14 lines
372 B
C#
14 lines
372 B
C#
using xStorageService.Models;
|
|
|
|
namespace xStorageService.Interfaces {
|
|
public partial interface IXThumbnailProvider {
|
|
void SetTempFolder (string folder);
|
|
XImageInfo GetImageInfo (string filePath);
|
|
void ResizeImage (
|
|
string filePath,
|
|
string resizedFilePath,
|
|
int size,
|
|
int quality
|
|
);
|
|
}
|
|
} |