在Coldfusion 8 中,CFImage集成了智能的生成验证码功能,使用简单,效果还不错!
程序员文章站
2022-05-06 22:38:11
...
语法:
<cfimage action="captcha" fontSize="字体大小"
width="验证码图片宽" height="验证码图片高"
text="验证码文字" fonts="验证码字体"
difficulty="难度">
说明:
1, Coldfusion将自动添加随机背景,自动倾斜文字
2, difficulty可以有三种值: low/high/medium,不同难度代表验证码图片复杂程度!
示例:
一般难度: <cfimage action="captcha" fontSize="25" width="180" height="50" text="r1adTe" fonts="Arial,Verdana,Courier New">
中等难度:<cfimage action="captcha" fontSize="25" width="180" height="50" text="r1adTe" fonts="Arial,Verdana,Courier New" difficulty="medium">
高等难度:<cfimage action="captcha" fontSize="25" width="180" height="50" text="r1adTe" fonts="Arial,Verdana,Courier New" difficulty="high">