04 2021 档案

摘要:package main import ( "github.com/golang/freetype" "image" "image/color" "image/png" "io/ioutil" "log" "os" ) func main() { //图片的宽度 srcWidth := 200 // 阅读全文
posted @ 2021-04-26 13:04 GPHPER 阅读(749) 评论(0) 推荐(0)
摘要:使用golang标准库中的 image 库合成图片 package main import ( "fmt" "image" "image/draw" _ "image/jpeg" "image/png" "os" ) func main() { file,err := os.Open("./publ 阅读全文
posted @ 2021-04-25 21:19 GPHPER 阅读(390) 评论(0) 推荐(0)
摘要:GinAdmin 这个项目是以Gin框架为基础搭建的后台管理平台,虽然很多人都认为go是用来开发高性能服务端项目的,但是也难免有要做web管理端的需求,总不能再使用别的语言来开发吧。所以整合出了GinAdmin项目,请大家多提意见指正! GitHub地址 https://github.com/gph 阅读全文
posted @ 2021-04-24 11:21 GPHPER 阅读(1397) 评论(0) 推荐(0)

TOP