ImageOrientation.cs 292 B

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