Golang包管理mod的使用

https://zhuanlan.zhihu.com/p/60703832

1、使用

文件名:excel.go

$ go mod init excel
$ go get github.com/xuri/excelize/v2
$ go run excel.go
#生成.exe
$ go build excel.go

2、excelize库的使用

// 插入图片
    if err := f.AddPicture("Sheet1", "A2", "images/team-1.jpg", ""); err != nil {
        fmt.Println(err)
    }
"alignment" : {
   "horizontal": "center"
},
"font" : {
   "family" : "Times New Roman",
   "bold" : true
}

单元格的设置

  • [x] 设置行高220、列宽44
  • [ ] 设置水平居中:水平 "horizontal": "center" | 垂直 "vertical": "center"
  • [ ] 设置边框:1,粗细 1
  • [ ] 循环读取images文件夹内的图片

···

上一篇:如何使用go-nsq


下一篇:小白使用visual studio code——之一创建c#项目