作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够缩放(-/+)放置在面板下的图像。我希望在该面板中显示图像的缩放版本。我怎样才能在 C# 中实现这一目标?
简单来说,当我在 C# 中以编程方式单击图像时,如何放大和缩小图像?
最佳答案
如果您使用GDI+,那么您当然可以通过使用Matrix转换类来实现这一点,如下所示......
// Get hold of your graphics context...
using(Graphics g = this.CreateGraphics())
{
// When drawing we want to apply a scaling of 2,2 (making it bigger!)
Matrix m = new Matrix();
m.Scale(2, 2, MatrixOrder.Append);
g.Transform = m;
// Draw the actual image using the assigned matrix transform
g.DrawImage(...);
}
当您想要放大或缩小时,您只需更改所使用的缩放值即可。
关于c# - 如何在 C# 中以编程方式放大和缩小图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4550463/
我是一名优秀的程序员,十分优秀!