可能重复:
图像分成 9 块
尽管我用谷歌搜索了足够多的东西,但不幸的是未能找到帮助。这个代码项目教程也没有为我提供我真正需要的东西。
我在 WinForm 中有一个 Image 和 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 图片,现在想动态剪切。
提前致谢。