Qt SVG
可缩放矢量图形(SVG)是一种基于 XML 的语言,用于描述二维矢量图形。Qt 提供了在 widgets 和其他绘画设备上渲染和显示 SVG 图形的类。
使用模块
使用 Qt 模块的 C++ API 需要直接或通过其他依赖关系与模块库链接。包括CMake和qmake 在内的多个构建工具都为此提供了专门支持。
使用 CMake 构建
使用find_package()
命令在Qt6
软件包中找到所需的模块组件:
find_package(Qt6 REQUIRED COMPONENTS Svg) target_link_libraries(mytarget PRIVATE Qt6::Svg)
更多详情,请参阅使用 CMake 构建概述。
使用 qmake 构建
要配置使用 qmake 构建的模块,请在项目的 .pro 文件中添加模块作为QT
变量的值:
QT += svg
文章与指南
- 渲染 SVG 文件包含有关如何渲染 SVG 文件的信息
参考资料
模块演变
Qt SVG 的变更列出了 Qt 6 系列 Qt 在模块 API 和功能方面的重要变更。
许可证和归属
Qt SVG Qt 6 是在Qt 公司的商业许可下提供的。此外,它还可以在GNU Lesser General Public License 第 3 版或GNU General Public License 第 2 版下使用。详情请参见Qt Licensing。
此外,Qt SVG 还包含以下许可下的第三方代码:
历史许可声明和免责声明 - 出售变体 |
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.