/// web service /// Upload image on server with the .jpg, .ico, .gif, .bmp, .png formats. /// Size should be less than 80kb /// /// /// /// [WebMethod] public string UploadImage(byte[] ImgIn, string FileName) { MemoryStream ms = null; Bitmap b = null; try { ms = new MemoryStream(ImgIn); if (ms.Length <= 80000) // 80kb limit for image to upload { b = (Bitmap)Image.FromStream(ms); if (FileName.ToLower().Contains(".jpeg") || FileName.ToLower().Contains(".jpg")) b.Save("C:\\" + FileName, System.Drawing.Imaging.ImageFormat.Jpeg); if (FileName.ToLower().Contains(".gif")) b.Save("C:\\" + FileName, System.Drawing.Imaging.ImageFormat.Gif); if (FileName.ToLower().Contains(".bmp")) b.Save("C:\\" + FileName, System.Drawing.Imaging.ImageFormat.Bmp); if (FileName.ToLower().Contains(".png")) b.Save("C:\\" + FileName, System.Drawing.Imaging.ImageFormat.Png); if (FileName.ToLower().Conta...