码迷,mamicode.com
首页 > 其他好文 > 详细

单位换算

时间:2014-05-19 10:19:05      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:class   c   ext   a   width   res   

1.
一英寸=72pt(点)=96px(像素)
2.像素转毫米
1  Image img = Image.FromFile(图片路径);
2  double dpiX = img.HorizontalResolution; //水平分辨率
3  double dpiY = img.VerticalResolution;//垂直分辨率
4  //计算出毫米数
5  double dWidth = (img.Size.Width / dpiX) * 25.4// 像素转换成毫米公式:(宽度像素/水平DPI)*25.4;
6  double dHeight = (img.Size.Height / dpiY) * 25.4;// 像素转换成毫米公式:(宽度像素/水平DPI)*25.4;

单位换算,布布扣,bubuko.com

单位换算

标签:class   c   ext   a   width   res   

原文地址:http://www.cnblogs.com/ChineseMoonGod/p/3731916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!