ImageOrientation.cs 333 B

1234567891011121314151617
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. namespace MediaBrowser.Model.Drawing
  4. {
  5. public enum ImageOrientation
  6. {
  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. }