将 SVG 图像分割成碎片

发布于 2024-10-12 19:15:24 字数 278 浏览 2 评论 0原文

假设您有一个如下所示的 SVG 图像:

alt text

每张卡片都有自己的 svg 组,但包含其他子元素组。

如何将其分成 52 个不同的图像?

Say you have a SVG image such as this:

alt text

Each card is its own svg group, but contains other groups of subelements.

How can you split it up into 52 different images?

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

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

发布评论

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

评论(1

永言不败 2024-10-19 19:15:24

假设每张卡都位于其自己的组中( 元素),并且组之外没有依赖项,则:

  • 将原始文件的根 svg 元素复制到 52 个文件()
  • 对于每张卡:
    • 将属于该卡的组作为根 svg 元素的子元素附加到步骤 1 中创建的新 svg 文件之一中。
    • 更新根 svg 元素上的 viewBox 属性(或宽度和高度)以适合卡片(可能可以通过 svg 冲刷)

Assuming each card is in it's own group (<g> element) with no dependencies outside the group then:

  • copy the root svg element of the original file to 52 files (<svg ...></svg>)
  • for each card:
    • append the group belonging to the card as a child of the root svg element in one of the new svg files created in step 1.
    • update the viewBox attribute (or width and height) on the root svg element to fit the card (can probably be done automatically by svg scour)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文