Mjpeg

IE 不支援 唉~~


http://developer.51cto.com/art/201308/407795_all.htm

//流頭部
 public void WriteHeader()
        {

           return 
                    "HTTP/1.1 200 OK\r\n" +
                    "Content-Type: multipart/x-mixed-replace; boundary=" +
                    this.Boundary +
                    "\r\n";
       }

  1.  /// 图片头部  
  2.     /// </summary>  
  3.     public string PayloadHeader  
  4.     {  
  5.       get 
  6.       {  
  7.         return "\r\n" +  
  8.                this.Boundary +  
  9.                "\r\n" +  
  10.                "Content-Type: image/jpeg" +  
  11.                "\r\n" +  
  12.                "Content-Length: " + _contentLengthString +  
  13.                "\r\n\r\n";  
  14.       }  
  15.     } 

留言

熱門文章