上传图片

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

 

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

使用 AFNetworking、ios 上传图片

Android - 应用程序启动时片段 onCreate 崩溃

手机safari图片上传竖变横处理

java Ftp上传创建多层文件的代码片段

根据图片的url地址下载图片到本地保存代码片段

如何将CKeditor编辑器的上传和thinkphp结合