快速业务通道

ASP.NET(VB) 给图片增加水印文字

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-19

''指定要添加水印文字的图片
Dim img As Image = Image.FromFile(Server.MapPath("~/upload/1.jpg"))
''创建一个位图对象以供绘图操作(不能直接操作 BMP 以外的格式,可能吧)
Dim bitmap As New Bitmap(343, 498)
''要绘制文字的字体
Dim f As New Font("微软雅黑", 16, FontStyle.Underline)
''文字内容
Dim str As String = TextBox5.Text
''创建一个绘制图像的对象
Dim g As Graphics = Graphics.FromImage(bitmap)
''线条的坐标
Dim x1, x2, y1, y2, s1, s2 As Integer
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)
''绘制完成后的保存路径
Dim iimg As String = "~/upload/11.jpg"
Dim img1 As String = Server.MapPath(iimg)
''JPG 图像质量参数
Dim ep As Imaging.EncoderParameters = New Imaging.EncoderParameters
''图像质量值
ep.Param(0) = New Imaging.EncoderParameter(Imaging.Encoder.Quality, CLng(TextBox8.Text))
''以流方式读取图像内容
Dim codecs As Imaging.ImageCodecInfo() = Imaging.ImageCodecInfo.GetImageEncoders
Dim ici As Imaging.ImageCodecInfo
For Each codec As Imaging.ImageCodecInfo In codecs
If codec.MimeType = "image/jpeg" Then
ici = codec
End If
Next
''保存绘制好的图像
bitmap.Save(img1, ici, ep)
Image1.ImageUrl = iimg
''释放对象
g.Dispose()
bitmap.Dispose()
img.Dispose()

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号