SVG feColorMatrix - 请理论

时间:2017-01-04 12:41:23

标签: css svg

我正在尝试使用svg-filter" feColorMatrix"用双色调看我的照片。基本上就是这里描述的方式:https://css-tricks.com/color-filters-can-turn-your-gray-skies-blue/

所以我有一个过滤器:

<svg class="filter-blau">
  <filter id="duotone" color-interpolation-filters="sRGB"
          x="0" y="0" height="100%" width="100%">
    <feColorMatrix type="matrix"
      values="0.90 0 0 0   0.40
              0.95 0 0 0  -0.10
             -0.20 0 0 0   0.65
                0  0 0 1   0" />
  </filter>
</svg>

我理解这一点,因为第一列是起始渐变&#39;颜色和最后一列是结束渐变&#39;颜色,均使用rgb百分比值。

你能指点我如何使用这两个值作为开始和终点:

rgb(95%,35%,44%)
rgb(11%,11%,72%)
请问那个例子吗?

0 个答案:

没有答案