使用单元格值在Google文档中着色单元格

时间:2012-05-17 04:57:20

标签: google-sheets cmyk

任何人都知道是否可以使用其值为Google文档电子表格的单元格着色?单元格填充CMYK代码。

干杯!

1 个答案:

答案 0 :(得分:0)

我为Rails编写了一个粗略的CMYK-to-RGB转换器,逻辑可以在任何地方应用。见下文。

def paint(co1)
  c1, m1, y1, k1 = co1.split(",") 
  c2, m2, y2, k2 = co2.split(",") 

  c1 = c1.to_i*2.55 
  m1 = m1.to_i*2.55 
  y1 = y1.to_i*2.55 
  k1 = k1.to_i*2.55 

  if c1.to_i + k1.to_i < 255 
    @r1 = 255 - (c1.to_i + k1.to_i) 
  else 
    @r1 = 0 
  end 

  if m1.to_i + k1.to_i < 255 
    @g1 = 255 - (m1.to_i + k1.to_i) 
  else 
    @g1 = 0 
  end 

  if y1.to_i + k1.to_i < 255 
    @b1 = 255 - (y1.to_i + k1.to_i) 
  else 
    @b1 = 0 
  end 

  return @r1, @b1, @g1
end