我有一个带有通过过滤器添加的图像的路径。 此外,路径的背景颜色设置如下:
myPath.css('fill', bgColour);
我的问题是如何让路径透明但保持图像可见?
我尝试了fill: transparent
,fill-opacity: 0
,fill: rgba(0, 0, 0, 1)
但是这些图像也变得不可见了。
这是我目前的代码:
var filter = svg.filter(defs, 'myFilter', 0, 0, '100%', '100%', filterOptions);
var sourcePathRef = 'SourceGraphic';
if (hasTransparentBackground()) {
// make path transparent
svg.filters.colorMatrix(filter, 'TransformedGraphic', sourcePathRef, 'matrix', [
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0]
]);
sourcePathRef = 'TransformedGraphic';
}
// add the image
var outputSlot = 'customImage';
svg.filters.image(filter, outputSlot, imageFile, {
preserveAspectRatio: aspectRatio
});
// move it
svg.filters.offset(filter, 'movedImage', outputSlot, moveX, moveY);
// combine image with path for clipping
svg.filters.composite(filter, 'clip', 'in', 'movedImage', sourcePathRef);
// mix both images
svg.filters.blend(filter, '', 'normal', 'clip', sourcePathRef);
// apply the filter
imageSlot.attr('filter', 'url(#myFilter)');
答案 0 :(得分:0)
简单修复:跳过最后一个(混合)过滤器: - )