Qt中使用QPixmap时,怎样使得添加默认路径或者其他路径的图片啊,是不是所有的图片都支持还是有什么区别?
发布网友
发布时间:2022-05-05 23:43
我来回答
共2个回答
热心网友
时间:2023-10-10 01:33
QString myDirPath = QString::fromLocal8Bit("C:\\documents and settings\\xxxx\\桌面");
QDir myDir = QDir(myDirPath);
myDirPath = myDir.exists() ? myDirPath:QDir::homePath();
m_fileName = QFileDialog::getOpenFileName(this, tr("Select Image:"),
myDirPath,
tr("Images (*.jpg *.png *.tif *.ico *.bmp *.gif)"));
QT支持jpg, png, tif, ico, bmp, gif等等大多数的图片格式,其中部分是以插件的形式支持。
希望对你有所帮助
热心网友
时间:2023-10-10 01:33
添加图片你只要加上路径就可以。至于说是不是所有的图片格式都支持,只能这么说,主流的图片文件格式基本都支持,至于自定义的图片文件格式,还得自己去处理啦