15 lines
473 B
C#
15 lines
473 B
C#
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; }
|
|
}
|
|
} |