aspJpeg图片水印有杂点的完美解决方法

来源:asp之家 时间:2011-02-05 10:55:00 

操作实现函数:

代码如下:


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(图片名称)%>

标签:图片水印,杂点
0
投稿

猜你喜欢

  • Golang中接收者方法语法糖的使用方法详解

    2024-05-21 10:26:49
  • Pandas读存JSON数据操作示例详解

    2022-05-24 08:14:03
  • Python实现求一个集合所有子集的示例

    2022-09-01 20:56:51
  • php引用传值实例详解学习

    2023-11-15 06:11:30
  • nodejs 的 session 简单使用

    2024-05-11 09:51:19
  • Python3爬虫发送请求的知识点实例

    2023-04-17 19:16:32
  • 资料:MsSQL常用SQL语句

    2009-02-23 12:54:00
  • 使用JDBC在MySQL数据库中如何快速批量插入数据

    2024-01-18 04:04:13
  • 10个杀手级应用的Python自动化脚本

    2023-10-06 14:01:53
  • python 图像增强算法实现详解

    2023-10-27 10:12:47
  • Python实现识别手写数字大纲

    2022-06-28 05:19:13
  • IIS 301重定向与程序代码实现301重定向的差别

    2022-04-16 07:45:23
  • 基于SQL中SET与SELECT赋值的区别详解

    2024-01-20 02:13:17
  • 如何在vue中使用ant-design-vue组件

    2024-05-02 16:32:47
  • [多图]新:60个国外创意404页面设计

    2008-12-05 12:00:00
  • Python 如何将integer转化为罗马数(3999以内)

    2023-01-19 12:46:51
  • 怎样在SQL Server 2005中用证书加密数据

    2009-01-04 14:11:00
  • 基于python的BP神经网络及异或实现过程解析

    2021-10-29 00:02:01
  • python实现根据给定坐标点生成多边形mask的例子

    2022-03-22 14:40:15
  • Python中的上下文管理器和with语句的使用

    2021-01-28 00:29:51
  • asp之家 网络编程 m.aspxhome.com