This is a project that save CSV file as PNG images.
Run the following to install:
pip install csv2img
To use csv2img, make sure that you have installed the package of csv2pdf, fitz and PyMuPDF, since this package is a combination of csv2pdf and fitz.
pip install csv2pdf
pip install fitz #please install fitz first, else it may crush with PyMuPDF
pip install PyMuPDF
from csv2img import saveas
saveas(csv_file)
from csv2img import saveas
saveas("data.csv")
If the occured error is related to the packages of fitz and PyMuPDF, please uninstall these packages and install them again.
pip uninstall fitz
pip uninstall PyMuPDF
pip install fitz #please install fitz first, else it may crush with PyMuPDF
pip install PyMuPDF