程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> aspJpeg圖片水印有雜點的完美解決方法

aspJpeg圖片水印有雜點的完美解決方法

編輯:關於ASP編程
操作實現函數:
復制代碼 代碼如下:
Function AddWater(n)
Set Photo = Server.CreateObject("Persits.Jpeg")
PhotoPath = Server.MapPath(n)
Photo.Open PhotoPath
Photo.Interpolation=1
Photo.Quality=100
iWidth=Photo.OriginalWidth
iHeight=Photo.OriginalHeight
iiwidth=214 '水印圖片的寬度
iiheight=51 '水印圖片的高度
Photo.Canvas.DrawPNG iWidth-iiWidth-5, iHeight-iiHeight-5,Server.MapPath("Water.png") 'Water.png即為水印圖片
Photo.save Server.mappath(n) '輸出圖片
Set Photo = Nothing
End Function

調用方法:
<% Call AddWater(圖片名稱)%>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved