Hi i'm trying to automate PDF to HTML conversion on my linux cloud using Adobe Acrobat SDK. I know there are a lot of PDF to HTML packages out there but nothing preserves the layout of my pdf as Adobe does. Is there a way to call Adobe Acrobat services from my python script on a linux machine? I'm ready to pay for the SDK. Note: I tried to buy Adobe Acrobat but they explicitly stated that it's only for Mac and Windows.
I'm using Adobe Acrobat DC on my windows pc and is working flawlessly.
src = 'location to pdf file'
AvDoc = Dispatch("AcroExch.AVDoc")
if AvDoc.Open(src, ""):
pdDoc = AvDoc.GetPDDoc()
jsObject = pdDoc.GetJSObject()
jsObject.SaveAs(filename+ ".html", "com.adobe.acrobat.html")
i need the same on my Ubuntu machine. Is there a way to install Adobe Acrobat 2021 SDK on my ubuntu machine? or any other API services from adobe? Please help.