欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++调用Windows画图板mspaint,打开指定路径的图片文件

程序员文章站 2022-05-09 23:16:10
...

一、先看完整的源码 

void DistortionCalibWidget::slotToolButtonMspaint()
{
    //C:\Windows\SysWOW64\mspaint.exe
    //C:\Windows\System32\mspaint.exe
    std::string strImage = m_strPathNameImageOrg.toStdString();
    qDebug() << m_strPathNameImageOrg;

    //将'/'转'\\',斜杠转反斜杠
    QString strNat = QDir::toNativeSeparators(m_strPathNameImageOrg);
    std::string strImageNew = strNat.toStdString();
    qDebug() << strNat;

    //已知文件路径全名,求文件所在文件夹的路径
    std::string directory;
    const size_t last_slash_idx1 = strImageNew.rfind('\\');
    const size_t last_slash_idx2 = strImageNew.rfind('/');
    if (std::string::npos != last_slash_idx1)
    {
        directory = strImageNew.substr(0, last_slash_idx1);
    }

    if (std::string::npos != last_slash_idx2)
    {
        directory = strImageNew.substr(0, last_slash_idx2);
    }

    directory = ("\"") + directory + ("\""); //加引号是为了避免路径有空格,因为cmd命令不认空格
    std::cout << directory << std::endl;

    std::string strEnd = ("\"") + strImageNew + ("\""); //加引号是为了避免路径有空格,因为cmd命令不认空格

    //打开方式1
    ::ShellExecuteA(NULL, "open", "mspaint.exe", strEnd.c_str(), NULL, SW_SHOWMAXIMIZED); //只认'\\'路径

    //打开方式2
    //::ShellExecuteA(NULL, "open", "mspaint.exe", strEnd.c_str(), directory.c_str(), SW_SHOWMAXIMIZED);
}

二、注意事项:

1、ShellExecuteA是Windows的函数,只认'\\'的路径方式,不认'/'的方式。

2、Qt得到的路径默认是'/'的方式。

3、所以需要转换路径(/斜杠与\反斜杠转换)

//获取应用程序的目录
QString strCurrentApplicationDirPath=QCoreApplication::applicationDirPath();
qDebug()<<strCurrentApplicationDirPath;

/*将/转\(斜杠转反斜杠)*/
QString strPath=QDir::toNativeSeparators(strCurrentApplicationDirPath);
qDebug()<<strPath;

/*将\转/(反斜杠转斜杠)*/
QString strPath2=QDir::fromNativeSeparators(strPath);
qDebug()<<strPath2;

输出:

"D:/QT5SourceCode/build-untitled-Desktop_Qt_5_12_5_MinGW_64_bit-Debug/debug"
"D:\\QT5SourceCode\\build-untitled-Desktop_Qt_5_12_5_MinGW_64_bit-Debug\\debug"
"D:/QT5SourceCode/build-untitled-Desktop_Qt_5_12_5_MinGW_64_bit-Debug/debug"