18 lines
285 B
C#
18 lines
285 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Drawing {
|
|
|
|
/// <summary>
|
|
/// 缩略图缩小方式(自动、根据宽度、根据高度、根据宽高、裁切)
|
|
/// </summary>
|
|
public enum SaveThumbnailMode {
|
|
Auto,
|
|
ByWidth,
|
|
ByHeight,
|
|
ByWidthHeight,
|
|
Cut
|
|
}
|
|
|
|
}
|
|
|