Class OpenRasterFile
- Namespace
- Olve.OpenRaster
- Assembly
- Olve.OpenRaster.dll
Represents the content of an OpenRaster (.ora) file. See OpenRaster Stack File.
public class OpenRasterFile
- Inheritance
-
OpenRasterFile
- Inherited Members
Properties
Groups
The groups in the OpenRaster file.
public IReadOnlyList<Group> Groups { get; set; }
Property Value
Height
The height of the image in pixels.
public required int Height { get; set; }
Property Value
Layers
The layers in the OpenRaster file.
public IReadOnlyList<Layer> Layers { get; set; }
Property Value
Version
The OpenRaster format version.
public required string Version { get; set; }
Property Value
Width
The width of the image in pixels.
public required int Width { get; set; }
Property Value
XResolution
The horizontal resolution (DPI) of the image. Defaults to 72 DPI.
public int XResolution { get; set; }
Property Value
YResolution
The vertical resolution (DPI) of the image. Defaults to 72 DPI.
public int YResolution { get; set; }