ASP.NET(VB)应用之图片增加水印文字浅析

开发 后端
ASP.NET(VB)应用之图片增加水印文字向你介绍了使用ASP.NET(VB)为图片增加水印文字的具体事例解析,使你更加直观的了解这一应用。

ASP.NET(VB) 给图片增加水印文字:指定要添加水印文字的图片

    DimimgAsImage=Image.FromFile(Server.MapPath("~/upload/1.jpg"))  
    '创建一个位图对象以供绘图操作(不能直接操作BMP以外的格式,可能吧)  
    DimbitmapAsNewBitmap(343,498)  
    '要绘制文字的字体  
    DimfAsNewFont("微软雅黑",16,FontStyle.Underline)  
    '文字内容  
    DimstrAsString=TextBox5.Text  
    '创建一个绘制图像的对象  
    DimgAsGraphics=Graphics.FromImage(bitmap)  
    '线条的坐标  
    Dimx1,x2,y1,y2,s1,s2AsInteger  
    x1=CType(TextBox1.Text,Integer)  
    x2=CType(TextBox2.Text,Integer)  
    y1=CType(TextBox3.Text,Integer)  
    y2=CType(TextBox4.Text,Integer)  
    '文字的坐标  
    s1=CType(TextBox6.Text,Integer)  
    s2=CType(TextBox7.Text,Integer)  
    '限定绘图的范围  
    g.DrawImage(img,0,0,343,498)  
    '绘制文字  
    g.DrawString(str,f,Brushes.Red,s1,s2)  
    '绘制线条  
    g.DrawLine(Pens.White,x1,x2,y1,y2)  
    '绘制完成后的保存路径  
    DimiimgAsString="~/upload/11.jpg" 
    Dimimg1AsString=Server.MapPath(iimg)  
    'JPG图像质量参数  
    DimepAsImaging.EncoderParameters=NewImaging.EncoderParameters  
    '图像质量值  
    ep.Param(0)=NewImaging.EncoderParameter(Imaging.Encoder.Quality,CLng(TextBox8.Text))  
    '以流方式读取图像内容  
    DimcodecsAsImaging.ImageCodecInfo()=Imaging.ImageCodecInfo.GetImageEncoders  
    DimiciAsImaging.ImageCodecInfo  
    ForEachcodecAsImaging.ImageCodecInfoIncodecs  
      Ifcodec.MimeType="image/jpeg"Then 
        ici=codec  
      EndIf  
    Next 
    '保存绘制好的图像  
    bitmap.Save(img1,ici,ep)  
    Image1.ImageUrl=iimg  
    '释放对象  
    g.Dispose()  
    bitmap.Dispose()  
    img.Dispose()  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.

ASP.NET(VB)应用之图片增加水印文字的相关信息就向你介绍到这里,希望对你有所帮助。

【编辑推荐】

  1. ASP.NET注释使用技巧浅析
  2. ASP.NET trace的使用浅析
  3. ASP.NET trace在页面执行中的应用浅析
  4. ASP.NET Request对象的属性介绍
  5. ASP.NET Request对象使用实例浅析
责任编辑:仲衡 来源: cnbolgs
相关推荐

2009-08-12 17:19:51

ASP.NET图片加水

2009-08-05 15:01:04

ASP.NET应用Vi

2009-07-20 16:08:04

ASP.NET应用程序

2009-07-30 15:39:55

ASP.NET 2.0

2009-07-24 13:41:15

ASP.NET AJA

2009-08-05 18:36:12

ASP.NET Che

2009-08-05 15:50:13

ASP.NET优点

2009-07-31 12:43:59

ASP.NET MVC

2009-08-10 13:32:15

ASP.NET TimASP.NET组件设计

2009-07-31 09:32:04

ASP.NET缓存概念ASP.NET缓存应用

2009-08-10 14:55:43

ASP.NET htt

2009-08-05 13:16:43

ASP.NET URL

2009-08-10 18:19:37

ASP.NET安装环境

2009-08-10 18:43:05

ASP.NET安装步骤

2009-07-24 18:02:46

ASP.NET编程

2009-07-27 17:25:53

ASP.NET验证控件

2009-07-29 09:34:54

IsPostBack属ASP.NET

2009-08-03 10:07:20

ASP.NET Ses

2009-08-04 17:16:16

ASP.NET代码优化

2009-08-05 16:50:09

ASP.NET For
点赞
收藏

51CTO技术栈公众号