DIY.Asp
上传用户:qfkgdy
上传日期:2020-06-18
资源大小:1888k
文件大小:1k
- <!--#include file="wml.ini"-->
- <%
- width=cint(request("width"))
- height=cint(request("height"))
- font_size=cint(request("font_size"))
- px=cint(request("px"))
- py=cint(request("py"))
- texts=request("texts")
- font_shadow=request("font_shadow")
- font_background=request("font_background")
- font_family=request("font_family")
- font_bold=request("font_bold")
- font_color=request("font_color")
- position=cint(request("position"))
- font_size=request("font_size")
- path=request("path")
- %>
- <%
-
- Randomize
- n=int((50 -100 + 1) * Rnd+ 100 )
- Call (new ImageClass).zoom(path,"images/temp/"& n &"." & wap.ftype(path) & "",width,height)
- Call (new ImageClass).water("images/temp/"& n &"." & wap.ftype(path) & "","",texts,position,px,py,font_color,font_family,font_size,font_bold,font_shadow,font_background)
-
-
-
-
-
- response.redirect "images/temp/"& n &"." & wap.ftype(path)
- %>