Recently I found, that Google Docs have their own PHP API. Honestly I haven't read it all, but I wonder is it possible If for example I have XML file or just text string in variable and I would like to convert it and create PDF file from it ( for example ), then would it be possible? Or even if it is possible it would take a lot of time to process?

link|improve this question

2  
I'm not sure, but do you know that you don't need Google Docs to make a pdf using php? php.net/manual/en/book.pdf.php – Jeff Jun 13 '11 at 15:14
Yes, I know. I know, that there's many different libraries for that purpose, but most of them aren't automated. Some of them need to hursh html template representation and some of them are just $ which is not an option in open source world, but if google docs api is same as loading *.txt file and then downloading it as *.pdf (like in google docs), then it definitely has a plus from me. – Eugene Jun 13 '11 at 15:19
@Jeff Also I forgot to mansion, that on most shared servers you can't install extensions with PECL. At least from my experience. And if I'm not mistaking, then exactly this pdflib.com library isn't free. – Eugene Jun 13 '11 at 15:24
1  
Why don't you look into fpdf.org ? It looks like it's free and you don't need to install any extensions. – Jeff Jun 13 '11 at 15:31
@Jeff I will take it into consideration, but I'm interested at the moment in google docs api possibilities. – Eugene Jun 14 '11 at 9:52
feedback

1 Answer

up vote 0 down vote accepted

Yes, this is possible. Slightly time consuming as you will have to format the PDF.. I suggest using a class like FPDF or EZPDF, to create the PDF output from PHP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.