Enum TiffOrientations

Enum TiffOrientations

Namespace: Aspose.Imaging.FileFormats.Tiff.Enums
Assembly: Aspose.Imaging.dll (25.7.0)

Image orientation.
Possible values for ORIENTATION tag.

public enum TiffOrientations
    {
        TopLeft = 1,
        TopRight = 3,
        BottomLeft = 6,
        BottomRight = 8,
        LeftTop = 2,
        RightTop = 4,
        LeftBottom = 7,
        RightBottom = 5
    }

Fields

BottomLeft = 4

Row 0 bottom, Column 0 lhs.

BottomRight = 3

Row 0 bottom, Column 0 rhs.

LeftBottom = 8

Row 0 lhs, Column 0 bottom.

LeftTop = 5

Row 0 lhs, Column 0 top.

RightBottom = 7

Row 0 rhs, Column 0 bottom.

RightTop = 6

Row 0 rhs, Column 0 top.

TopLeft = 1

Row 0 top, Column 0 lhs.

TopRight = 2

Row 0 top, Column 0 rhs.

 English