登录
首页 » C++ » pdflibt源码。只不过是C++版

pdflibt源码。只不过是C++版

于 2022-12-26 发布 文件大小:9.01 MB
0 99
下载积分: 2 下载次数: 1

代码说明:

文件是pdflibnet的源码。可以按需生成64或者32位的,但是本人对C++不熟悉,大家看了之后可以一起互相讨论代码的使用,接口的调用等等

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • New--GP-programming
    一种新的改进的遗传编程,调用的子函数描述的很清晰,涵盖了经典遗传编程的所有步骤,方便大家的学习和参考(A new and improved genetic programming, call the subroutine described in very clear and covers all the steps of classical genetic programming, we facilitate learning and reference)
    2011-05-08 18:08:25下载
    积分:1
  • 基于51单片机的硬币电子秤的实现
    这是基于51单片机的硬币电子秤的实现,内含C语言源码和proteus仿真实现 【源码目录】 硬币电子秤的实现 ├── 1Kg电子秤程序(LCD1602显示)│   ├── HX711.H│   ├── HX711.LST│   ├── HX711.OBJ│   ├── HX711.c│   ├── LCD1602.LST│   ├── LCD1602.OBJ│   ├── LCD1602.c│   ├── LCD1602.h│   ├── MAIN.H│   ├── lcd12864.LST│   ├── lcd12864.OBJ│   ├── lcd12864.c│   ├── lcd12864.h│   ├── main│   ├── main.LST│   ├── main.M51│   ├── main.OBJ│   ├── main.c│   ├── main.hex│   ├── main.lnp│   ├── main.plg│   ├── main.uvgui.Administrator│   ├── main.uvgui.Cai Chao│   ├── main.uvgui_Administrator.bak│   ├── main.uvgui_Cai Chao.bak│   ├── main.uvopt│   ├── main.uvproj│   ├── main_uvopt.bak│   ├── main_uvproj.bak│   ├── uart.LST│   ├── uart.OBJ│   ├── uart.c│   └── uart.h├── HX711模块加载文件│   └── HX711.hex├── Last Loaded 电子秤实现3.fv8.5.pdsbak├── Last Loaded 电子秤实现3.pdsbak├── 电子秤实现3.pdsprj├── 电子秤实现3.pdsprj.DESKTOP-SC10NBS.zxh.workspace└── 电子秤实现3.pdsprj.LAPTOP-KPK9NO8B.浪峰姐姐.workspace2 directories, 39 files【核心代码】void main(){    Uart_Init();    Send_Word("Weight"); Send_Word("Num"); Init_LCD1602(); LCD1602_write_com(0x80); LCD1602_write_word("Weight"); LCD1602_write_com(0x80 7); LCD1602_write_word("Num"); Delay_ms(1000); //ÑÓʱ,µÈ´ý´«¸ÐÆ÷Îȶ¨ Get_Maopi(); //³ÆÃ«Æ¤ÖØÁ¿ while(1) { EA = 0; Get_Weight(); //³ÆÖØ Number = Weight_Shiwu/(coin_weight*10); EA = 1; Scan_Key(); //ÏÔʾµ±Ç°ÖØÁ¿ if( Flag_ERROR == 1) {            Send_Word("ERROR"); LCD1602_write_com(0x80 0x40); LCD1602_write_word("ERROR "); } else {                     Send_ASCII(Weight_Shiwu/1000 0X30);            Send_ASCII(Weight_Shiwu%1000/100 0X30);            Send_ASCII(Weight_Shiwu%100/10 0X30); Send_Word(".");            Send_ASCII(Weight_Shiwu%10 0X30);            Send_Word("g"); LCD1602_write_com(0x80 0x40); LCD1602_write_data(Weight_Shiwu/1000 0X30);            LCD1602_write_data(Weight_Shiwu%1000/100 0X30);            LCD1602_write_data(Weight_Shiwu%100/10 0X30); LCD1602_write_word(".");            LCD1602_write_data(Weight_Shiwu%10 0X30); LCD1602_write_word("g"); Send_ASCII(Number/100 0x30); Send_ASCII(Number%100/10 0x30); Send_ASCII(Number%10 0x30); LCD1602_write_com(0x80 0x40 7); LCD1602_write_data(Number/100 0x30); LCD1602_write_data(Number%100/10 0x30); LCD1602_write_data(Number%10 0x30); Send_ASCII(coin/10 0x30); Send_ASCII(coin%10 0x30); Send_Word("jiao"); LCD1602_write_com(0x80 12); LCD1602_write_data(coin/10 0x30); LCD1602_write_data(coin%10 0x30); LCD1602_write_com(0x80 0x40 12); LCD1602_write_word("jiao"); } }}
    2021-05-06下载
    积分:1
  • Euler-algorithm
    这是一个实现找出欧拉路径的的算法,比较完美的解决了欧拉算法(This is an implementation of the algorithm to find Euler path, the more perfect solution to the Euler algorithm)
    2014-07-13 15:20:12下载
    积分:1
  • Hoist_Monitor
    说明:  接收采集卡数据并分析,可以接受力,振动以及其他损伤数据(my program.Receive and analyze the data from the acquisition card, and can receive force, vibration and other damage data)
    2020-11-25 11:49:32下载
    积分:1
  • WCF大文件下载 例子源码
    WCF下载文档
    2014-11-05下载
    积分:1
  • vclab
    用VC编写的一个实验室图书管理信息系统。大家可以看一下。代码标准。(VC prepared using a laboratory library management information systems. Everyone can look at. Code standards.)
    2009-02-19 14:27:15下载
    积分:1
  • Cprogram
    该程序是通信中认知无线电的频谱预测模型的相关源代码,对通信方面的同学非常有用,带平台(The program is the communication of cognitive radio spectrum prediction model related to the source code, for communications students very useful, with platform )
    2011-12-15 15:44:56下载
    积分:1
  • 液晶兼容0701
    液晶兼容0701(compatible LCD 0701)
    2004-12-17 14:56:04下载
    积分:1
  • TherdTry
    说明:  实现雷达的信息接收的插件脚本,剩下的就是凑字数了,第一次上传东西,不知道有没有人看!(Achieve radar information receiving plug-in script, the rest is the word count, the first time to upload things, do not know if there is anyone to see!)
    2020-06-21 22:00:01下载
    积分:1
  • 2260对串行serial3 Arduino的回声(USB虚拟COM)
    下面的代码将使Arduino回显您发送给它的任何内容。因此,如果您键入3到串行3,Arduino将发回3到串行(usb)。如果您键入字母F,Arduino将发回字母F;
    2022-11-06 03:55:03下载
    积分:1
  • 696518资源总数
  • 106208会员总数
  • 21今日下载