ThumbnailMode.cs 877 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PaintDotNet.Base.Enum
  7. {
  8. public enum ThumbnailMode
  9. {
  10. /// <summary>
  11. /// 宽高缩放模式,可能变形
  12. /// </summary>
  13. UsrHeightWidth,
  14. UsrHeightWidthBound,
  15. /// <summary>
  16. /// 指定宽度,高按比例
  17. /// </summary>
  18. UsrWidth,
  19. /// <summary>
  20. /// 指定宽(过小则不变),高按比例
  21. /// </summary>
  22. UsrWidthBound,
  23. /// <summary>
  24. /// 自定高度,宽按比例
  25. /// </summary>
  26. UsrHeight,
  27. /// <summary>
  28. /// 指定高(过小则不变),宽按比例
  29. /// </summary>
  30. UsrHeightBound,
  31. /// <summary>
  32. /// 剪切
  33. /// </summary>
  34. Cut,
  35. NONE,
  36. }
  37. }