我正在开发一个 OS X 应用程序,它使用自定义核心图像过滤器来获得特定效果:将一个图像的亮度设置为另一个图像的 alpha 通道。有过滤器可以将图像用作另一个图像的掩码,但它们需要第三个背景图像;我需要输出带有透明部分的图像,没有设置背景。
正如Apple 的文档中所解释的那样,我编写了内核代码并在 QuartzComposer 中对其进行了测试;它按预期工作。
内核代码是:
kernel vec4 setMask(sampler src, sampler mask)
{
vec4 color = sample(src, samplerCoord(src));
vec4 alpha = sample(mask, samplerCoord(mask));
color.a = alpha.r;
// (mask image is grayscale; any channel colour will do)
return color;
}
但是,当我尝试使用我的代码中的过滤器(将其打包为图像单元或直接来自应用程序源)时,输出图像结果具有以下“未定义”(?)范围:
extent CGRect origin=(x=-8.988465674311579E+307, y=-8.988465674311579E+307) size=(width=1.797693134862316E+308, height=1.797693134862316E+308)
并且进一步处理(转换为 NSImage 位图表示,写入文件等)失败。过滤器本身加载完美(不是零),它产生的输出图像也不是零,只是有一个无效的矩形。
编辑:另外,我将导出的图像单元(插件)复制到/Library/Graphics/Image Units
和~/Library/Graphics/Image Units
,以便它出现在 QuartzComposer 的补丁库中,但是当我将它连接到源图像和 Billboard 渲染器时,没有绘制任何内容(透明背景)。
我错过了什么吗?
编辑:看起来我对-[CIFilter apply:]
.
我的过滤器子类代码的-outputImage
实现是这样的:
- (CIImage*) outputImage
{
CISampler* src = [CISampler samplerWithImage:inputImage];
CISampler* mask = [CISampler samplerWithImage:inputMaskImage];
return [self apply:setMaskKernel, src, mask, nil];
}
所以我尝试并将其更改为:
- (CIImage*) outputImage
{
CISampler* src = [CISampler samplerWithImage:inputImage];
CISampler* mask = [CISampler samplerWithImage:inputMaskImage];
CGRect extent = [inputImage extent];
NSDictionary* options = @{ kCIApplyOptionExtent: @[@(extent.origin.x),
@(extent.origin.y),
@(extent.size.width),
@(extent.size.height)],
kCIApplyOptionDefinition: @[@(extent.origin.x),
@(extent.origin.y),
@(extent.size.width),
@(extent.size.height)]
};
return [self apply:setMaskKernel arguments:@[src, mask] options:options];
}
...现在它起作用了!