在SVG文件中编码PANTONE颜色的正确方法是什么?

时间:2012-07-16 17:55:12

标签: colors svg color-space pantone

我有一个应用程序可以吐出SVG图像,出于打印目的,我希望它能够生成正确编码的PANTONE颜色(已知)。 SVG规范在输出的外观方面并不十分详细,尽管进行了一些搜索,但我还是无法在线找到任何示例。

到目前为止,我的尝试不适用于显示目的(至少不适用于Google Chrome),所以我可能不在这里,但到目前为止,我已尝试thisgist):

<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is an attempt at specifying the Italian flag with the -->
<!-- proper Pantone colours, as noted in the Wikipedia talk page, at -->
<!--  http://commons.wikimedia.org/wiki/File_talk:Flag_of_Italy.svg  -->
<svg xmlns="http://www.w3.org/2000/svg" version="1.2" viewBox="0 0 3 2">
<!-- Verde  --><rect fill="#009246 icc-color(17-6153)" width="1" height="2"/>
<!-- Bianco --><rect fill="#f1f2f1 icc-color(11-0601)" width="1" height="2" x="1"/>
<!-- Rosso  --><rect fill="#ce2b37 icc-color(18-1662)" width="1" height="2" x="2"/>
</svg>

我可能需要在SVG spec's notes上指定这是什么颜色配置文件,但我不确定如何。投入赞赏。

0 个答案:

没有答案