0

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

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);
            }

谁能告诉我它是否正常工作或如何检查它是否正常工作。提前致谢!!

4

1 回答 1

1
  1. 将其保存到文件使用FileStream
  2. 尝试打开文件。如果它正确打开 - 问题出在服务器端。
于 2013-11-13T05:37:24.420 回答