我估计也许换个控件就可以了吧?
不过又不知道哪个控件可以用下
这个问题应该是这样吧(放大两倍):
Bitmap MyBitmap = new Bitmap( this.pictureBox1.Image.Width*2,this.pictureBox1.Image.Height*2);
Graphics g = Graphics.FromImage(MyBitmap);
g.ScaleTransform(2, 2, System.Drawing.Drawing2D.MatrixOrder.Append);
g.DrawImage(this.pictureBox1.Image,0, 0);
g.Save();
this.pictureBox1.Image = MyBitmap;
this.pictureBox1.Refresh();
但是现在我想用一个button控件来还原该图片(该图片还可能被旋转过了现在还原为原始大小)
却怎么也搞不定
请大家给点建议吧!