#include "qtshowimage.h"#include <QtWidgets/QApplication>
int main(int argc, char *argv[]){ QApplication a(argc, argv); qtshowimage w; w.setWindowTitle(QString("image")); //修改这句即可,但是字母,汉字乱码 w.show(); return a.exec();}