为什么我无法打开位图文件?

发布于 2024-08-10 00:42:12 字数 793 浏览 3 评论 0原文

我创建了一个项目,添加了对 System.Drawing 的引用,并添加了一个 bmp 文件“screenshot003.bmp”。我右键单击了 bmp 文件并显示了它的属性。我将其标记为“内容”。当我运行该应用程序时,它崩溃了 - 可能是因为它无法打开位图。 我该如何修复它?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Drawing.Imaging;

namespace Converter
{
    class Program
    {
        static void Main(string[] args)
        {
            const string imgFileName = "screenShot003.bmp";

            try
            {
                Bitmap image = new Bitmap(imgFileName);
                Console.WriteLine("{0} : {1} x {2}", imgFileName, image.Width, image.Height);
            }
            catch (Exception e)
            {
                Console.WriteLine("{0}", e.Message);
            }
        }
    }
}

I've created a project, added a reference to System.Drawing, and added a bmp file "screenshot003.bmp". I've r-clicked the bmp-file and brought up it's properties. I marked it as "Content". When I run the app, it crashed - probably b/c it couldn't open the bitmap.
How do I fix it?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Drawing.Imaging;

namespace Converter
{
    class Program
    {
        static void Main(string[] args)
        {
            const string imgFileName = "screenShot003.bmp";

            try
            {
                Bitmap image = new Bitmap(imgFileName);
                Console.WriteLine("{0} : {1} x {2}", imgFileName, image.Width, image.Height);
            }
            catch (Exception e)
            {
                Console.WriteLine("{0}", e.Message);
            }
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萝莉病 2024-08-17 00:42:12

位图不会复制到输出目录。在位图集的属性中:

Copy to Output Directory: Copy Always

The bitmap is not copied to the output directory. In the properties of the bitmap set:

Copy to Output Directory: Copy Always
忆依然 2024-08-17 00:42:12

问题是特定于图像的。为 MLefrancois 的建议干杯。

The problem was image-specific. Cheers to MLefrancois for the suggestion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文