# graphs
**Repository Path**: gx90/graphs
## Basic Information
- **Project Name**: graphs
- **Description**: 七牛云图片合成服务
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 1
- **Created**: 2020-03-09
- **Last Updated**: 2022-12-05
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# graphs
#### 介绍
七牛云图片合成服务
#### 获取api key
**请求URL:**
- ` http://xx.com/graph/token`
**请求方式:**
- GET
**参数:**
|参数名|必选|类型|说明|
|:---- |:---|:----- |----- |
|signature |是 |string |签名 |
**返回示例**
```
{
"code": "000",
"message": "success",
"data": {
"api_key": "dc3d5706-a9c4-439f-bf27-03ef7a7d427a"
}
}
```
**返回参数说明**
|参数名|类型|说明|
|:----- |:-----|----- |
|api_key |string |交互携带密钥(有效期2小时) |
**签名生成算法说明**
第一步: 将服务器ip地址(ip_addr) 约定盐值(salt) 当日零点时间戳(unix_time) 按顺序拼接得到 字符串1(string1)
string1 = ip_addr+salt+unix_time
第二步: 将string1用sha1算法加密得到签名signature
#### 合成水印图片
**请求URL:**
- ` http://xx.com/graph/compound`
**请求方式:**
- POST
**Headers参数:**
|参数名|必选|类型|说明|
|:---- |:---|:----- |----- |
|Authorization |是 |string |交互密钥 |
|Content-Type|是|string|application/json|
**Body参数:**
|参数名|必选|类型|说明|
|:---- |:---|:----- |----- |
|background |是 |string |背景图 |
|dress|是|array|参数|
|dress.type|是|string|类型 text文字 image图片|
|dress.content|否|string|文字内容|
|dress.url|否|string|图片地址|
|dress.color|否|string|文字颜色|
|dress.xposition|是|int|x坐标|
|dress.yposition|是|int|y坐标|
|dress.gravity|是|string|坐标原点
NorthWest 西北角
NorthEast 东北角
SouthWest 西南角
SouthEast 东南角|
|dress.ws|否|float|图片缩放比例|
**请求示例:**
```
{
"background": "https://qiqiutree.leyougame.cc/WechatIMG6.jpg",
"dress": [
{
"type": "text",
"content": "你好",
"font_size": 1500,
"color": "#030303",
"xposition": 120,
"yposition": 490,
"gravity": "NorthWest"
},
{
"type": "image",
"url": "https://tree1.leyougame.cc/images/WechatIMG21.png",
"xposition": 100,
"yposition": 800,
"gravity": "NorthWest",
"ws": 0.15
}
]
}
```
**返回示例**
```
{
"code": "000",
"message": "success",
"data": "https://qiqiutree.leyougame.cc/WechatIMG6.jpg?watermark/3/text/5L2g5aW9/font/5b6u6L2v6ZuF6buR/fill/IzAzMDMwMw==/fontsize/1500/dissolve/100/dx/120/dy/490/gravity/NorthWest/image/aHR0cHM6Ly90cmVlMS5sZXlvdWdhbWUuY2MvaW1hZ2VzL1dlY2hhdElNRzIxLnBuZw==/dissolve/100/dx/100/dy/800/gravity/NorthWest/ws/0.15"
}
```