zoukankan      html  css  js  c++  java
  • qt 利用 HTML 生成PDF文档,不能显示jpg图片

    利用 QPrinter 和html 生成 pdf文档

    其中用html语句有显示图片的语句

    但只能显示png格式的图片,不能显示jpg格式图片。

    经过排查:语法,文件路径等都正确,最终在stack overflow 中找到 原因:在执行程序中没有安装 jpg图形格式的plugin

    https://stackoverflow.com/questions/14878670/qt-does-not-load-jpg-just-png

    {

    Your executable is missing the jpg plugin. Optional means, that if your executable doesn't find the plugins (dlls) it will start, but without loading these image formats. It is the same with a lot of qt features (fe: slqdrivers)

    You will find the folder "imageformats" in C:Qt4.8.4plugins (replace your installation dir and version), copy it to your executable path and it will show jpgs.

    Probably, some environmental variables of your colleagues differ a bit from yours.

    Take care with Qt plugins and the distribution of your application.

    }

    同样 在qlistwiget中以图标方式显示图片时也不能显示jpg格式文件。也用上面的方式解决。

  • 相关阅读:
    基于easyUI实现权限管理系统(一)一—组织结构树图形
    基于jquery实现图片拖动和曲线拖放
    SOLID原则
    架构设计-C4
    中台战略
    DDD
    GraphQL
    kafka笔记
    maven
    GIT
  • 原文地址:https://www.cnblogs.com/keleman/p/7715849.html
Copyright © 2011-2022 走看看