vote up 2 vote down star
1

I want to display documents on my website. The server is hosted on a Debian machine. I was thinking I can allow the upload of support documents then use a Linux app or PHP app to convert the doc into PDF and display that in an HTML page. Are there any APIs or binaries that allow me to do this?

flag

37% accept rate

6 Answers

vote up 1 vote down check

If it is an office document, one option would be to use openoffice in headless mode. See here for a python script that shows how: http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html

If it is any other kind of document (e.g. your own XML document), then you would need to do a bit more work. I have had some success using XSL to define a translation to docbook format, then using docbook tools to generate the PDF (and various other formats). You could also use XSL to go straight to PDF if you need more precise control over how things look.

link|flag
vote up 1 vote down

You might also want to take a look at http://www.fpdf.org/.

link|flag
vote up 0 vote down

Pear has a PHP PDF class:

http://pear.php.net/package/File_PDF

http://pear.php.net/package/File_PDF/docs/latest/apidoc/File_PDF/File_PDF.html

Nathan Coffield, Support Engineer, HostMySite.com

link|flag
vote up 0 vote down

An alternative method is to generate an HTML file that contains what you need in the pdf. Then use htmldoc to convert it to a PDF.

http://www.easysw.com/htmldoc/

It actually is much easier than directly manipulating the objects in a PDF doc.

link|flag
vote up 0 vote down

You can create a PDF print-to-file printer and send any number of documents to the printer via lpr.

  function lpr($STR,$PRN,$TITLE) {

    $prn=(isset($PRN) && strlen($PRN))?"$PRN":C_DEFAULTPRN ;
    $title=(isset($TITLE))?"$TITLE":"stdin" . rand() ;
    $CMDLINE="lpr -P $prn -T $title";
    $pipe=popen("$CMDLINE" , 'w');
    if (!$pipe) {print "pipe failed."; return ""; }
    fwrite($pipe,$STR);
    pclose($pipe);

  } // lpr()

//open document...
//read into $source
lpr($source, "PDF", $title); //print to device
exit();

Also HTMLDOC can convert your HTML into a PDF.

link|flag
vote up 0 vote down

A relatively new project, called phpLiveDocx can convert DOC to PDF (in addition to a number of other formats). It is a SOAP based service and can be used completely free of charge. For sample code to convert a DOC to PDF using phpLiveDocx, take a look at this recent blog post:

http://www.phplivedocx.org/2009/02/06/convert-doc-to-pdf-in-php/

Of course, as it is SOAP based, it can be used on all operating systems that support PHP :-)

link|flag

Your Answer

Get an OpenID
or

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