PWNtcha
http://caca.zoy.org/wiki/PWNtcha
用VC6 编译makefont时遇到的问题。
1.
-------------------Configuration: makefont - Win32 Debug--------------------
Linking...
makefont.obj : error LNK2001: unresolved external symbol _SDL_FreeSurface
makefont.obj : error LNK2001: unresolved external symbol _SDL_SaveBMP_RW
makefont.obj : error LNK2001: unresolved external symbol _SDL_RWFromFile
makefont.obj : error LNK2001: unresolved external symbol _TTF_CloseFont
makefont.obj : error LNK2001: unresolved external symbol _TTF_RenderUTF8_Shaded
makefont.obj : error LNK2001: unresolved external symbol _TTF_SetFontStyle
makefont.obj : error LNK2001: unresolved external symbol _TTF_Quit
makefont.obj : error LNK2001: unresolved external symbol _SDL_GetError
makefont.obj : error LNK2001: unresolved external symbol _TTF_OpenFont
makefont.obj : error LNK2001: unresolved external symbol _TTF_Init
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/makefont.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.
makefont.exe - 12 error(s), 0 warning(s)
参考
http://www.opencv.org.cn/index.php/VC6%E4%B8%8B%E5%AE%89%E8%A3%85%E4%B8%8E%E9%85%8D%E7%BD%AE#.E5.AE.89.E8.A3.85Visual_C.2B.2B_6.0
http://blog.chinaunix.net/u/15586/showart_205879.html
快捷键 alt+F7
1.在VC工具目录下面找到选项,设置其include和lib目录为其你所下载的相关目录
2.在工程的设置中,找到link,在对象/库模块中添加sdl.lib,sdlmain.lib,sdl_ttf.lib
3.在工程的设置中,找到c/c++中,设置Use run_time library为multithread dll
4.还有一点非常重要的是:在建立工程的时候,一般建立基于win32或win控制台项目时,最后设置为空项目,然后自己添加源文件.不要使用mfc等
分享到:
相关推荐
PWNtcha项目是针对这一挑战的解决方案之一,它展示了高度精确的图形验证码识别能力,几乎能实现百分之百的识别率。 验证码(CAPTCHA)全称“Completely Automated Public Turing test to tell Computers and Humans...
很好的验证破解源代码,虽然时间老点,还很有启发的。
PWNtcha是开源的验证码识别工程,使用纯C语言编写。本人经过修改,在VS2012下编译通过,本人亲测能够运行,可以识别验证码。 在使用前,根据你自己工程的存放位置,唯一需要修改的地方(都是路径问题,非常非常简单...
pwntcha 验证码; 用来破解最简单验证码
NULL 博文链接:https://zxmzfbdc.iteye.com/blog/1973185
《PWNtcha for VC6:验证码识别技术的探索与实践》 在信息化时代,验证码作为防止自动程序(如机器人)滥用服务的重要手段,广泛应用于网站登录、注册、评论等场景。然而,随着人工智能和图像处理技术的发展,...
- **案例研究**:以http://libcaca.zoy.org/wiki/PWNtcha为例,该网站提供了一种名为“PWNtcha”的验证码挑战。 - **分析方法**: - **图像采集与预处理**:首先获取验证码图片,对其进行必要的预处理。 - **特征...