DIY.Asp
上传用户:qfkgdy
上传日期:2020-06-18
资源大小:1888k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <!--#include file="wml.ini"-->
  2. <%  
  3. width=cint(request("width")) 
  4. height=cint(request("height"))
  5. font_size=cint(request("font_size"))
  6. px=cint(request("px")) 
  7. py=cint(request("py"))
  8. texts=request("texts")
  9. font_shadow=request("font_shadow")
  10. font_background=request("font_background")
  11. font_family=request("font_family")
  12. font_bold=request("font_bold")
  13. font_color=request("font_color")
  14. position=cint(request("position"))
  15. font_size=request("font_size")
  16. path=request("path")
  17. %>
  18. <% 
  19.   
  20. Randomize 
  21.       n=int((50 -100 + 1) * Rnd+ 100 )
  22. Call (new ImageClass).zoom(path,"images/temp/"& n &"." & wap.ftype(path) & "",width,height)
  23. 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)
  24. response.redirect "images/temp/"& n &"." & wap.ftype(path)
  25. %>