ChinaUnix.net
相关文章推荐:

QT怎么加载视频

rt 解码出来的数据是YUV的。用QPainter?一幅一幅的往上面画?

by dxzk7 - GUI编程 - 2008-10-07 18:04:37 阅读(8585) 回复(2)

相关讨论

[code]#ifdef Q_OS_WIN typedef long ( *SHELLRUN)(long,const char*, const char*, const char* ,const char* , int ); SHELLRUN test; QString str = "shell32.dll"; QLibrary lib(str); test = (SHELLRUN)lib.resolve("ShellExecuteA"); const char * te = "open"; const char * te1 = ".\\help\\Guide.hlp"; test(NULL,te,te1,NULL,NULL,5); lib.unload(); #endif[/code]

by boy11-2 - GUI编程 - 2011-02-18 01:30:37 阅读(3316) 回复(0)

我们论坛里怎么没有qt版块?是没人用qt,还是qt在实际开发中不好用呢? 希望坛主能增加qt版块。

by myqthj - 站务交流 - 2011-03-08 21:41:59 阅读(1838) 回复(4)

嵌入式图形界面开发—Phonon

 

by luozhiyong131 - 移动操作系统 - 2011-12-23 02:09:33 阅读(592) 回复(0)

by 小超hide - 移动操作系统 - 2011-12-22 08:51:03 阅读(917) 回复(0)

[code]#include #include #include #include #include int main(int argc, char *argv[]) { QApplication app(argc, argv); Phonon::MediaObject *media = new Phonon::MediaObject(); Phonon::VideoWidget * vw=new Phonon::VideoWidget();//视频 Phonon::AudioOutput *audioOutput = new Phonon::AudioOutput();//声...

by starzhestarzhe - GUI编程 - 2010-11-24 20:25:21 阅读(4182) 回复(0)

由主窗口的两个按钮可以分别调用观看两个摄像头的视频内容。加主线程共3个线程。两个视频显示窗口用qtimer来控制。视频图片显示使用lable控件。此程序主要讲解本地图片多线程传输,暂时不用多次刷新显示连续帧。待USB冲突解决后方可实现。 Client端: 用qt设计界面。其中包括main.cpp, mainWindow_main.cpp, video_thread1.cpp, video_thread2.cpp, video_client.cpp及其对应的*.h文件。 1.mainWindow_main.cpp 此...

by starzhestarzhe - GUI编程 - 2010-11-21 17:18:06 阅读(4775) 回复(0)

跪求qt视频教程下载地址,谢谢

by warmheartli - GUI编程 - 2011-05-13 17:08:12 阅读(10894) 回复(3)

[code]#include qt4.h> //A PDF document can then be loaded as follows: QString filename; Poppler::Document* document = Poppler::Document::load(filename); if (!document || document->isLocked()) { // ... error message .... delete document; return; } // Paranoid safety check if (document == 0) { // ... error message ... return; } // Access page of the PDF file Poppler::Page* ...

by net-boy - GUI编程 - 2011-02-12 11:41:48 阅读(2813) 回复(0)

我用qt做了个界面,其中一个函数想通过动态连接库的形式加载,自己的动态连接库我已经编译好了,不知道主程序应该怎么编译呢?怎样修改Makefile呢?我用的是qt3 万分感谢!

by 半袋橘子 - GUI编程 - 2007-12-28 10:36:31 阅读(5844) 回复(2)

WIN32下装了qt-creator-win-opensource,qt-eclipse-integration,mingw 环境变量也设了,怎么还报 c:/mingw/bin/../lib/gcc/mingw32/4.6.2/../../../../mingw32/bin/ld.exe: cannot find -lqtmaind c:/mingw/bin/../lib/gcc/mingw32/4.6.2/../../../../mingw32/bin/ld.exe: cannot find -lqtGuid4 c:/mingw/bin/../lib/gcc/mingw32/4.6.2/../../../../mingw32/bin/ld.exe: cannot find -lqtCored4

by lgperson - C/C++ - 2013-01-30 16:51:18 阅读(1185) 回复(0)