gpt4 book ai didi

c# - 厘米到像素

转载 作者:太空狗 更新时间:2023-10-29 18:02:07 27 4
gpt4 key购买 nike

如何在 C# 中将厘米转换为像素?

最佳答案

int CentimeterToPixel(double Centimeter)
{
double pixel = -1;
using (Graphics g = this.CreateGraphics())
{
pixel = Centimeter * g.DpiY / 2.54d;
}
return (int)pixel;
}

关于c# - 厘米到像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4767617/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com