乘带

    (With the “traditional” representation of three bytes, like RGB(124, 255, 56), the multiplications give far too high results, like RGB(7316, 46410, 1848), that have to be normalized (brought back) by dividing them by 256 to fit in the range of (0 to 255)…)

    这种效果主要有两个用途:

    使用遮罩

    詹姆斯·邦德电影的片头字幕,镜头正对着詹姆斯的枪管,就是这种效果的一个很好的例子。

    使用统一的颜色

    将一种颜色与 “正常” 图像相乘,可以让这些颜色变得柔和一些(因此—对称地—以增强其他颜色)。

    Note

    这种效果会降低图片的全局亮度(结果将始终小于最小运算数)。如果其中一幅图像为全白,则结果为另一幅图像;如果其中一幅图像为全黑,则结果将为全黑!

    片段本身没有选项。

    例子

    相乘效果。