我有一个json,我从中获得了200多个图像链接,我想获取图像并以表格格式在pdf中显示(每行3幅图像)
这就是我实现的目的,这不灵活,所以我想知道如何在每行显示3张图像并在当前页面填充时以pdf格式添加新页面。
注意:我正在使用gofpdf库https://github.com/jung-kurt/gofpdf
var img_len int = len(img.Images.CommentedImages)
b := img.Images.CommentedImages
x := 0.0
y := 0.0
pdf.CellFormat(190, 10, "Commented Images", "1", 0, "C", false, 0, "")
for i :=0; i<img_len; i++ {
image_link := b[i].Images
println("image link",image_link)
httpimg.Register(pdf, image_link, "")
pdf.Image(image_link, 30+x, 195+y, 90, 90, false, "", 0, "")
x += 10.0
y += 5.0
}