• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

ASP.NET 2.0,C#—-图像特效处理

asp 搞代码 4年前 (2022-01-03) 36次浏览 已收录 0个评论
利用.NET 提供的类,如Drawing.Bitmap ,Drawing.Bitmap 等,很容易就可以实现对图片的简单处理。包括打水印,放大缩小,等操作。

public partial class WebForm4 : System.Web.UI.Page
      {
          // 原始图片路径
          private string path;
          private System.Drawing.Bitmap bitmap;     
          private System.Drawing.Graphics graphics;
          string Message = “”;
          protected void Page_Load(object sender, EventArgs e)
          {
              if (!Page.IsPostBack)
              {
                  this.txtPicPath.Text = Server.MapPath(“/test.jpg-600”);
              }
              path = this.txtPicPath.Text.Trim();
              if (!System.IO.File.Exists(path))
              {
                  MessageShow(“指定的源文件不存在!”);
                  return;
              }
          }
          // 打水印Logo
          protected void btnLogo_Click(object sender, EventArgs e)
          {
              string log = txtLog.Text.Trim();
              if (log.Length <1)
              {
                  MessageShow(“请输入水印字符!”);
                  return;
              }

              bitmap = new Bitmap(path);
              graphics = Graphics.FromImage(bitmap);
              graphics.DrawString(log, new Font(“宋体”, 16), System.Drawing.Brushes.GreenYellow, new PointF(bitmap.Width / 2 – (log.Length) * 5, bitmap.Height / 2));
              try
              {
                  bitmap.Save(Server.MapPath(“./_Log.jpg-600”), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow(“已经生成水印图片,路径为” + @Server.MapPath(“./_log.jpg-600”).Replace(“\\”, “\\\\“));

              }
              catch (Exception ex)
              {
                  MessageShow(“生成图片错误!” + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }
          private void MessageShow(string msg)
          {
              Page.ClientScript.RegisterStartupScript(Page.GetType(), “Message”, string.Format(Message, msg));

          }
          //放大X*X倍
          protected void btnBig_Click(object sender, EventArgs e)
          {
              int i = int.Parse(txtBig.Text.Trim());
              System.Drawing.Image img = System.Drawing.Image.FromFile(path);
              bitmap = new Bitmap(img.Width * i, img.Height * i);
              graphics = Graphics.FromImage(bitmap);
              graphics.DrawImage(img, 0, 0, img.Width * i, img.Height * i);
              try
              {
                  bitmap.Save(Server.MapPath(“./_Big.jpg-600”), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow(“已经生成图片,路径为” + @Server.MapPath(“./_Big.jpg-600”).Replace(“\\”, “\\\\“));

              }
              catch (Exception ex)
              {
                  MessageShow(“生成图片错误!” + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }

          //缩小为原始图像的1/(X*X)
          protected void btnSmall_Click(object sender, EventArgs e)
          {
              float i = float.Parse(txtBig.Text.Trim());
              System.Drawing.Image img = System.Drawing.Image.FromFile(path);
              int w = Convert.ToInt32(img.Width / i);
              int h = Convert.ToInt32(img.Height / i);

              // 防止过度变形
              if (w <1) w = 10;
              if (h <1) h = 0;
              bitmap = new Bitmap(w, h);
              graphics = Graphics.FromImage(bitmap);
              graphics.DrawImage(img, 0, 0, w, h);
              try
              {
                  bitmap.Save(Server.MapPath(“./_Small.jpg-600”), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow(“已经生成图片,路径为” + @Server.MapPath(“./_Small.jpg-600”).Replace(“\\”, “\\\\“));

              }
              catch (Exception ex)
              {
                  MessageShow(“生成图片错误!” + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }
//倾斜( 右转90度)
          protected void btnIncline_Click(object sender, EventArgs e)
          {
              System.Drawing.Image img = System.Drawing.Image.FromFile(path);
              // 图像旋转,可以利用RotateFlipType的枚举值,在编程的时候,IDE会自动显示每一个枚举的意思
              img.RotateFlip(RotateFlipType.Rotate90FlipXY);
              bitmap = new Bitmap(img);
              graphics = Graphics.FromImage(bitmap);
              graphics.DrawImage(img, new Point(0, 0));
              try
              {
                  bitmap.Save(Server.MapPath(“./_Incline.jpg-600”), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow(“已经生成图片,路径为” + @Server.MapPath(“./_Incline.来源gaodaimacom搞#代%码网jpg-600″).Replace(“\\”, “\\\\“));

              }
              catch (Exception ex)
              {
                  MessageShow(“生成图片错误!” + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }

          // 图像压扁
          protected void btnStave_Click(object sender, EventArgs e)
          {
              System.Drawing.Image img = System.Drawing.Image.FromFile(path);
              // 宽度不变
              int w = img.Width;
              //    高度为原始高度的1/2
              int h = img.Height / 2;

              // 防止过度变形
              if (w <1) w = 10;
              if (h <1) h = 0;
              bitmap = new Bitmap(w, h);
              graphics = Graphics.FromImage(bitmap);
              graphics.DrawImage(img, 0, 0, w, h);
              try
              {
                  bitmap.Save(Server.MapPath(“./_Stave.jpg-600”), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow(“已经生成图片,路径为” + @Server.MapPath(“./_Stave.jpg-600”).Replace(“\\”, “\\\\“));

              }
              catch (Exception ex)
              {
                  MessageShow(“生成图片错误!” + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }
          //图像拉宽
          protected void btnElongate_Click(object sender, EventArgs e)
          {
              System.Drawing.Image img = System.Drawing.Image.FromFile(path);
              // 放大宽度
              int w = img.Width / 2;
              // 高度不变
              int h = img.Height;

              // 防止过度变形
              if (w <1) w = 10;
              if (h <1) h = 0;
              bitmap = new Bitmap(w, h);
              graphics = Graphics.FromImage(bitmap);
              graphics.DrawImage(img, 0, 0, w, h);
              try
              {
                  bitmap.Save(Server.MapPath(“./_Elongate.jpg-600”), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow(“已经生成图片,路径为” + @Server.MapPath(“./_Elongate.jpg-600”).Replace(“\\”, “\\\\“));

              }
              catch (Exception ex)
              {
                  MessageShow(“生成图片错误!” + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }
      }

以上就是ASP.NET 2.0,C#—-图像特效处理的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:ASP.NET 2.0,C#—-图像特效处理

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址