ImageOrientation.cs 274 B

123456789101112131415
  1. 
  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. }