Files
FileFlowsPlugins/ImageNodes/ImageInfo.cs
2024-05-07 14:05:03 +12:00

11 lines
282 B
C#

namespace FileFlows.ImageNodes;
public class ImageInfo
{
public int Width { get; set; }
public int Height { get; set; }
public string Format { get; set; } = string.Empty;
public bool IsPortrait => Width < Height;
public bool IsLandscape => Height < Width;
}