using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Extensometer.Model.ResultModel
{
public class ImageSizeChangeModel
{
///
/// 初始坐标X
///
public int LocationX { get; set; }
///
/// 初始坐标Y
///
public int LocationY { get; set; }
///
/// 缩放尺寸宽
///
public int currentWidth { get; set; }
///
/// 缩放尺寸高
///
public int currentHeight { get; set; }
///
/// 原始尺寸宽
///
public int originalWidth { get; set; }
///
/// 原始尺寸高
///
public int originalHeight { get; set; }
///
/// 缩放比例
///
public double rate { get; set; }
///
/// 左方留白
///
public int black_left_width { get; set; }
///
/// 上方留白
///
public int black_top_height { get; set; }
///
/// 缩放图中鼠标坐标X
///
public int zoom_x { get; set; }
///
/// 缩放图中鼠标坐标Y
///
public int zoom_y { get; set; }
///
/// 原始图鼠标坐标X
///
public double original_x { get; set; }
///
/// 原始图鼠标坐标Y
///
public double original_y { get; set; }
}
}