How to use TCPDF to output pdf file in browser without saving like in ezpdf?
|
Use
|
|||
|
|
|
Print the PDF header (using header() function) like:
and then just echo the content of the PDF file you created (instead of writing it to disk). |
||||
|
|
|
I've been using the Output("doc.pdf", "I"); and it doesn't work, I'm always asked for saving the file. I took a look in documentation and found that: I: send the file inline to the browser (default). The plug-in is used if available. The name given by name is used when one selects the "Save as" option on the link generating the PDF. http://www.tcpdf.org/doc/classTCPDF.html#a3d6dcb62298ec9d42e9125ee2f5b23a1 Then I think you have to use a plugin to print it, otherwise it is going to be downloaded... |
|||
|
|
|
It works with
It is perhaps easier to remember ( |
||||
|
|