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

像素转换mm

时间:2016-11-20 10:54:24      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:pixel   release   graph   index   rom   hwnd   phi   ati   forms   

public static double MillimetersToPixelsWidth(double length) //length是毫米,1厘米=10毫米
{
System.Windows.Forms.Panel p = new System.Windows.Forms.Panel();
System.Drawing.Graphics g = System.Drawing.Graphics.FromHwnd(p.Handle);
TextBox txt = new TextBox();
IntPtr hdc = g.GetHdc();
int width = GetDeviceCaps(hdc, 4); // HORZRES
int pixels = GetDeviceCaps(hdc, 8); // BITSPIXEL
g.ReleaseHdc(hdc);
return (((double)pixels / (double)width) * (double)length);
}
[DllImport("gdi32.dll")]
private static extern int GetDeviceCaps(IntPtr hdc, int Index);

像素转换mm

标签:pixel   release   graph   index   rom   hwnd   phi   ati   forms   

原文地址:http://www.cnblogs.com/siazon/p/6082111.html

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