Alright figure I should report back since I've resolved my issues and think that it could be helpful for others.....
So after some research I noticed that the server on my laptop (running XAMPP for mac) does have freetype enabled.....so the security image should be working. BUT it was not....so that made me hunt around into some of the files.
I opened the
"CaptchSecurityImages.php" located under the DTRegister component directory. In the file it shows a link to the author of the source code:
http://www.white-hat-web-design.co.uk/articles/php-captcha.php
then I went to their "help page":
http://www.white-hat-web-design.co.uk/articles/php-captcha-help.php
-the first thing it will state is to make sure the Font file is there...which it is.
-the second thing it will state is to add
putenv('GDFONTPATH=' . realpath('.'));
above session_start() in the
"CaptchSecurityImages.php".
(I have no idea what the piece of code is actually doing)
I did this and BAM the security image now works on my local server (XAMPP).
However, now I need it to work on my live host....which told me I had Freetype enabled and working.....well....it was not true.
To check you php configs - create a php file in notepad or text editor. Just insert:
<?php phpinfo(); ?> at the top of the page, save as test.php.
Upload test.php to your root directory and call on it in a web browser. It will bring up all you php configs. In the GD section it should list Freetype enabled and version......mine did not.
I wrote a little nasty support ticket to follow up with my host on this. Told them that Freetype was not compiled to my php configs. They fixed it and now the security image is working fine with modification from earlier.
Cool!!.....I hope this helps someone that might be facing the same issue.