resource.vpress.vn

This commit is contained in:
thienqb123456
2024-09-03 09:23:03 +07:00
commit 6ae596376f
133 changed files with 7729 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace ngaoda.Services
{
public interface IImageProcessingService
{
(byte[] fileContent, string contentType) ProcessImage(string path, int w = 680, int h = 0, int q = 100, int dpr = 1, string fit = "fill");
}
}