将 SVG 图表打印为 PPML 格式

发布于 2024-10-18 06:05:37 字数 141 浏览 1 评论 0原文

我们的打印机设置为处理 PPML 文件。

我们希望包含一些要打印的 SVG 图表。 SVG 图表是使用 PHP 和 YUI3 构建的。

如何将 SVG 图表合并到 PPML 文件中?
如何将 YUI3 图表包含到 PPML 中?

Our printer is set up to handle PPML files.

We would like to include some SVG charts to be printed. SVG Charts are built with PHP and YUI3.

How to incorporate SVG charts into PPML files?
How to include YUI3 charts into PPML?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

但可醉心 2024-10-25 06:05:37

在您的 PPML 文件中,我相信您应该能够添加以下标签:

<SOURCE Dimensions="thewidthinpixels theheightinpixels" Format="image/svg+xml">
<EXTERNAL_DATA Src="yoursvgfilepath.svg" />
</SOURCE>

这是一个示例 PPML 文件(尽管它不包括 SVG 示例):
示例 PPML 代码

而且,如果您只想复制并粘贴 svg中,看来您也可以将其嵌入为内部数据:
有关在 PPML 中使用 SVG 的 W3C 参考

In your PPML file, I believe you should be able to add the tag below:

<SOURCE Dimensions="thewidthinpixels theheightinpixels" Format="image/svg+xml">
<EXTERNAL_DATA Src="yoursvgfilepath.svg" />
</SOURCE>

Here's an example PPML file (although it doesn't include an SVG example):
Example PPML code

And, if you wanted to just copy and paste the svg in, it appears you can embed it as internal data, too:
W3C reference regarding use of SVG in PPML

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