ImageOrientation.cs 302 B

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