将图像分割成9个部分 C#

12

可能是重复问题:
将图像分割为9个部分

我已经进行了足够的谷歌搜索,但不幸的是没有找到帮助。这个Code Project 教程也无法提供我实际需要的内容。

我在WinForm中有一个图像和9个PictureBox。

Image img = Image.FromFile("media\\a.png"); // a.png has 312X312 width and height
//          some code help, to get
//          img1, img2, img3, img4, img5, img6, img7, img8, img9
//          having equal width and height
//          then...
pictureBox1.Image = img1;
pictureBox2.Image = img2;
pictureBox3.Image = img3;
pictureBox4.Image = img4;
pictureBox5.Image = img5;
pictureBox6.Image = img6;
pictureBox7.Image = img7;
pictureBox8.Image = img8;
pictureBox9.Image = img9;

这里是一个例子图片:

在此输入图片描述

这是我图片拼图项目的一部分。我已经用 Photoshop 处理好了图片,现在想要动态切割。

提前感谢。

2个回答

19

首先,不要使用img1,img2等命名,而是使用大小为9的数组。然后,可以使用以下代码来轻松完成此操作:

var imgarray = new Image[9];
var img = Image.FromFile("media\\a.png");
for( int i = 0; i < 3; i++){
  for( int j = 0; j < 3; j++){
    var index = i*3+j;
    imgarray[index] = new Bitmap(104,104);
    var graphics = Graphics.FromImage(imgarray[index]);
    graphics.DrawImage( img, new Rectangle(0,0,104,104), new Rectangle(i*104, j*104,104,104), GraphicsUnit.Pixel);
    graphics.Dispose();
  }
}

那么您可以像这样填充您的盒子:

pictureBox1.Image = imgarray[0];
pictureBox2.Image = imgarray[1];
...

8
您可以尝试使用以下代码。它基本上创建了一个图像矩阵(与您的项目所需相同),并在每个 Bitmap 上绘制大图像的适当部分。您可以将此概念用于 pictureBoxes 并将它们放入矩阵中。
Image img = Image.FromFile("media\\a.png"); // a.png has 312X312 width and height
int widthThird = (int)((double)img.Width / 3.0 + 0.5);
int heightThird = (int)((double)img.Height / 3.0 + 0.5);
Bitmap[,] bmps = new Bitmap[3,3];
for (int i = 0; i < 3; i++)
    for (int j = 0; j < 3; j++)
    {
        bmps[i, j] = new Bitmap(widthThird, heightThird);
        Graphics g = Graphics.FromImage(bmps[i, j]);
        g.DrawImage(img, new Rectangle(0, 0, widthThird, heightThird), new Rectangle(j * widthThird, i * heightThird, widthThird, heightThird), GraphicsUnit.Pixel);
        g.Dispose();
    }
pictureBox1.Image = bmps[0, 0];
pictureBox2.Image = bmps[0, 1];
pictureBox3.Image = bmps[0, 2];
pictureBox4.Image = bmps[1, 0];
pictureBox5.Image = bmps[1, 1];
pictureBox6.Image = bmps[1, 2];
pictureBox7.Image = bmps[2, 0];
pictureBox8.Image = bmps[2, 1];
pictureBox9.Image = bmps[2, 2];

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接