分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

.NET HttpPost 上传文件图片到服务器

发布时间:2023-09-06 02:19责任编辑:白小东关键词:.NET
 public class ImageData ???{ ???????public string imageFilePath { get; set; } ???????public string tempFilePath { get; set; } ???}
 ???????ImageData data = new ImageData(); ???????[HttpPost] ???????public ImageData UploadFile() ???????{ ???????????HttpContext context = HttpContext.Current; ???????????if (context.Request.Files.Count == 0)//判断文件是否存在 ???????????????return null; ???????????String outFilePath = context.Server.MapPath("~/ImageFile/"); ???????????string time = System.DateTime.Now.ToFileTimeUtc().ToString() + "/"; ???????????System.IO.Directory.CreateDirectory(outFilePath + time); ???????????string imageFilePath = outFilePath + time + context.Request.Files[0].FileName; ???????????context.Request.Files[0].SaveAs(imageFilePath); ???????????string thumbnailFilePath = outFilePath + time + "temp_" + context.Request.Files[0].FileName; ???????????getImage(imageFilePath, 60, 2, thumbnailFilePath); ???????????data.imageFilePath = "localhost:12380/ImageFile/" + time + context.Request.Files[0].FileName; ???????????data.tempFilePath = "localhost:12380/ImageFile/" + time + "temp_" + context.Request.Files[0].FileName; ???????????return data; ???????} ???????????????/// <summary> ???????/// 生成缩略图 ???????/// </summary> ???????/// <param name="sourceFile">原始图片文件</param> ???????/// <param name="quality">质量压缩比</param> ???????/// <param name="multiple">收缩倍数</param> ???????/// <param name="outputFile">输出文件名</param> ???????/// <returns>成功返回true,失败则返回false</returns> ???????public static bool getImage(String sourceFile, long quality, int multiple, String outputFile) ???????{ ???????????try ???????????{ ???????????????long imageQuality = quality; ???????????????Bitmap sourceImage = new Bitmap(sourceFile); ???????????????ImageCodecInfo myImageCodecInfo = GetEncoderInfo("image/jpeg"); ???????????????System.Drawing.Imaging.Encoder myEncoder = System.Drawing.Imaging.Encoder.Quality; ???????????????EncoderParameters myEncoderParameters = new EncoderParameters(1); ???????????????EncoderParameter myEncoderParameter = new EncoderParameter(myEncoder, imageQuality); ???????????????myEncoderParameters.Param[0] = myEncoderParameter; ???????????????float xWidth = sourceImage.Width; ???????????????float yWidth = sourceImage.Height; ???????????????Bitmap newImage = new Bitmap((int)(xWidth / multiple), (int)(yWidth / multiple)); ???????????????Graphics g = Graphics.FromImage(newImage); ???????????????g.DrawImage(sourceImage, 0, 0, xWidth / multiple, yWidth / multiple); ???????????????g.Dispose(); ???????????????newImage.Save(outputFile, myImageCodecInfo, myEncoderParameters); ???????????????return true; ???????????} ???????????catch ???????????{ ???????????????return false; ???????????} ???????} ?????????????????????/// <summary> ???????/// 获取图片编码信息 ???????/// </summary> ???????private static ImageCodecInfo GetEncoderInfo(String mimeType) ???????{ ???????????int j; ???????????ImageCodecInfo[] encoders; ???????????encoders = ImageCodecInfo.GetImageEncoders(); ???????????for (j = 0; j < encoders.Length; ++j) ???????????{ ???????????????if (encoders[j].MimeType == mimeType) ???????????????????return encoders[j]; ???????????} ???????????????????????return null; ???????}

.NET HttpPost 上传文件图片到服务器

原文地址:https://www.cnblogs.com/Warmsunshine/p/9853708.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved