作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法理解 R = 0
、R = S
、R = S*Da
的含义,定义在 kCGBlendMode
值,例如 kCGBlendModeClear
、kCGBlendModeCopy
、kCGBlendModeSourceIn
。那么,这些符号指的是什么?
最佳答案
R=0
表示结果颜色将为 0,表示将被清除。
R=S
表示结果颜色与源颜色相同
R=S*Da
表示结果是源颜色乘以目标的 alpha 值
如果你看一下 documentation向下滚动你会看到它们的含义:
The blend mode constants introduced in OS X v10.5 represent the Porter-Duff blend modes (a little explanation how they work). The symbols in the equations for these blend modes are:
- R is the premultiplied result
- S is the source color, and includes alpha
- D is the destination color, and includes alpha
- Ra, Sa, and Da are the alpha components of R, S, and D
如果您进一步查看 Setting blend modes您可以看到应用的大部分混合模式以及它们的结果可能是什么样子。
关于ios - kCGBlendMode 值中 R、S、Da 的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29866929/
我无法理解 R = 0、R = S、R = S*Da 的含义,定义在 kCGBlendMode 值,例如 kCGBlendModeClear、kCGBlendModeCopy、kCGBlendMode
我是一名优秀的程序员,十分优秀!