I thought to share with others.
I have divided the entire code into three parts.
- captcha.cfm - Page where we will display the captcha image.
- Util.cfc - It contains a user defined function "generateRandomText" to generate random captcha text.
- refreshCaptcha.cfm - Page which will handle AJAX call while refreshing captcha image.
Lets see the "captcha.cfm" below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
$("#reloadC").click(function() { | |
$.get( "./refreshCaptcha.cfm", function( data ) { | |
var $img = $(data); | |
$( "#captcha" ).empty(); //Clear Old captcha image | |
$( "#captcha" ).append( $img ); //Add new image into the old position | |
}); | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<h1>CreateCaptcha</h1> | |
<div id="captcha"> | |
<cfset request.utilObj = new Util() /> | |
<cfset request.image = ImageCreateCaptcha( | |
57, | |
260, | |
request.utilObj.generateRandomText(8), | |
"low", | |
"calibri", | |
"30") /> | |
<cfimage action="writetoBrowser" source="#request.image#" /> | |
</div> | |
<input type="button" name="reloadC" id="reloadC" value="Refresh" /> | |
</body> | |
</html> |
Here, in above code I have used "ImageCreateCaptcha" function, which is added in ColdFusion 10 for captcha generation.
Lets see the "Util.cfc"
In this file, I have written a function called "generateRandomText" for generating captcha string. Logic is very simple, you can modify it according to your requirement.
Next, come to "refreshCaptcha.cfm":
We are making AJAX call to this file which again generates random captcha image and sends to browser for display.
So, this is whole story for generating and refreshing captcha image in ColdFusion!!!
Lets see the "Util.cfc"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
component { | |
public function generateRandomText( ntCaptchaLength ) { | |
//Characters we are using to generate captcha | |
var stChars = "0,1,2,3,4,5,6,7,8,9," & | |
"a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z," & | |
"A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z"; | |
var getRandIndex = 1; | |
var returnString = ""; | |
for( var loopCntr = 1; loopCntr <= arguments.ntCaptchaLength; loopCntr ++ ) { | |
//Find a random index number between 1 and length of the charcter list | |
getRandIndex = randRange(1, listLen(stChars)); | |
//Form string by combining the characters | |
returnString &= listGetAt(stChars, getRandIndex); | |
} | |
//Return the result | |
return returnString; | |
} | |
} |
In this file, I have written a function called "generateRandomText" for generating captcha string. Logic is very simple, you can modify it according to your requirement.
Next, come to "refreshCaptcha.cfm":
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- Create Util Object ---> | |
<cfset request.utilObj = new Util() /> | |
<!--- Create random captcha image ---> | |
<cfset request.image = ImageCreateCaptcha( | |
57, | |
260, | |
request.utilObj.generateRandomText(8), | |
"low", | |
"calibri", | |
"30") /> | |
<cfimage action="writetoBrowser" source="#request.image#" /> |
We are making AJAX call to this file which again generates random captcha image and sends to browser for display.
So, this is whole story for generating and refreshing captcha image in ColdFusion!!!