Initial Commit ...

This commit is contained in:
2024-01-25 04:49:52 +03:30
commit d26a1c49fd
17 changed files with 1678 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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
);
}
}