Difficulty Saving Image To MemoryStream(难以将图像保存到 MemoryStream)
问题描述
我在将字节流从图像(在本例中为 jpg)保存到 System.IO.MemoryStream
对象时遇到了一些困难.目标是将System.Drawing.Image
保存到MemoryStream
,然后使用MemoryStream
将图像写入字节数组(我最终需要将它插入到数据库中).但是,在 MemoryStream
关闭后检查变量 data
表明所有字节都为零......我很困惑,不确定我做错了什么...
I'm having some difficulty saving a stream of bytes from an image (in this case, a jpg) to a System.IO.MemoryStream
object. The goal is to save the System.Drawing.Image
to a MemoryStream
, and then use the MemoryStream
to write the image to an array of bytes (I ultimately need to insert it into a database). However, inspecting the variable data
after the MemoryStream
is closed shows that all of the bytes are zero... I'm pretty stumped and not sure where I'm doing wrong...
using (Image image = Image.FromFile(filename))
{
byte[] data;
using (MemoryStream m = new MemoryStream())
{
image.Save(m, image.RawFormat);
data = new byte[m.Length];
m.Write(data, 0, data.Length);
}
// Inspecting data here shows the array to be filled with zeros...
}
任何见解将不胜感激!
推荐答案
要将数据从流加载到数组中,您读取,而不是写入(并且您将需要倒带).但是,在这种情况下,更简单的是,ToArray()
:
To load data from a stream into an array, you read, not write (and you would need to rewind). But, more simply in this case, ToArray()
:
using (MemoryStream m = new MemoryStream())
{
image.Save(m, image.RawFormat);
data = m.ToArray();
}
这篇关于难以将图像保存到 MemoryStream的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:难以将图像保存到 MemoryStream
基础教程推荐
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01