跳到主要內容

發表文章

目前顯示的是 1月, 2016的文章

[ASP.NET] 上傳圖片加浮水印

Model [.CS]         [HttpPost]         public int WebUplaodFile()         {             var upfile = Request.Files["myFile"]; ;             if (upfile != null)             {                 new ImgService().ImgMarkImg(Server.MapPath("~/Image"), upfile);             }                       return 1;         } Service [.CS]         public void ImgMarkImg(string spath, HttpPostedFileBase myfile)         {             //浮水印檔案路徑             string MarkImgPath = spath + "/imgmark.png";             //暫存檔路徑           ...