Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Elliot_putt's avatar

How to convert word and image extensions to pdf?

Hi, has anyone had an experience with if the file is not pdf convert it to pdf.

DomPDF only allows . HTML files to load from the file.

if($name["extension"] !== "pdf"){
                    //convert to pdf
}
0 likes
3 replies
Sinnbeck's avatar

Not any file.. I mean how would you convert an mp3.. music.. to pdf?

Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

@Elliot_putt I would handle each as a seperate task. So find a package or cli tool that can convert images to pdf, and implement that. Then do the same for word docs. etc.

Please or to participate in this conversation.