qt加载jpg,保存jpg失败

今天无意中发现一张图片在qt程序中出现问题,QPixmap加载jpg图片后执行save操作,返回失败了,失败原因不知道,往前追踪,发现new QPixmap(imagePath)后判断isNull()直接返回true,也就是加载的时候就已经失败了,但是从windows的资源管理中查看分明就是一张正常的图片。图片查看器也能正常打开它。偶然灵光一闪,将他的后缀改为了.png,突然就没问题了。想必QT依赖后缀名动态使用qjpeg.dll等动态库解析图片。于是写了一段兼容处理的代码

QPixmap* getRealPixmap(QString filePath){
    QPixmap *pPixmap = new QPixmap(filePath);
    if(!pPixmap->isNull()){
        return pPixmap;
    }else{
        delete pPixmap;
        pPixmap = nullptr;
    }

    QImageReader reader(filePath);
    reader.setDecideFormatFromContent(true);
    if(reader.canRead())
    {
        QImage image;
        if(reader.read(&image))
        {
            pPixmap = new QPixmap(QPixmap::fromImage(image));
            CLog::log(QString("read %1 success").arg(filePath), LOG_PARAM);
        }
        else
        {
            CLog::error(QString("read %1 return false [%2]")
                        .arg(filePath).arg(reader.errorString()), LOG_PARAM);
        }
    }
    else
    {
        CLog::error(QString("%1 canRead return false").arg(filePath), LOG_PARAM);
    }

    return pPixmap;
}

先直接new出一个QPixmap,如果isNull()为true,就是解析失败了,再用QImageReader解析

你可能感兴趣的:(qt)