我需要使用 CSS 和 SVG 过滤器在我的图像上应用过滤器“颜色平衡”,
那么如何添加滤镜颜色平衡以及如何恢复图像中的原始颜色
这是我的代码,但我没有看到任何变化
<html>
<style>
#filt{
filter:url(feColor-balance.svg#balance);
}
</style>
<body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="balance">
<feColorMatrix type="matrix"
values="1.3 0 0 0 0
0 1.1 0 0 0
0 0 0.7 0 0
0 0 0 1 0"/>
</filter>
</defs>
<image xlink:href="http://www.mivision.com.au/uploads/ufiles/xx/oct/mv_Feb_Feature_eyes_in_art_My_beautiful_retina.jpg" x="5" y="5" width="190" height="290"/>
<image xlink:href="http://www.mivision.com.au/uploads/ufiles/xx/oct/mv_Feb_Feature_eyes_in_art_My_beautiful_retina.jpg" id="filt" x="205" y="5" width="190" height="290"/>
</svg>
</body>
</html>