0

我有一个带有几个按钮的 Windows 窗体应用程序,当我单击一个按钮时,我希望在窗体屏幕上显示位图图像。所以,基本上我所做的是:

public static Bitmap[] images;

 Bitmap tileSheet = new Bitmap(filename);
            images = new Bitmap[256];


 public static void LoadImages(string filename)
        {
            Bitmap tileSheet = new Bitmap(filename);
            images = new Bitmap[256];

            for (int y = 0; y < 16; y++)
            {
                for (int x = 0; x < 16; x++)
                {
                    images[y * 16 + x] = new Bitmap(32, 32);
                    Graphics g = Graphics.FromImage(images[y * 16 + x]);
                    g.DrawImage(tileSheet, new Rectangle(0, 0, 32, 32), new Rectangle(x * 32, y * 32, 32, 32), GraphicsUnit.Pixel);
                }
            }

        }

该函数告诉我图像的大小应该是多少,并且我已经声明了位图,但是如何从我的计算机上实际加载图像?

4

1 回答 1

1

使用 openFileDialog 让用户选择图像。示例: http: //www.dotnetperls.com/openfiledialog

或者您可以将图像的路径加载到您的文件名。示例:如果您的图像位于:C:\Image\Pic.jpg 则将其添加到变量中。

于 2013-03-14T08:10:17.467 回答