I am trying to use the python library Pillow (which is a fork of PIL) in an ABAQUS plug-in. I have installed pillow (Pillow-2.3.0.win-amd64-py2.6.exe) and used it successfully with python 2.6.6. When I try and use it with abaqus python, I get a C++ runtime error.
I am using ABAQUS v6.13-1...
I have a odb file which is ~1.6Gb in size. It contains 1 step with 7 frames. I am writing a GUI plug-in which needs to loop through all the steps and all the frames. A cut down version of the code I use to do this is as follows:
odb = openOdb(path=self.owner.odbNameKw.getValue())
nstep =...