如何在wp7中检查图像是否正确转换为字节数组

时间:2013-11-13 05:17:05

标签: c# image windows-phone-7 bytearray

目前我将我的图像作为 byte [] 发送到我的服务器,但我的服务器一直在回复“图像未附加”。那么如何检查图像是否正确转换为字节数组? 这是我用于将图像转换为字节数组的代码,

using (MemoryStream ms1 = new MemoryStream())
            {
                WriteableBitmap btmMap = new WriteableBitmap(image);

                // write an image into the stream
                Extensions.SaveJpeg(btmMap, ms1,
                    image.PixelWidth, image.PixelHeight, 0, 100);

                // reset the stream pointer to the beginning
                ms1.Seek(0, 0);
                //read the stream into a byte array
                imageData = new byte[ms1.Length];
                ms1.Read(imageData, 0, imageData.Length);
            }

有人能告诉我它是否有效地工作或如何检查它是否正常工作。 在此先感谢!!

1 个答案:

答案 0 :(得分:1)

  1. 使用FileStream
  2. 将其保存到文件中
  3. 尝试打开该文件。如果它正确打开 - 问题出在服务器端。