在C#中镜像Picturebox图像

时间:2014-06-16 11:23:07

标签: c# winforms picturebox mirroring

我有这样的问题。我想得到这个结果enter image description here

我的左侧有图像,我想得到右侧所示的结果。我有一个Picturebox我的问题是如何将图像旋转为镜像到右边? 我在这个网站上看到了这个答案:

capturebox.BackgroundImage.RotateFlip(RotateFlipType.Rotate180FlipY);

但这不是正确的解决方案。谢谢你的帮助

1 个答案:

答案 0 :(得分:3)

您需要使用PictureBox外的Image进行操作

 private void button1_Click(object sender, EventArgs e)
    {
        Image img = pictureBox1.Image;
        img.RotateFlip(RotateFlipType.Rotate90FlipNone);
        pictureBox1.Image = img;
    }

您有一个示例HERE