I've found a superb HTML to PDF converter in Prince XML. Now I'm looking for something of similar quality to produce Word documents from HTML + CSS. This is on PHP/Linux.
|
2
|
|
|
|
|
|
It might be easier to look for a PDF -> DOC converter instead, if you already have one-half of the problem solved. That said, I don't know of any good PDF -> DOC converters either :( |
||
|
|
|
|
You might want to try sending the HTML file as DOC (similar to how it's described link text, but with the proper Contet-Type header :-)) and let the end-user's system do the conversion (AFAIK you can do something similar with Excel too). |
||
|
|
|
|
OpenOffice can be used in server/headless mode to produce documents in lots of formats. |
||
|
|
|
|
Here is one alternative for pdf => doc. Haven't tried it, good luck! |
||
|
|
|
|
I had to do this a few years ago and ended up rolling my own custom solution. I created a Word document in the format I wanted, saved as HTML, and then added code where required to retrieve text from the database and format the way MS Word likes it. I forced a header to make the client think it was receiving a Word Document instead of an HTML file. Microsoft Word happily opened the file as if it were a regular Word Document. If it were feasible to output a DOCX file instead, you could do an XSL tranform. |
||
|
|
|
|
Three options depending on what you need to do:
None of those are all that easy, so it might be worth buying a software product that does the conversion for you. More info on this question is available in this SO question, as well. |
||
|
|
