Converting .doc, .docx to pdf conversion using php code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vullivijaya
    New Member
    • Sep 2016
    • 3

    #1

    Converting .doc, .docx to pdf conversion using php code

    Hi , I need help in converting .doc and .docx files. when it is uploaded using php need to be convert into pdf using php. both .doc and .docx files has to be convert into pdf. exact format in the word document. even though word document have images , styles and colors
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    for reading .doc you'd need the COM module, which is only available on windows servers. and even for the other cases it's almost impossible to do an exact conversion.

    your best bet is to open the uploaded document in MS Word, export it, and upload the PDF.

    Comment

    • vullivijaya
      New Member
      • Sep 2016
      • 3

      #3
      Thanks for your reply. But I need it in linux server. i completed .docx to pdf conversion using gears/pdf but i am unable to convert .doc to pdf. if you know other information pls let me know

      thanks

      Comment

      • Dormilich
        Recognized Expert Expert
        • Aug 2008
        • 8694

        #4
        you cannot convert a .doc on a linux server. period.

        Comment

        • vullivijaya
          New Member
          • Sep 2016
          • 3

          #5
          at least shall we convert .doc to .docx using php code on linux server

          Comment

          • Dormilich
            Recognized Expert Expert
            • Aug 2008
            • 8694

            #6
            not possible for the same reasons. .doc is a closed source format by MS.

            Comment

            Working...