How do I add unicode font in my GAE application using PyFPDF?
I have gone through the tutorials on: https://pyfpdf.readthedocs.io/en/latest/Unicode/index.html#metric-files
FPDF will try to automatically generate metrics (i.e. character widths) about TTF font files to speed up their processing.
Such metrics are stored using the Python Pickle format (.pkl extension), by default in the font directory (ensure read and write permission!). Additional information about the caching mechanism is defined in the add_font reference.
The problem here is PyFPDF will create the metrics file (.pkl) in the folder, it required write permission, GAE doesn't allow to write file, how should I do it?
Thank you!
Joel