如何将 .ps 文件转换为 .png 文件?

How can I convert a .ps file into a .png file?

我需要将 .ps 文件转换为 .png 文件,作为我正在制作的图像识别程序的一部分。我知道我可以使用 Ghostscript 或其他程序,但是有人可以举一个具体的例子来说明如何编写这样的代码吗:

def ps_to_png(ps_file):
    file = ghostscript.read(ps_file)
    png_file = ghostscript.save(file, "png")
    return png_file

(此代码是 pseudo 代码 - 我想知道如何编写实际执行此代码看起来会执行的操作。) 提前致谢! Stack 是一个很棒的社区,我很感激。

编辑(尝试的解决方案):当运行这一行时:

os.system("ghostscript file.ps file.png")

我收到以下错误:

'ghostscript' is not recognized as an internal or external command, operable program or batch file.

尝试使用 Pillow 时:

from PIL import Image
def convert_to_png(ps_file):
    img = Image.open(ps_file)
    img.save("img.png")

我收到以下错误:

OSError: Unable to locate Ghostscript on paths

您可以使用 Pillow。

from PIL import Image

psimage=Image.open('myImage.ps')
psimage.save('myImage.png')

如果你想把它包装成一个函数:

from PIL import Image

def convert_to_png(path):
    img = Image.open(path)
    img.save("img.png")

path='/path_to_your_file'
convert_to_png(path)