指示 svg 文件作者的推荐方法是什么?
What's the reccomended way to indicate the author of an svg file?
我正在开发一个以编程方式编写 svg 文件的工具。我想知道将作者添加到文件的常规方法是什么。我正在使用这样的东西:
<svg version="1.1"
baseProfile="full" width="297mm"
height="210mm"
viewBox="0 0 297 210"
xmlns="http://www.w3.org/2000/svg"
author="Bill Kill">
但我也发现这个约定使用 DublinCore standard。
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<title property="dc:title">Metamorphosis I-IV</title>
<desc property="dc:creator">M.C. Escher</desc>
<!-- graphical elements -->
</svg>
有点冗长。推荐的方式是什么?
标准中认可了许多属性(参见 link)。如果您添加不在其中的 author
,您将违反该标准。大多数浏览器不会抱怨,但我认为使用 desc
更安全。而且,它是为您的需要而设计的标签。
我正在开发一个以编程方式编写 svg 文件的工具。我想知道将作者添加到文件的常规方法是什么。我正在使用这样的东西:
<svg version="1.1"
baseProfile="full" width="297mm"
height="210mm"
viewBox="0 0 297 210"
xmlns="http://www.w3.org/2000/svg"
author="Bill Kill">
但我也发现这个约定使用 DublinCore standard。
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<title property="dc:title">Metamorphosis I-IV</title>
<desc property="dc:creator">M.C. Escher</desc>
<!-- graphical elements -->
</svg>
有点冗长。推荐的方式是什么?
标准中认可了许多属性(参见 link)。如果您添加不在其中的 author
,您将违反该标准。大多数浏览器不会抱怨,但我认为使用 desc
更安全。而且,它是为您的需要而设计的标签。