Table of Contents

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

IReadOnlyList<Group>

Height

The height of the image in pixels.

public required int Height { get; set; }

Property Value

int

Layers

The layers in the OpenRaster file.

public IReadOnlyList<Layer> Layers { get; set; }

Property Value

IReadOnlyList<Layer>

Version

The OpenRaster format version.

public required string Version { get; set; }

Property Value

string

Width

The width of the image in pixels.

public required int Width { get; set; }

Property Value

int

XResolution

The horizontal resolution (DPI) of the image. Defaults to 72 DPI.

public int XResolution { get; set; }

Property Value

int

YResolution

The vertical resolution (DPI) of the image. Defaults to 72 DPI.

public int YResolution { get; set; }

Property Value

int