Core Image 提供了两个过滤器,CILightenBlendMode
和CIMaximumCompositing
,它们似乎都使用了公式outputColorComponent = max(backgroundColorComponent, foregroundColorComponent)
。从Core Image Filter Reference中各自的描述来看,听起来这两个过滤器做的事情完全一样。
这两个过滤器有什么区别?为什么没有一个过滤器?
(同样的问题也适用于CIDarkenBlendMode
和CIMinimumCompositing
过滤器对。)