最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時(shí)間:2007年04月16日 00:00:00   作者:  
利用.NET 提供的類,如Drawing.Bitmap ,Drawing.Bitmap 等,很容易就可以實(shí)現(xiàn)對(duì)圖片的簡(jiǎn)單處理。包括打水印,放大縮小,等操作。

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("請(qǐng)輸入水印字符!");
                  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("已經(jīng)生成水印圖片,路徑為" + @Server.MapPath("./_log.jpg").Replace("\\", "\\\\"));

              }
              catch (Exception ex)
              {
                  MessageShow("生成圖片錯(cuò)誤!" + 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("已經(jīng)生成圖片,路徑為" + @Server.MapPath("./_Big.jpg").Replace("\\", "\\\\"));

              }
              catch (Exception ex)
              {
                  MessageShow("生成圖片錯(cuò)誤!" + 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);

              // 防止過(guò)度變形
              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("已經(jīng)生成圖片,路徑為" + @Server.MapPath("./_Small.jpg").Replace("\\", "\\\\"));

              }
              catch (Exception ex)
              {
                  MessageShow("生成圖片錯(cuò)誤!" + ex.Message);
                  throw;
              }
              graphics.Dispose();
              bitmap.Dispose();
          }
//傾斜( 右轉(zhuǎn)90度)
          protected void btnIncline_Click(object sender, EventArgs e)
          {
              System.Drawing.Image img = System.Drawing.Image.FromFile(path);
              // 圖像旋轉(zhuǎn),可以利用RotateFlipType的枚舉值,在編程的時(shí)候,IDE會(huì)自動(dòng)顯示每一個(gè)枚舉的意思
              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("已經(jīng)生成圖片,路徑為" + @Server.MapPath("./_Incline.jpg").Replace("\\", "\\\\"));

              }
              catch (Exception ex)
              {
                  MessageShow("生成圖片錯(cuò)誤!" + 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;

              // 防止過(guò)度變形
              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("已經(jīng)生成圖片,路徑為" + @Server.MapPath("./_Stave.jpg").Replace("\\", "\\\\"));

              }
              catch (Exception ex)
              {
                  MessageShow("生成圖片錯(cuò)誤!" + 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;

              // 防止過(guò)度變形
              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("已經(jīng)生成圖片,路徑為" + @Server.MapPath("./_Elongate.jpg").Replace("\\", "\\\\"));

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

相關(guān)文章

最新評(píng)論

尤溪县| 靖西县| 湖州市| 土默特左旗| 横山县| 秦皇岛市| 河曲县| 巴彦淖尔市| 仁布县| 正蓝旗| 房产| 札达县| 钟山县| 卢湾区| 库车县| 独山县| 韶山市| 虹口区| 米脂县| 乐安县| 容城县| 防城港市| 修武县| 长治市| 东方市| 赞皇县| 衡山县| 景谷| 永川市| 舒城县| 水城县| 安平县| 高唐县| 文山县| 湟源县| 罗源县| 邛崃市| 宽城| 三门峡市| 永济市| 汤原县|