上传图片

Posted whl4835349

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片相关的知识,希望对你有一定的参考价值。

   

  
  public string UploadImage(HttpPostedFileBase imgFile)
 {
      bool b = upload(imgFile.InputStream,filepath,filename)
  }
  public bool upload(Steam imageStream,string filepath,string filename)
{
    stream fs= imageStream;
     BinaryReader r = new BinaryReader(fs);  
    byte[]   postArray= r.ReadBytes((int)fs.Length);
}

 

以上是关于上传图片的主要内容,如果未能解决你的问题,请参考以下文章