-
Notifications
You must be signed in to change notification settings - Fork 282
/
img.go
226 lines (181 loc) · 5.41 KB
/
img.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package weapp
import "github.com/medivhzhan/weapp/v3/request"
const (
apiAICrop = "/cv/img/aicrop"
apiScanQRCode = "/cv/img/qrcode"
apiSuperResolution = "/cv/img/superResolution"
)
// AICropResponse 图片智能裁剪后的返回数据
type AICropResponse struct {
request.CommonError
Results []struct {
CropLeft uint `json:"crop_left"`
CropTop uint `json:"crop_top"`
CropRight uint `json:"crop_right"`
CropBottom uint `json:"crop_bottom"`
} `json:"results"`
IMGSize struct {
Width uint `json:"w"`
Height uint `json:"h"`
} `json:"img_size"`
}
// AICrop 本接口提供基于小程序的图片智能裁剪能力。
func (cli *Client) AICrop(filename string) (*AICropResponse, error) {
api := baseURL + apiAICrop
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.aiCrop(api, token, filename)
}
func (cli *Client) aiCrop(api, token, filename string) (*AICropResponse, error) {
url, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
res := new(AICropResponse)
if err := cli.request.FormPostWithFile(url, "img", filename, res); err != nil {
return nil, err
}
return res, nil
}
// AICropByURL 本接口提供基于小程序的图片智能裁剪能力。
func (cli *Client) AICropByURL(url string) (*AICropResponse, error) {
api := baseURL + apiAICrop
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.aiCropByURL(api, token, url)
}
func (cli *Client) aiCropByURL(api, token, imgURL string) (*AICropResponse, error) {
queries := requestQueries{
"access_token": token,
"img_url": imgURL,
}
url, err := request.EncodeURL(api, queries)
if err != nil {
return nil, err
}
res := new(AICropResponse)
if err := cli.request.Post(url, nil, res); err != nil {
return nil, err
}
return res, nil
}
// QRCodePoint 二维码角的位置
type QRCodePoint struct {
X uint `json:"x"`
Y uint `json:"y"`
}
// ScanQRCodeResponse 小程序的条码/二维码识别后的返回数据
type ScanQRCodeResponse struct {
request.CommonError
CodeResults []struct {
TypeName string `json:"type_name"`
Data string `json:"data"`
Position struct {
LeftTop QRCodePoint `json:"left_top"`
RightTop QRCodePoint `json:"right_top"`
RightBottom QRCodePoint `json:"right_bottom"`
LeftBottom QRCodePoint `json:"left_bottom"`
} `json:"pos"`
} `json:"code_results"`
IMGSize struct {
Width uint `json:"w"`
Height uint `json:"h"`
} `json:"img_size"`
}
// ScanQRCode 本接口提供基于小程序的条码/二维码识别的API。
func (cli *Client) ScanQRCode(filename string) (*ScanQRCodeResponse, error) {
api := baseURL + apiScanQRCode
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.scanQRCode(api, token, filename)
}
func (cli *Client) scanQRCode(api, token, filename string) (*ScanQRCodeResponse, error) {
url, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
res := new(ScanQRCodeResponse)
if err := cli.request.FormPostWithFile(url, "img", filename, res); err != nil {
return nil, err
}
return res, nil
}
// ScanQRCodeByURL 把网络文件上传到微信服务器。目前仅支持图片。用于发送客服消息或被动回复用户消息。
func (cli *Client) ScanQRCodeByURL(imgURL string) (*ScanQRCodeResponse, error) {
api := baseURL + apiScanQRCode
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.scanQRCodeByURL(api, token, imgURL)
}
func (cli *Client) scanQRCodeByURL(api, token, imgURL string) (*ScanQRCodeResponse, error) {
queries := requestQueries{
"access_token": token,
"img_url": imgURL,
}
url, err := request.EncodeURL(api, queries)
if err != nil {
return nil, err
}
res := new(ScanQRCodeResponse)
if err := cli.request.Post(url, nil, res); err != nil {
return nil, err
}
return res, nil
}
// SuperResolutionResponse 图片高清化后的返回数据
type SuperResolutionResponse struct {
request.CommonError
MediaID string `json:"media_id"`
}
// SuperResolution 本接口提供基于小程序的图片高清化能力。
func (cli *Client) SuperResolution(filename string) (*SuperResolutionResponse, error) {
api := baseURL + apiSuperResolution
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.superResolution(api, token, filename)
}
func (cli *Client) superResolution(api, token, filename string) (*SuperResolutionResponse, error) {
url, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
res := new(SuperResolutionResponse)
if err := cli.request.FormPostWithFile(url, "img", filename, res); err != nil {
return nil, err
}
return res, nil
}
// SuperResolutionByURL 把网络文件上传到微信服务器。目前仅支持图片。用于发送客服消息或被动回复用户消息。
func (cli *Client) SuperResolutionByURL(imgURL string) (*SuperResolutionResponse, error) {
api := baseURL + apiSuperResolution
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.superResolutionByURL(api, token, imgURL)
}
func (cli *Client) superResolutionByURL(api, token, imgURL string) (*SuperResolutionResponse, error) {
queries := requestQueries{
"access_token": token,
"img_url": imgURL,
}
url, err := request.EncodeURL(api, queries)
if err != nil {
return nil, err
}
res := new(SuperResolutionResponse)
if err := cli.request.Post(url, nil, res); err != nil {
return nil, err
}
return res, nil
}