RT
更多评论
核心代码如下(省略了错误处理等)
```go
resp, _ := http.Get("imageurl")
img, _, _ := image.Decode(resp.Body)
width := img.Bounds().Dx()
height := img.Bounds().Dy()
```
#1
![image.png](https://static.studygolang.com/170925/da12dd241609786d08200c4e3b0091e6.png)
报这个 错是为什么:
![image.png](https://static.studygolang.com/170925/4ec55c1fb4f525ad4ca147781e8ccede.png)
#2