Orientation¶
Namespace: ThinkGeo.Core.LibTiff
Image orientation.
Possible values for TiffTag.ORIENTATION tag.
public enum Orientation
Inheritance Object → ValueType → Enum → Orientation
Implements IComparable, IFormattable, IConvertible
Fields¶
| Name | Value | Description |
|---|---|---|
| TOPLEFT | 1 | Row 0 top, Column 0 lhs. |
| TOPRIGHT | 2 | Row 0 top, Column 0 rhs. |
| BOTRIGHT | 3 | Row 0 bottom, Column 0 rhs. |
| BOTLEFT | 4 | Row 0 bottom, Column 0 lhs. |
| LEFTTOP | 5 | Row 0 lhs, Column 0 top. |
| RIGHTTOP | 6 | Row 0 rhs, Column 0 top. |
| RIGHTBOT | 7 | Row 0 rhs, Column 0 bottom. |
| LEFTBOT | 8 | Row 0 lhs, Column 0 bottom. |