首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

怎的将画好的图形输出到图片文件

2012-12-31 
怎样将画好的图形输出到图片文件?在pixmap中已经画好,怎样输出为图片文件?[解决办法]bool QPixmap::save (

怎样将画好的图形输出到图片文件?
在pixmap中已经画好,怎样输出为图片文件?
[解决办法]
bool QPixmap::save ( const QString & fileName, const char * format = 0, int quality = -1 ) const

Saves the pixmap to the file with the given fileName using the specified image file format and quality factor. Returns true if successful; otherwise returns fals

The quality factor must be in the range [0,100] or -1. Specify 0 to obtain small compressed files, 100 for large uncompressed files, and -1 to use the default settings

试试:
    QPixmap _pixmap;
    //画你的pixmap
    然后调用:
    _pixmap.save("你的文件名 例:output","文件格式 例:PNG");
    应该就可以了

热点排行