一般处理程序上传文件到Web服务器

转载记录

<!-- html -->
 <form id="form1" action="../handle/UploadFiles.ashx" method="post" enctype="multipart/form-data" style="float: right;background-color:red">
  <input type="file" name="f1" value="1231231"/>
  <input type="submit" value="123131222222"/>
ashx:
public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            HttpPostedFile f1 = context.Request.Files["f1"];
            String fileExt = System.IO.Path.GetExtension(f1.FileName);
            System.Drawing.Image image = System.Drawing.Image.FromStream(f1.InputStream);
            int newWidth = 300, newHeight = 200;
            if ((decimal)image.Width / image.Height > (decimal)newWidth / newHeight)
            {
                newHeight = Convert.ToInt32((decimal)image.Height * newWidth / image.Width);
            }
            else if ((decimal)image.Width / image.Height < (decimal)newWidth / newHeight)
            {
                newWidth = Convert.ToInt32((decimal)image.Width * newHeight / image.Height);
            }
            System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(newWidth, newHeight);
            System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bmp);
            g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
            g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
            System.Drawing.Rectangle rectDestination = new System.Drawing.Rectangle(0, 0, newWidth, newHeight);
            g.DrawImage(image, rectDestination, 0, 0, image.Width, image.Height, System.Drawing.GraphicsUnit.Pixel);
            bmp.Save(context.Server.MapPath("~/") + DateTime.Now.ToString("yyyyMMddHHmmss") + fileExt);
            bmp.Dispose();
            image.Dispose();
            context.Response.Write("OK");

        }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值