Skip to content

Instantly share code, notes, and snippets.

@aspose-com-kb
Last active July 8, 2024 18:16
Show Gist options
  • Save aspose-com-kb/a8518e1b334b07944a1297a353a1bd7a to your computer and use it in GitHub Desktop.
Save aspose-com-kb/a8518e1b334b07944a1297a353a1bd7a to your computer and use it in GitHub Desktop.
Convert Image to EPS in Python. For more details: https://kb.aspose.com/page/python/convert-image-to-eps-in-python/
import aspose.page
from aspose.page.eps import *
from aspose.page.eps.device import *
from aspose.page.eps.xmp import *
# Create default options
options = PsSaveOptions()
# Save image to EPS format
PsDocument.save_image_as_eps("sample_image.jpg", "output1.eps", options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment