I have written a script in python using pywin32 to save pdf files to text, up until very recently it has worked fine. I use similar methods to control Excel. The code is below:

def __pdf2Txt(self, pdf, fileformat="com.adobe.acrobat.accesstext"):
    outputLoc = os.path.dirname(pdf)
    outputLoc = os.path.join(outputLoc, os.path.splitext(os.path.basename(pdf))[0] + '.txt')

    try:
        win32com.client.gencache.EnsureModule('{E64169B3-3592-47d2-816E-602C5C13F328}', 0, 1, 1)
        adobe = win32com.client.DispatchEx('AcroExch.App')
        pdDoc = win32com.client.DispatchEx('AcroExch.PDDoc')
        pdDoc.Open(pdf)
        jObject = pdDoc.GetJSObject()
        jObject.SaveAs(outputLoc, "com.adobe.acrobat.accesstext")
    except:
        traceback.print_exc()
        return False
    finally:
        del jObject
        pdDoc.Close()
        del pdDoc
        adobe.Exit()
        del adobe

However this code has suddenly stopped working and I get the following output:

Traceback (most recent call last):
  File "C:\Documents and Settings\ablishen\workspace\HooverKeyCreator\src\HooverKeyCreator.py", line 38, in __pdf2Txt
    jObject.SaveAs(outputLoc, "com.adobe.acrobat.accesstext")
  File "C:\Python27\lib\site-packages\win32com\client\dynamic.py", line 505, in __getattr__
    ret = self._oleobj_.Invoke(retEntry.dispid,0,invoke_type,1)
com_error: (-2147467263, 'Not implemented', None, None)
False

I have similar code written in vb that works correctly so I'm guessing that it has somthing to do with the COM interfaces not binding to the appropriate functions correctly? (my COM knowledge is patchy). I am at a loss as to how to fix this, any help would be greatly appreciated.

link|improve this question
2  
Does this PDF have save usage rights? (Wild guess based on this from docs: "This method is available in Adobe Reader for documents that have Save usage rights.) – Steven Rumbalski Feb 21 at 19:13
It didn't seem to but I enabled them and still get the same error. Plus I am using adobe acrobat to run the code. – Blish Feb 22 at 11:05
feedback

1 Answer

Did you run Makepy for Adobe Acrobat?

link|improve this answer
I have run it for the Adobe Acrobat 9.0 Type Library. – Blish Feb 22 at 11:05
I have no documentation for this, but are you sure that jObject is something you can save like this (and not pdDoc, for example?) Can you examine via reflection the contents of that jObject? – malenkiy_scot Feb 22 at 11:22
Calling SaveAs on the javascript object instructs acrobat to save open pdf as text. I've tried refection but I can only return the attributes of the python wrapper object not the Javascript object (I wonder if it's even there). – Blish Feb 22 at 12:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.