在 doxygen 中使用 SVG

发布于 2024-11-26 08:53:24 字数 308 浏览 0 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不必你懂 2024-12-03 08:53:24

...另一种选择...

\htmlonly
<div align='center'>
<embed src="blabla.svg" width="900px" height="600px" type="image/svg+xml"     pluginspage="http://www.adobe.com/svg/viewer/install/" />
</div>
\endhtmlonly 

... another option...

\htmlonly
<div align='center'>
<embed src="blabla.svg" width="900px" height="600px" type="image/svg+xml"     pluginspage="http://www.adobe.com/svg/viewer/install/" />
</div>
\endhtmlonly 
病毒体 2024-12-03 08:53:24

...一种选择是将 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文