以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  关于给图片加水印  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=132853)

--  作者:有点甜
--  发布时间:2019/4/1 9:45:00
--  

 

tif文件发出来测试。

 

 


--  作者:有点甜
--  发布时间:2019/4/3 12:02:00
--  

那试试改成别的格式

 

Dim img As new bitmap("c:\\333.tif")
Dim g As Graphics = Graphics.FromImage(img)
Dim fnt As New Font("宋体",16)
Dim msg As String = "测试水印"
g.DrawString(msg,fnt,Brushes.Red,20,20)
img.Save("c:\\abc.tif", System.Drawing.Imaging.ImageFormat.jpeg)
g.Dispose()
gc.Collect


--  作者:有点甜
--  发布时间:2019/4/3 15:05:00
--  

 

不可以,你这种没办法的。