mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 04:04:57 -06:00
11 lines
266 B
C#
11 lines
266 B
C#
namespace FileFlows.ImageNodes;
|
|
|
|
public class ImageInfo
|
|
{
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
public string Format { get; set; }
|
|
public bool IsPortrait => Width < Height;
|
|
public bool IsLandscape => Height < Width;
|
|
}
|