08 2023 档案

摘要:#include "test.h" #include "QPushButton" #include <QSystemTrayIcon> Test::Test(QWidget *parent) : QWidget(parent) { ui.setupUi(this); QPushButton* btn 阅读全文
posted @ 2023-08-28 16:30 十一的杂文录 阅读(249) 评论(0) 推荐(0)
摘要:编译: zbar Windows编译:https://gitee.com/vvvj/zbar-windows 下载下来后,直接使用vs来编译就可以了。 zbar官网:https://zbar.sourceforge.net/download.html zbar Mac和Linux编译: Mac版zb 阅读全文
posted @ 2023-08-24 16:54 十一的杂文录 阅读(942) 评论(0) 推荐(0)
摘要:本文章主要记录Qt在linux电脑上调用so库的三种调用方式 方式一:静态加载so库 方式二:动态加载so库(QLibrary) 方式三:动态加载so库(dlopen) 其他: 封装的so库叫做:libsoowCapture.so,这个so库又依赖了其他的so库,我是把所有的so库放在lib文件夹里 阅读全文
posted @ 2023-08-01 14:46 十一的杂文录 阅读(7619) 评论(0) 推荐(0)
摘要:jpeg的库有两个:一个是官方的 libjpeg 还有一个是 libjpeg-turbo JPEG库(libjpeg-turbo):https://libjpeg-turbo.org/ Libjpeg库:http://www.ijg.org/ *:我用的是官方的 libjpeg,进入官网下载的时候, 阅读全文
posted @ 2023-08-01 14:11 十一的杂文录 阅读(662) 评论(0) 推荐(0)