Qt中使用QPixmap时,怎样使得添加默认路径或者其他路径的图片啊,是不是所有的图片都支持还是有什么区别? 20
2个回答
展开全部
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等等大多数的图片格式,其中部分是以插件的形式支持。
希望对你有所帮助
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等等大多数的图片格式,其中部分是以插件的形式支持。
希望对你有所帮助
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询