-1

Is there any converter using which I can convert .jpg,.png,.xls,.doc,.gif,.rtf,.csv,.txt file type to PDF using Codeigniter?

Dipanwita Das
  • 329
  • 2
  • 6
  • 15
  • What do you mean 'any file type'? How do you want convert to pdf MP3 for example? – Evgeny Jan 06 '16 at 09:50
  • https://pdfcrowd.com/blog/2011/04/18/convert-html-to-pdf-in-php.html may be its helpful @Dipanwita Das – Mayank Vadiya Jan 06 '16 at 09:51
  • Possible duplicate of [Convert HTML + CSS to PDF with PHP?](http://stackoverflow.com/questions/391005/convert-html-css-to-pdf-with-php) – synan54 Jan 06 '16 at 09:53

1 Answers1

0

try pandoc it's a document converter. you can call it via exec. to convert the images you have to create a document first. e.g. a html file there are a lot of examples on the demo site. To convert to pdf you need LaTeX installed.

older versions of libreoffice (up to 4.2.4.2) can convert doc, xls,... to pdf - (maybe the current version has fixed the function to create pdf).

additionally you could create your own pdf with PDF

lumos0815
  • 3,908
  • 2
  • 25
  • 25