I just tested psdparser, my objective is to automatically remove some layers of my psd.
In a first time I juste tried to call the first function : parse() but got immediately an error
Here is my code
from psdparse.psdparse.psdparser import PSDParser
myparser = PSDParser("planche1_v3.psd")
myparser.parse()
I got a problem in parse_header() with self.header['sig']
Here is the error :
ValueError: Not a PSD signature: 'b'8BPS''
thank's for your help !