Can I use the Google Docs API to convert a text string to PDF

I recently discovered that Google Docs has its own PHP API . Honestly, I have not read all this, but I wonder if this is possible if I have an XML file or just a text string in a variable and I would like to convert it and create a possible (for example) PDF file from it? Or, even if possible, will it take a long time to process?

+3
source share
1 answer

Yes it is possible. A bit of a lot of time, since you have to format the PDF. I suggest using a class like FPDF or EZPDF to create a PDF file from PHP.

0
source

All Articles