You are currently viewing the gmlscripts.pro static mirror. Forum access and script submissions are not available through this mirror.

Invert gmlscripts.pro

rgb_to_cmyk

rgb_to_cmyk(r,g,b [,channel])
Returns a list data structure populated by CMYK values of a color, or optionally, the value of a specific color channel.
COPY
  1. /// rgb_to_cmyk(r,g,b [,channel])
  2. //
  3. // Returns a list data structure populated by CMYK values of a color,
  4. // or optionally, the value of a specific color channel.
  5. //
  6. // r,g,b red, green, blue color components [0..255], real
  7. // channel color channel, "C", "M", "Y", "K", string (optional)
  8. //
  9. /// gmlscripts.pro/license
  10. {
  11. var C,M,Y,K,cmyk;
  12. C = 1 - argument0 / 255;
  13. M = 1 - argument1 / 255;
  14. Y = 1 - argument2 / 255;
  15. K = min(C,M,Y,1);
  16. if (K == 1) {
  17. C = 0;
  18. M = 0;
  19. Y = 0;
  20. }else{
  21. C = (C - K) / (1 - K);
  22. M = (M - K) / (1 - K);
  23. Y = (Y - K) / (1 - K);
  24. }
  25. switch (argument3) {
  26. case "C": return C;
  27. case "M": return M;
  28. case "Y": return Y;
  29. case "K": return K;
  30. }
  31. cmyk = ds_list_create();
  32. ds_list_add(cmyk, C);
  33. ds_list_add(cmyk, M);
  34. ds_list_add(cmyk, Y);
  35. ds_list_add(cmyk, K);
  36. return cmyk;
  37. }

Contributors: Austin, Legolas710, xot

GitHub: View · Commits · Blame · Raw