<feColorMatrix>
<feColorMatrix> SVG 濾鏡元素根據變換矩陣更改顏色。每個畫素的顏色值 [R,G,B,A] 矩陣乘法 一個 5x5 顏色矩陣以建立新的顏色 [R',G',B',A']。
注意: 撇號 ' 在數學中用於表示變換結果。
| R' | | r1 r2 r3 r4 r5 | | R | | G' | | g1 g2 g3 g4 g5 | | G | | B' | = | b1 b2 b3 b4 b5 | * | B | | A' | | a1 a2 a3 a4 a5 | | A | | 1 | | 0 0 0 0 1 | | 1 |
簡而言之,以下是新畫素中每個顏色通道的計算方式。最後一行被忽略,因為它的值是恆定的。
R' = r1*R + r2*G + r3*B + r4*A + r5 G' = g1*R + g2*G + g3*B + g4*A + g5 B' = b1*R + b2*G + b3*B + b4*A + b5 A' = a1*R + a2*G + a3*B + a4*A + a5
取新畫素中的紅色量,或 R'
它是以下幾項的總和:
r1乘以舊畫素的紅色R,r2乘以舊畫素的綠色G,r3乘以舊畫素的藍色B,r4乘以舊畫素的 alphaA,- 加上一個偏移量
r5。
這些指定量可以是任何實數,但最終的 R' 將被限制在 0 和 1 之間。G'、B' 和 A' 也一樣。
R' = r1 * R + r2 * G + r3 * B + r4 * A + r5 New red = [ r1 * old red ] + [ r2 * old green ] + [ r3 * old Blue ] + [ r4 * old Alpha ] + [ shift of r5 ]
例如,如果我們要讓完全黑色的影像更紅,我們可以將 r5 設定為一個正實數 x,從而將新影像的每個畫素的紅色值提高 x。
一個 單位矩陣 如下所示
R G B A W R' | 1 0 0 0 0 | G' | 0 1 0 0 0 | B' | 0 0 1 0 0 | A' | 0 0 0 1 0 |
其中,每個新值都是其舊值的 1 倍,沒有其他加法。建議從這裡開始操作矩陣。
使用環境
屬性
DOM 介面
此元素實現了 SVGFEColorMatrixElement 介面。
示例
SVG
html
<svg
width="100%"
height="100%"
viewBox="0 0 150 500"
preserveAspectRatio="xMidYMid meet"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- ref -->
<defs>
<g id="circles">
<circle cx="30" cy="30" r="20" fill="blue" fill-opacity="0.5" />
<circle cx="20" cy="50" r="20" fill="green" fill-opacity="0.5" />
<circle cx="40" cy="50" r="20" fill="red" fill-opacity="0.5" />
</g>
</defs>
<use href="#circles" />
<text x="70" y="50">Reference</text>
<!-- identity matrix -->
<filter id="colorMeTheSame">
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0" />
</filter>
<use
href="#circles"
transform="translate(0 70)"
filter="url(#colorMeTheSame)" />
<text x="70" y="120">Identity matrix</text>
<!-- Combine RGB into green matrix -->
<filter id="colorMeGreen">
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="0 0 0 0 0
1 1 1 1 0
0 0 0 0 0
0 0 0 1 0" />
</filter>
<use
href="#circles"
transform="translate(0 140)"
filter="url(#colorMeGreen)" />
<text x="70" y="190">rgbToGreen</text>
<!-- saturate -->
<filter id="colorMeSaturate">
<feColorMatrix in="SourceGraphic" type="saturate" values="0.2" />
</filter>
<use
href="#circles"
transform="translate(0 210)"
filter="url(#colorMeSaturate)" />
<text x="70" y="260">saturate</text>
<!-- hueRotate -->
<filter id="colorMeHueRotate">
<feColorMatrix in="SourceGraphic" type="hueRotate" values="180" />
</filter>
<use
href="#circles"
transform="translate(0 280)"
filter="url(#colorMeHueRotate)" />
<text x="70" y="330">hueRotate</text>
<!-- luminanceToAlpha -->
<filter id="colorMeLTA">
<feColorMatrix in="SourceGraphic" type="luminanceToAlpha" />
</filter>
<use href="#circles" transform="translate(0 350)" filter="url(#colorMeLTA)" />
<text x="70" y="400">luminanceToAlpha</text>
</svg>
結果
規範
| 規範 |
|---|
| 濾鏡效果模組級別 1 # feColorMatrixElement |
瀏覽器相容性
BCD 表格僅在啟用了 JavaScript 的瀏覽器中載入。