在 doxygen 中使用 SVG
我正在尝试将 SVG 添加到我的 doxygen 文档中。
第一次尝试是使用 \image blabla.svg
。这有点工作......但是,SVG 包含另一个 png 参考,并且“内部”png 未显示。这在 Chrome 上有效,但即使在 Firefox 上也不起作用。
继续阅读,我发现我可以在标记上使用 或
。我不确定使用 doxygen 是否可以实现这一点。
如何在 doxygen 文档中使用 SVG?
I am trying to add an SVG to my doxygen documentation.
First try was using \image blabla.svg
. This kinda worked... but, the SVG contains another png reference, and the "internal" png was not showed. This works on Chrome, but even on Firefox this is not working.
Reading on, I see that I can use <embed>
or <iframe>
on tye markup. I am not sure if this is possible using doxygen.
How can I use an SVG inside my doxygen documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
...另一种选择...
... another option...
...一种选择是将 SVG 渲染为 PNG 并将其“正常”嵌入到 doxygen 中。这可以使用 imagemagick 中的“convert”来完成。
(丑陋的解决方案,等待更好的解决方案)
... one option, is to render the SVG to PNG and embbed it into doxygen "normally". This can be done using "convert" from imagemagick.
(ugly solution, waiting for a better one)