尝试从内存流重新创建图像时,我收到ArgumentException(参数无效)。我已经将它提炼到这个示例,我加载图像,复制到流,复制流并尝试重新创建System.Drawing.Image对象。
im1可以保存回来,在MemoryStream复制后,流的长度与原始流的长度相同。
我假设ArgumentException意味着System.Drawing.Image不认为我的流是图像。
为什么副本会改变我的字节?
// open image
var im1 = System.Drawing.Image.FromFile(@"original.JPG");
// save into a stream
MemoryStream stream = new MemoryStream();
im1.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
// try saving - succeeds
im1.Save(@"im1.JPG");
// check length
Console.WriteLine(stream.Length);
// copy stream to new stream - this code seems to screw up my image bytes
byte[] allbytes = new byte[stream.Length];
using (var reader = new System.IO.BinaryReader(stream))
{
reader.Read(allbytes, 0, allbytes.Length);
}
MemoryStream copystream = new MemoryStream(allbytes);
// check length - matches im1.Length
Console.WriteLine(copystream.Length);
// reset position in case this is an issue (doesnt seem to make a difference)
copystream.Position = 0;
// recreate image - why does this fail with "Parameter is not valid"?
var im2 = System.Drawing.Image.FromStream(copystream);
// save out im2 - doesnt get to here
im2.Save(@"im2.JPG");
答案 0 :(得分:2)
在阅读stream
之前,您需要将其位置回归到零。您现在正在为副本执行此操作,但也需要为原始文件执行此操作。
此外,您根本不需要复制到新流。
我通常会通过逐步执行程序并查看运行时状态来解决此类问题,以确定它是否符合我的期望。