PHP Library That Generates ASCII Art Text [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionI'm trying to make a captcha system that isn't the same as all the others using ASCII art text. Similar to what can be found here.
Does anyone know of a library whi开发者_JAVA百科ch can generate something similar?
The ASCII generator you linked to use the figlet
program on the commandline, for example with shell_exec. Figlet can be installed on most Unix machines (and is in the package repository for some GNU/Linux distributions, for example in Debian and Ubuntu).
You might have a look at Zend_Captcha - it has an ASCII (through figlet) adapter.
精彩评论