Unable to Extract Readable Text from .EPS File Using Python and Ghostscript
Goal: I want to translate the text within an .eps file.
To achieve this, I am using Python along with Ghostscript to extract text from the .eps file. However, instead of readable text, I am getting garbage or encoded values (e.g.,
㻨㻯㼍㼞㼞㼕㼑㼞㻌㼠㼞㼡㼏㼗㻪,
㻨㼀㼛㼣㼕㼚㼓㻌㼠㼞㼡㼏㼗㻌㻔㼍㼘㼘㻌㼣㼔㼑㼑㼘㼟㻌㼘㼕㼒㼠㼑㼐㻕㻪,
㻟㻜㻠㻡㻤㻢㻱
).
How can I extract the actual text from the .eps file so that I can translate it and then reinsert the translated text back into the same positions in the .eps file to produce a translated version?
I have also attached the source .eps file for reference.

