namespace SmartCoalApplication.Base.Enum
{
public enum ThumbnailMode
{
///
/// 宽高缩放模式,可能变形
///
UsrHeightWidth,
UsrHeightWidthBound,
///
/// 指定宽度,高按比例
///
UsrWidth,
///
/// 指定宽(过小则不变),高按比例
///
UsrWidthBound,
///
/// 自定高度,宽按比例
///
UsrHeight,
///
/// 指定高(过小则不变),宽按比例
///
UsrHeightBound,
///
/// 剪切
///
Cut,
NONE,
}
}