用ASP.NET实现简单的文字水印
代码如下:
<%@ import namespace="system" %>
<%@ import namespace="system.io" %>
<%@ import namespace="system.drawing" %>
<%@ page language="vb" %>
<script runat="server">
dim filepath as string = server.mappath("fenger.jpg")
sub page_load(sender as object, e as eventargs)
dim image as system.drawing.image = system.drawing.image.fromfile( filepath )
dim g as graphics = graphics.fromimage(image)
g.drawimage(image, 0, 0, image.width, image.height)
dim f as font = new font("华文行楷", 30)
dim b as brush = new solidbrush(color.green)
dim s as string = request.querystring("str")
g.drawstring(s, f, b, 20, 290)
image.save(response.outputstream, system.drawing.imaging.imageformat.jpeg)
g.dispose()
image.dispose()
end sub
</script>
只要把这个代码存成一个aspx文件,比如test.aspx。然后放到wwwroot里面(假设你的虚拟目录是默认的)。再做一个test.jpg的图片,就可以在(20, 290)这个位置打印出“华文行楷”这种字体的文字了。调用方法很简单:
http://localhost/test.aspx?str=dicky's blog!
对于打印的位置和字体还有图片文件都是可以自己设定的。另外,如果出现了以英文作为参数就可以正常显示,而对于中文就无法显示的情况,是因为asp.net的web.config设置不正确造成了,需要进行如下设置:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<globalization requestencoding="gb2312" responseencoding="gb2312" culture="zh-cn" fileencoding="gb2312"/>
</system.web>
</configuration>
这样,就可以正常显示了。
下一篇: php实现微信公众号无限群发