在SVG中使用两个图像创建图像蒙版时,如何保留图像的不透明度? 如下图所示,图像几乎是透明的 - 它应该是完全不透明的。为什么会发生这种情况,如何强制蒙面产品具有100%的不透明度?
以下是我得到的结果:
这是我正在使用的蒙版图像:
这是我的代码(抱歉PHP变量):
<svg width="'.$width.'" height="'.$height.'" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<mask id="mask'.$id.'" maskUnits="userSpaceOnUse"
x="0" y="0" width="'.$width.'" height="'.$height.'">
<image id="maskImg'.$id.'" x="0" y="0" width="'.$width.'px" height="'.$height.'px"
xlink:href="images/'.$treatment_url.'" >
</image>
</mask>
<g id="imgGroup'.$id.'">
<rect x="0" y="0" width="'.$width.'" height="'.$height.'" fill="rgba(30,30,30,0.2)" />
<image id="listingImg'.$id.'"
x="0" y="0" width="'.$width.'px" height="'.$height.'px"
xlink:href="'. $img_url .'">
</image>
</g>
</defs>
<use xlink:href="#imgGroup'.$id.'" mask="url(#mask'.$id.')" opacity="1" />';
</svg>
仅供参考:<rect>
组中的<g>
仅用于提供MASKED图像在x或y维度上小于MASKING图像时的背景;它不会影响我所拥有的掩蔽问题,因为我已经尝试过两种方式。
我很难过,感谢任何帮助!
答案 0 :(得分:4)
SVG 1.1使用luminance masks。一个简单且有些不准确的解释是:蒙版图像中的白色表示完全不透明,黑色表示完全透明。更多解释here。一些带图像的蒙版的高级示例,请参阅here。
SVG2的Alpha掩码为proposed和accepted as a requirement。