Categorygithub.com/user0608/excel2pdf
repositorypackage
0.0.3
Repository: https://github.com/user0608/excel2pdf.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

excel2pdf

Converts an Excel file to PDF, compatible with both Windows and Linux. Uses either LibreOffice or Microsoft Excel, with LibreOffice given priority if installed.

var excelPath = `file.xlsx`

func main() {
    pdfFilePath,err := excel2pdf.ConvertExcelToPdf(excelPath)
	fmt.Println(pdfFilePath, err)
}