gpt4 book ai didi

google-sheets - 通过 API 调用使用 RGBA 颜色格式化单元格

转载 作者:行者123 更新时间:2023-12-03 08:59:20 27 4
gpt4 key购买 nike

我正在使用 Google Sheets v4 API,并且想要使用 Google Sheets UI 上提供的橙色 FF9900,但 API 中的 RGBA 不遵循标准颜色 RGBA。来自 this工具,我得到橙色的 rgba(236, 161, 51, 1) 。

这是我使用 Google API Explorer 的请求代码:

{
requests: [{
repeatCell: {
range:{
sheetId: correctsheetid,
startRowIndex: 2,
endRowIndex: 3,
},
cell:{
userEnteredFormat:{
backgroundColor: {
red: 236,
green: 161,
blue: 51
}
}
},
fields: 'userEnteredFormat(backgroundColor)'
}
}]
}

但是,工作表上的输出是蓝色的,而不是预期的橙色。

最佳答案

Google 对 RGBA 使用“0 到 1”比例。

除以 255

{
requests: [
{
repeatCell: {
range: {
sheetId: correctsheetid,
startRowIndex: 2,
endRowIndex: 3
},
cell: {
userEnteredFormat: {
backgroundColor: {
red: 236/255,
green: 161/255,
blue: 51/255
alpha: 0.5
}
}
},
fields: 'userEnteredFormat(backgroundColor)'
}
}
]
}

关于google-sheets - 通过 API 调用使用 RGBA 颜色格式化单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52158607/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com