Hi there,
Can anyone point me in the right direction for getting the white block behind the Captcha letters TRANSPARENT?
I've read a post that showed how to change the color of that block in the chrono_verification.php file, but I need it to be TRANSPARENT because I often have multiple forms on a site and sometimes one form would be on a white background and one on a coloured background on the same site, so I can't just change the main color of the block, I need it to be transparent so it can work on any background on the same site.
The line that controls the color is:
If the rgb values were rgba I would be able to add a transparency value of 0, but it only reads rgb.
Any idea how I can get that block to be transparent?
Can anyone point me in the right direction for getting the white block behind the Captcha letters TRANSPARENT?
I've read a post that showed how to change the color of that block in the chrono_verification.php file, but I need it to be TRANSPARENT because I often have multiple forms on a site and sometimes one form would be on a white background and one on a coloured background on the same site, so I can't just change the main color of the block, I need it to be transparent so it can work on any background on the same site.
The line that controls the color is:
$white = imagecolorallocate($im, 255, 255, 255);
If the rgb values were rgba I would be able to add a transparency value of 0, but it only reads rgb.
Any idea how I can get that block to be transparent?