go image/draw 生成圆形图片的问题

func (imageUtils ImageUtils) Circle(){ file, err := os.Create("newcircle.png") if err != nil { fmt.Println(err) } defer file.Close() imageFile , err := os.Open("background.png") if err != nil { fmt.Println(err) } ...阅读全文

2018-11-11 00:40:16

golang一些库的积累

```go 1 : go 二维码 https://github.com/tuotoo/qrcode 2: go excel 操作 https://github.com/tealeg/xlsx 3: golang 操作redis https://github.com/garyburd/redigo https://github.com/muesli/cache2go vegamcache:Go实现的分布式内存缓存 https://github.com/sch00...阅读全文

2018-12-05 14:13:42