我有一个用于gofpdf的pdf包装器,它正在写表,写行的代码看起来像这样,表头是另一个故事...
func WriteTableRows(pdf *gofpdf.Fpdf, fontSize float64, columnSize []float64, rows [][]string) *gofpdf.Fpdf {
pdf.SetFont("Times", "", fontSize)
_, pageh := pdf.GetPageSize()
marginCell := 2.
_, _, _, mbottom := pdf.GetMargins()
_, lineHt := pdf.GetFontSize()
for _, row := range rows {
curx, y := pdf.GetXY()
x := curx
height := splitLines(row, pdf, columnSize, lineHt, marginCell)
y = AddAnotherPage(pdf, height, pageh, mbottom, y)
for i, txt := range row {
width := columnSize[i]
pdf.Rect(x, y, width, height, "")
pdf.MultiCell(width, lineHt+marginCell, txt, "", "", false)
x += width
pdf.SetXY(x, y)
}
pdf.SetXY(curx, y+height)
}
return pdf
}
此源代码准备了许多要写入pdf文件的行, 但是问题是所有信息都保留在内存中,并且我有很大的表要写,我该如何写已处理的内容并在不关闭文件的情况下释放内存,因为在准备好一堆行之后,我需要读取另一组并再次“准备”它,或者甚至关闭文件,但再次打开以追加下一组行。