I need to convert any file to PDF Preview if I click the document link in a table: Table Image link
Asked
Active
Viewed 726 times
1
-
4Possible duplicate of [How do I convert a PDF document to a preview image in PHP?](https://stackoverflow.com/questions/467793/how-do-i-convert-a-pdf-document-to-a-preview-image-in-php) – EGC Oct 10 '19 at 02:37
-
Also check out: https://www.geeksforgeeks.org/how-to-convert-a-pdf-document-to-a-preview-image-in-php/ – EGC Oct 10 '19 at 02:38
-
How did this get 3 upvotes? – Sebastiaan van den Broek Aug 05 '22 at 16:23
1 Answers
-3
This code only for image to pdf convert.
If you have ImageMagick installed and exec
permissions,
exec("convert foo.jpeg foo.pdf");
Below link for convert Word doc, docx and Excel xls, xlsx to PDF with PHP

M'Gwala
- 1
- 2