将图像转换为字节[]

发布于 2024-12-06 16:13:57 字数 55 浏览 0 评论 0原文

我的 MVC3 应用程序中的某个文件夹中有一个图像。在我的控制器中,如何将该图像转换为字节数组。

I have an image that sits inside some folder in my MVC3 application. In my controller, how do I convert that image into a Byte array.

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

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

发布评论

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

评论(1

深空失忆 2024-12-13 16:13:57
byte[] buffer = File.ReadAllBytes("foo.png");

因为它位于控制器内部,所以您可能想要计算相对于根的路径:

string imageFile = Path.Combine(Server.MapPath("~/App_Data"), "foo.png");
byte[] buffer = File.ReadAllBytes(imageFile);
byte[] buffer = File.ReadAllBytes("foo.png");

and because that's inside a controller you probably want to calculate the path relative to the root:

string imageFile = Path.Combine(Server.MapPath("~/App_Data"), "foo.png");
byte[] buffer = File.ReadAllBytes(imageFile);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文