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) } ...阅读全文
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) } ...阅读全文
```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...阅读全文
php实现的简单步骤是,定义一个要加密的字符串$str,一个秘钥$key,然后用执行openssl_encrypt($str,"AES-256-ECB",$key),就可以获取加密后的字符串,解密用openssl_decrypt这个方法。 请问用golang如何实现?阅读全文