AppleScript-将文本从RGB转换为CMYK颜色值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AppleScript-将文本从RGB转换为CMYK颜色值相关的知识,希望对你有一定的参考价值。
Stolen from stetho -- All thanks to AppleScript to convert CMYK to RGB values http://bit.ly/eP2mXS
on cmykrgb(c, m, y, k) set r to 255 - (round (2.55 * (c + k))) set g to 255 - (round (2.55 * (m + k))) set b to 255 - (round (2.55 * (y + k))) if (r < 0) then set r to 0 if (g < 0) then set g to 0 if (b < 0) then set b to 0 return {r, g, b} end cmykrgb
以上是关于AppleScript-将文本从RGB转换为CMYK颜色值的主要内容,如果未能解决你的问题,请参考以下文章
在RGB到HSV的转换中,V=max(R,G,B),V不是RGB中的最大值吗?范围应该是在0~255之间,怎么会在0~1之间?