-
支持抽取PDF文档中的图像
基于开源项目xpdf做的修改,能够提取PDF文档中的图片,所有图片先解析到一个缓冲区,缓冲区以链表形式维护,顺序扫描PDF文档,当发现一张图片内容的时候,就在链表末尾追加一个节点,并将解析出来的图片内容添加到链表尾节点中。同时还可以可识别文档中的图片类型。
- 2022-04-23 16:06:50下载
- 积分:1
-
Draw line and circle in C,Very simple code
Draw line and circle in C,Very simple code
- 2023-09-01 11:10:03下载
- 积分:1
-
现在即时翻译软件很多,很多都有一个功能就是鼠标取词,这大大方便了用户。但是在编程的时候没有一个专门的函数来取词,本程序详细介绍了怎么实现这个功能。...
现在即时翻译软件很多,很多都有一个功能就是鼠标取词,这大大方便了用户。但是在编程的时候没有一个专门的函数来取词,本程序详细介绍了怎么实现这个功能。-There are many instant translation software at current.The programme will introduce how to realize the function.
- 2022-02-15 05:12:56下载
- 积分:1
-
LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长...
LCS问题就是求两个字符串最长公共子串的问题。解法就是用一个矩阵来记录两个字符串中所有位置的两个字符之间的匹配情况,若是匹配则为1,否则为0。然后求出对角线最长的1序列,其对应的位置就是最长匹配子串的位置。 最长递增子序列LCS的实现C源码!-LCS problem for two strings is the longest common sub-string problem. Solution is to use a matrix to record the location of two strings of all the matches between the two characters in the situation, if the match is one, otherwise to 0. And one of the longest diagonal obtained sequence, the location of its corresponding sub-string match is the longest position. The longest increasing sub-sequence source C implementation of the LCS!
- 2022-08-19 18:20:36下载
- 积分:1
-
Minesweeping game, using Visual c++ Debugging with C to prepare
扫雷游戏,用Visual c++调试,用C++编写-Minesweeping game, using Visual c++ Debugging with C to prepare
- 2022-01-27 19:33:28下载
- 积分:1
-
windows mobile 6下获取手机短信息至列表显示,C#
windows mobile 6下获取手机短信息至列表显示,C#-obtained under windows mobile 6 mobile phone short message to the list of shows, C#
- 2022-03-20 12:10:27下载
- 积分:1
-
一个拓扑排序的算法
一个拓扑排序的算法-a topological sorting algorithm
- 2022-02-12 19:12:41下载
- 积分:1
-
监控进程并重启
基本原理为:1,在后台启动监控程序。2,监控程序一直对设定的进程窗口名称的进程进行监控。3,如果发现此进程窗口没有了或消失了,将自动在后台延时几十秒或设定时间后,然后启动此进程。
关键代码如下:
hWndMain=NULL;
hWndMain=::FindWindow(NULL,"录音系统平台");
if(hWndMain==NULL)
{
hWndMain=::FindWindow(NULL,"电话录音");
if(hWndMain==NULL)
{
/* memset(Buf,0,200);
sprintf(Buf, "%04d%02d%02d%02d%02d%02d: find no digitexe
",st.wYear,st.wMonth,st.wDay,st.wHour,st.wMinute,st.wSecond);
if( (log1 = fopen( "selfauto.log", "a+" )) != NULL ) //打开文件流
{
fprintf(log1,"%s
",Buf);
fclose(log1);
}*/
- 2022-11-05 05:20:02下载
- 积分:1
-
模拟ATM
这是一个基本的ATM模拟和它
- 2023-04-05 03:20:03下载
- 积分:1
-
VC上位机 串口数据统计记录到Excel
VC上位机 串口数据统计记录到Excel
- 2022-08-20 07:43:36下载
- 积分:1