qt 将图片转换为base64格式数据


        
        QImage image(QString::fromLocal8Bit(iter->filePath.c_str()));
        QByteArray ba;
        QBuffer buf(&ba);
        image.save(&buf, "jpg");
        QByteArray hexed = ba.toBase64();
        buf.close();
        QString strImage(hexed);

你可能感兴趣的:(Qt)