Read .DMS file and convert to pdf format in php

936 Views Asked by At

Read the file in folder with .DMS extension and convert to pdf format in php

 $path = "folder/1004.dms";
 $content = file_get_contents($path);
 header('Content-type: application/pdf');
 header('Content-Disposition: attachment; filename="test filename.pdf"');
 echo $content;

This code will generate the PDF but it is not opening the pdf file, any help will be appreciated, Thank you.

0

There are 0 best solutions below