ImageOrientation.cs 270 B

1234567891011121314
  1. namespace MediaBrowser.Model.Drawing
  2. {
  3. public enum ImageOrientation
  4. {
  5. TopLeft = 1,
  6. TopRight = 2,
  7. BottomRight = 3,
  8. BottomLeft = 4,
  9. LeftTop = 5,
  10. RightTop = 6,
  11. RightBottom = 7,
  12. LeftBottom = 8,
  13. }
  14. }