I exported some measurements (not image files) from Photoshop in CS4. This page describes the tool in CS6 and up, where the measurements nicely export to a csv with utf-8 encoding. In CS4, it exports as a tab-delimited text, and I can't figure out what the encoding is.
Now I want to read the file in Python using pandas or csv. I've tried utf8
, ISO-8859-1
, US-ASCII
, cp1252
, and latin1
encoding, all of which give me errors (i.e. invalid start byte
, NULL byte
, and EOF inside string
).
How can I read this file?