天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

ASP.NET 2.0,C#----圖像特效處理

利用.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 = "<script>alert(/"{0}/");</script>";
          protected void Page_Load(object sender, EventArgs e)
          {
              if (!Page.IsPostBack)
              {
                  this.txtPicPath.Text = Server.MapPath("/test.jpg");
              }
              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"), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow("已經生成水印圖片,路徑為" + @Server.MapPath("./_log.jpg").Replace("http://", "http:////"));

              }
              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"), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow("已經生成圖片,路徑為" + @Server.MapPath("./_Big.jpg").Replace("http://", "http:////"));

              }
              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"), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow("已經生成圖片,路徑為" + @Server.MapPath("./_Small.jpg").Replace("http://", "http:////"));

              }
              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"), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow("已經生成圖片,路徑為" + @Server.MapPath("./_Incline.jpg").Replace("http://", "http:////"));

              }
              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"), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow("已經生成圖片,路徑為" + @Server.MapPath("./_Stave.jpg").Replace("http://", "http:////"));

              }
              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"), System.Drawing.Imaging.ImageFormat.Jpeg);
                  MessageShow("已經生成圖片,路徑為" + @Server.MapPath("./_Elongate.jpg").Replace("http://", "http:////"));

              }
              catch (Exception ex)
              {
                  MessageShow("生成圖片錯誤!" + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }
      }

AspNet技術ASP.NET 2.0,C#----圖像特效處理,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 97免费人妻在线观看 | 色婷婷亚洲五月 | yellow在线观看免费高清的日本 | 性色AV一区二区三区V视界影院 | 免费看的一级毛片 | 亚洲视频免费看 | 九九精品视频一区二区三区 | 亚洲免费人成 久久 | 亚洲精品色情APP在线下载观看 | 久久无码AV亚洲精品色午夜 | 青青草原免费在线 | 秋霞鲁丝片Av无码 | 色偷拍自怕亚洲在线 | 色AV色婷婷96人妻久久久 | 中文文字幕文字幕亚洲色 | 3d无遮挡h肉动漫在线播放 | 魔乳 堕乳漫画acg产卵 | 一个人的视频在线观看免费观看 | 欧美午夜不卡在线观看 | 久久一本综合 | 一本道无码v亚洲 | 无码丰满人妻熟妇区 | 99久久免费国产精品特黄 | 久久精品国产亚洲AV未满十八 | 成人影片下载网站 | 99精品视频在线观看re | 蜜臀亚洲AV永久无码精品老司机 | 久久久乱码精品亚洲日韩 | 国产成人久视频免费 | 国内精品久久久久久久试看 | 在线播放真实国产乱子伦 | 蜜芽丅v新网站在线观看 | 国产精品久久大陆 | 99久久亚洲精品影院 | 18禁止看的免费污网站 | 久久视频这里只精品99热在线观看 | 日日摸天天添天天添无码蜜臀 | 午夜4k最新福利 | 暖暖 日本 视频 在线观看免费 | 国产亚洲999精品AA片在线爽 | 十七岁日本免费完整版BD |