码迷,mamicode.com
首页 >  
搜索关键字:qt quick example    ( 27971个结果
Qt QGraphicsScene保存为图片
1 QImage image(m_Pixmap.width(), m_Pixmap.height(), QImage::Format_RGB888); 2 QPainter painter(&image); 3 m_pGraphicsScene->render(&painter); //关键函数 4 ...
分类:Web程序   时间:2021-02-20 12:42:00    阅读次数:0
qt数据库存取图片
数据库类型blob 存: QByteArray byteArry; QPixmap pix; QBuffer buffer(&byteArry); buffer.open(QIODevice::WriteOnly); pix.save(&buffer, "png", 0); 取: QPixmap h ...
分类:数据库   时间:2021-02-20 12:22:28    阅读次数:0
git使用命令
命令行指令 Git 全局设置 git config --global user.name "Administrator" git config --global user.email "admin@example.com" 创建新版本库 git clone http://f86ec4dd880f/r ...
分类:其他好文   时间:2021-02-20 12:12:27    阅读次数:0
对称加密
AES: package com.example.wuji.jiami; import com.sun.org.apache.xml.internal.security.utils.Base64; import javax.crypto.Cipher; import javax.crypto.spe ...
分类:其他好文   时间:2021-02-19 13:13:37    阅读次数:0
maven
父类依赖的导入<parent> <groupId>org.example</groupId> <artifactId>dubboDome</artifactId> <version>1.0-SNAPSHOT</version></parent> ...
分类:其他好文   时间:2021-02-19 13:11:37    阅读次数:0
1337. The K Weakest Rows in a Matrix (E)
The K Weakest Rows in a Matrix (E) 题目 Given a m * n matrix mat of ones (representing soldiers) and zeros (representing civilians), return the indexes ...
分类:其他好文   时间:2021-02-18 13:02:33    阅读次数:0
k8s&grpc-知识点
安装 k3s https://docs.rancher.cn/docs/k3s/quick-start/_index/ istio https://www.jianshu.com/p/db7c7f241716 使用 安装删除资源 kubectl delete -f aspnetcore-virtua ...
分类:其他好文   时间:2021-02-18 12:57:33    阅读次数:0
QT 线程(2)--- QLogWidget 未完待续
1 #pragma once 2 3 #include <QtWidgets/QMainWindow> 4 #include "ui_QLogWidget.h" 5 #include <QQueue> 6 #include <QMutex> 7 #include <QWaitCondition> 8 ...
分类:编程语言   时间:2021-02-17 14:52:00    阅读次数:0
PAT A1029 Median (25 分)
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:其他好文   时间:2021-02-17 14:40:27    阅读次数:0
在QT C++中调用 Python并将软件打包发布(裸机可运行)
为了提高工作效率,需要一个可以自动生成多份相关联的word文档免去繁琐复制粘贴工作的软件。最后选定使用QT C++做界面和主要逻辑程序设计,对word的操作使用python写好对应的函数,然后在QT中调用自己写好的python函数完成相应的功能。由于这是第一次使用python 也是第一次将pytho ...
分类:编程语言   时间:2021-02-16 11:55:27    阅读次数:0
27971条   上一页 1 ... 20 21 22 23 24 ... 2798 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!