Skip to content

Commit

Permalink
feat(picture.md): @.avg_color (SocialSisterYi#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
SessionHu authored Dec 12, 2023
1 parent f3691ed commit bbbbc9b
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions docs/misc/picture.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| width | 图片最大限制宽度 | |
| high | 图片最大限制高度 | |
| quality | 图片质量百分比 | 仅限webp |
| format | 图片格式 | 仅限png/jpg/webp |
| format | 图片格式 | 仅限png/jpg/webp/[avg_color](#avg_color格式说明) |

**示例:**

Expand Down Expand Up @@ -41,4 +41,40 @@ https://i1.hdslb.com/bfs/archive/[email protected]

https://i1.hdslb.com/bfs/archive/[email protected]

![](https://i1.hdslb.com/bfs/archive/[email protected])
![](https://i1.hdslb.com/bfs/archive/[email protected])


## avg_color格式说明

当图片格式化输出格式为`avg_color`

> \*.hdslb.com/bfs/\*/\*.*@\*.avg_color
*请求方式:GET*

**json回复:**

根对象:

| 字段 | 类型 | 内容 | 备注 |
| ------ | ---- | ----------- | ------ |
| RGB | str | 平均颜色值 | HEX |

**示例:**

获取 https://i1.hdslb.com/bfs/archive/e5fff1472bad1c0c6bcb3004205f9be23b58ffc0.jpg 的平均颜色值

```shell
curl 'https://i1.hdslb.com/bfs/archive/[email protected]_color'
```

<details>
<summary>查看响应示例:</summary>

```json
{
"RGB": "#7d6f6c"
}
```

</details>

0 comments on commit bbbbc9b

Please sign in to comment.