个性化阅读
专注于IT技术分析

SVG feComponentTransfer过滤器用法示例

<feComponentTransfer>用于允许重新定义所有四个颜色通道R, G, B和A。它还允许调整图像所有通道的亮度。

例子

<!DOCTYPE html>
<html>
<body>
<svg height="900" width="900">

<filter id="H">
<feGaussianBlur stdDeviation="1" />
<feComponentTransfer>
<feFuncR type="discrete" tableValues="0 .5 1 0"/>
<feFuncG type="discrete" tableValues="0 .5 0"/>
<feFuncB type="discrete" tableValues="1"/>
</feComponentTransfer>
</filter>

<rect x="30" y="10" height="100" width="100" filter="url(#H)"/>
</svg>
</body>
</html>

立即测试

赞(0)
未经允许不得转载:srcmini » SVG feComponentTransfer过滤器用法示例

评论 抢沙发

评论前必须登录!