当前位置:编程学习 > C#/ASP.NET >>

新手级别显示图片的小问题啊

--------------------编程问答-------------------- Graphics g = pictureBox2.CreateGraphics();
g.FillRectangle(Brushes.White, this.ClientRectangle);//填充窗体背景为白色
Point[] destinationPoints = {
new Point(100, 0), // destination for upper-left point of original
new Point(100, 100),// destination for upper-right point of original
new Point(0, 0)}; // destination for lower-left point of original
g.DrawImage(pictureBox1.Image, destinationPoints); --------------------编程问答--------------------
引用 1 楼 caozhy 的回复:
Graphics g = pictureBox2.CreateGraphics();
g.FillRectangle(Brushes.White, this.ClientRectangle);//填充窗体背景为白色
Point[] destinationPoints = {
new Point(100, 0), // destination for upper-left point of original
new Point(100, 100),// destination for upper-right point of original
new Point(0, 0)}; // destination for lower-left point of original
g.DrawImage(pictureBox1.Image, destinationPoints);
这段代码该怎么用呢? --------------------编程问答-------------------- 跟着你的代码后面 --------------------编程问答--------------------
引用 3 楼 caozhy 的回复:
跟着你的代码后面
不好用啊斑竹,跟在哪段后面呢,我想让旋转后的图片显示在pictureBox2,并且另外保存起来啊。。 --------------------编程问答--------------------
引用 4 楼 chen908987082 的回复:
Quote: 引用 3 楼 caozhy 的回复:

跟着你的代码后面
不好用啊斑竹,跟在哪段后面呢,我想让旋转后的图片显示在pictureBox2,并且另外保存起来啊。。

什么问题。你原来的代码对不对。 --------------------编程问答--------------------
引用 5 楼 caozhy 的回复:
Quote: 引用 4 楼 chen908987082 的回复:

Quote: 引用 3 楼 caozhy 的回复:

跟着你的代码后面
不好用啊斑竹,跟在哪段后面呢,我想让旋转后的图片显示在pictureBox2,并且另外保存起来啊。。

什么问题。你原来的代码对不对。
原来的代码就是这样啊
private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog open易做图 = new OpenFileDialog();
            //文件类型过滤,就是允许打开哪些类型文件,格式跟MFC对话框一样
            open易做图.Filter = "JPG图片|*.jpg|BMP位图|*.bmp";

            //如果按下了打开文件对话框里的确定按钮
            if (open易做图.ShowDialog() == DialogResult.OK)
            {
                textBox1.Text = open易做图.FileName;//获取路径,在文本框上显示路径
                //加载图片到PictureBox控件


                pictureBox1.Image = Image.FromFile(open易做图.FileName);
                pictureBox2.Image = Image.FromFile(open易做图.FileName);

            }
        }

现在操作能打开一个图片然后在两个 pictureBox里显示相同的图片,这段要改什么吗 --------------------编程问答-------------------- 提供两个简单的方法给你参考下
方法1,采用Image类的旋转方法

pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox2.SizeMode = PictureBoxSizeMode.Zoom;

pictureBox1.Image = Image.FromFile(open易做图.FileName);
Bitmap rotateImage = new Bitmap(pictureBox1.Image);
//顺时针旋转90度
rotateImage.RotateFlip(RotateFlipType.Rotate90FlipNone);
pictureBox2.Image = rotateImage;


方法二,采用变换矩阵旋转任意角度旋转图片

pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox2.SizeMode = PictureBoxSizeMode.Zoom;

pictureBox1.Image = Image.FromFile(open易做图.FileName);
Bitmap rotateImage = new Bitmap(pictureBox1.Image);
//顺时针旋转90度
pictureBox2.Image = RotateImage(rotateImage,90);
rotateImage.Dispose();


需要定义一个方法

//任意角度旋转
public Image RotateImage(Image source, float angle)
{
     int maxEdge = Math.Max(source.Width,source.Height);
     Bitmap rotateImage = new Bitmap(maxEdge, maxEdge);
     Graphics g = Graphics.FromImage(rotateImage);
     Matrix m = new Matrix(1, 0, 0, 1, 0 ,0);
     //绕图片中点旋转
     m.RotateAt(angle, new PointF(rotateImage.Width>>1, rotateImage.Height >>1));
     g.Transform = m;
     g.DrawImage(source, 0, 0);
     g.ResetTransform();
     m.Dispose();
     g.Dispose();
     return rotateImage;
}


图片保存

 pictureBox2.Image.Save("保存路径",System.Drawing.Imaging.ImageFormat.Png);
--------------------编程问答-------------------- 请先为窗体添加Paint事件,并将这段代码加进去

Graphics g = e.Graphics;
Bitmap bmp = new Bitmap(@"C:\Users\Administrator\Desktop\1.jpg");//加载图像
g.FillRectangle(Brushes.White, this.ClientRectangle);//填充窗体背景为白色
Point[] destinationPoints = {
new Point(100, 0), // destination for upper-left point of original
new Point(100, 100),// destination for upper-right point of original
new Point(0, 0)}; // destination for lower-left point of original
g.DrawImage(bmp, destinationPoints);
--------------------编程问答-------------------- 不好意思……没细看
引用1楼方法,具体代码如下

bool bRotate = false;
private void Form11_Paint(object sender, PaintEventArgs e)
{
    if (bRotate)
    {
        Graphics g = pictureBox2.CreateGraphics();
        g.FillRectangle(Brushes.White, this.ClientRectangle);//填充窗体背景为白色
        Point[] destinationPoints = {
                new Point(100, 0), // destination for upper-left point of original
                new Point(100, 100),// destination for upper-right point of original
                new Point(0, 0)}; // destination for lower-left point of original
        g.DrawImage(pictureBox1.Image, destinationPoints);
    }
}

private void button1_Click(object sender, EventArgs e)
{
    OpenFileDialog open易做图 = new OpenFileDialog();
    //文件类型过滤,就是允许打开哪些类型文件,格式跟MFC对话框一样
    open易做图.Filter = "JPG图片|*.jpg|BMP位图|*.bmp";

    //如果按下了打开文件对话框里的确定按钮
    if (open易做图.ShowDialog() == DialogResult.OK)
    {
        textBox1.Text = open易做图.FileName;//获取路径,在文本框上显示路径
        //加载图片到PictureBox控件

        pictureBox1.Image = Image.FromFile(open易做图.FileName);
        pictureBox2.Image = Image.FromFile(open易做图.FileName);
    }
}

private void button2_Click(object sender, EventArgs e)
{
    bRotate = true;
    this.Refresh();
}



--------------------编程问答-------------------- 保存:

private void button3_Click(object sender, EventArgs e)
{
  Bitmap newBitmap = (Bitmap)pictureBox2.Image;
  newBitmap.Save(@"C:\Users\Administrator\Desktop\2.jpg");
}

修正一下:

Graphics g = pictureBox2.CreateGraphics();
改为
Graphics g = Graphics.FromImage(pictureBox2.Image);
--------------------编程问答--------------------

/// <summary>
        /// 以逆时针为方向对图像进行旋转
        /// </summary>
        /// <param name="b">位图流</param>
        /// <param name="angle">旋转角度[-360,360](前台给的)</param>
        /// <returns></returns>
        public static Image RotateImg(Image b, int angle)
        {
            angle = angle % 360;
            //弧度转换
            double radian = angle * Math.PI / 180.0;
            double cos = Math.Cos(radian);
            double sin = Math.Sin(radian);
            //原图的宽和高
            int w = b.Width;
            int h = b.Height;
            int W = (int)(Math.Max(Math.Abs(w * cos - h * sin), Math.Abs(w * cos + h * sin)));
            int H = (int)(Math.Max(Math.Abs(w * sin - h * cos), Math.Abs(w * sin + h * cos)));
            //目标位图
            Bitmap dsImage = new Bitmap(W, H);
            System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(dsImage);
            g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Bilinear;
            g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            //计算偏移量
            Point Offset = new Point((W - w) / 2, (H - h) / 2);
            //构造图像显示区域:让图像的中心与窗口的中心点一致
            Rectangle rect = new Rectangle(Offset.X, Offset.Y, w, h);
            Point center = new Point(rect.X + rect.Width / 2, rect.Y + rect.Height / 2);
            g.TranslateTransform(center.X, center.Y);
            g.RotateTransform(360 - angle);
            //恢复图像在水平和垂直方向的平移
            g.TranslateTransform(-center.X, -center.Y);
            g.DrawImage(b, rect);
            //重至绘图的所有变换
            g.ResetTransform();
            g.Save();
            g.Dispose();
            b.Dispose();
            return dsImage;
        }
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,