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
+15
View File
@@ -0,0 +1,15 @@
using ImageMagick;
namespace xStorageService.Models {
public partial class XImageInfo {
public Interlace Interlace { get; }
public int Height { get; }
public MagickFormat Format { get; }
public string FileName { get; }
public Density Density { get; }
public CompressionMethod Compression { get; }
public ColorSpace ColorSpace { get; }
public int Width { get; }
public int Quality { get; }
}
}