如何将图像发送到浏览器

时间:2011-08-16 10:52:37

标签: c# asp.net

我正在构建一个简化的Web服务器,我能够处理正确发送HTML页面

但是当我收到图像请求时,我的代码没有给浏览器提供图像

FileStream fstream = new FileStream(tempSplitArray[1],FileMode.Open,FileAccess.Read);
//The tempSplitArray //recieves the request from the browser
byte[] ar = new byte[(long)fstream.Length];
for (int i = 0; i < ar.Length; i++)
{
    ar[i] = (byte)fstream.ReadByte();
}
string byteLine = "Content-Type: image/JPEG\n" + BitConverter.ToString(ar);
sw.WriteLine(byteLine);//This is the network stream writer
sw.Flush();
fstream.Close();

请原谅我的无知,如果有任何问题,或者我的问题不够明确,请告诉我。

1 个答案:

答案 0 :(得分:1)

基本上您希望您的回复看起来像:

HTTP/1.1 200 OK
Content-Type: image/jpeg
Content-Length: *length of image*

Binary Image Data goes here

我假设swStreamWriter,但您需要编写图像的原始字节。

那怎么样:

byte[] ar;
using(FileStream fstream = new FileStream(tempSplitArray[1],FileMode.Open,FileAccess.Read);)
{
    //The tempSplitArray //recieves the request from the browser
    ar = new byte[(long)fstream.Length];

    fstream.read(ar, 0, fstream.Length);
}

sw.WriteLine("Content-Type: image/jpeg");
sw.WriteLine("Content-Length: {0}", ar.Length); //Let's 
sw.WriteLine(); 
sw.BaseStream.Write(ar, 0, ar.Length);

使用像fiddler这样的工具查看浏览器和(真实)网络服务器之间的通信并尝试复制它真的很有帮助。