save_image_as_eps method
Contents
[
Hide
]save_image_as_eps
Saves PNG/JPEG/TIFF/BMP/GIF/EMF image from input stream to EPS output stream.
def save_image_as_eps(self, image_stream, eps_stream, options):
...
Parameter | Type | Description |
---|---|---|
image_stream | io.RawIOBase | Image input stream. |
eps_stream | io.RawIOBase | EPS output stream. |
options | aspose.page.eps.device.PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
save_image_as_eps
Saves PNG/JPEG/TIFF/BMP/GIF/EMF image from file to EPS file.
def save_image_as_eps(self, image_file_path, eps_file_path, options):
...
Parameter | Type | Description |
---|---|---|
image_file_path | str | The image file path. |
eps_file_path | str | EPS file path. |
options | aspose.page.eps.device.PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
save_image_as_eps
Saves Bitmap object to EPS file.
def save_image_as_eps(self, image, eps_file_path, options):
...
Parameter | Type | Description |
---|---|---|
image | aspose.pydrawing.Bitmap | The image. |
eps_file_path | str | EPS file path. |
options | aspose.page.eps.device.PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
save_image_as_eps
Saves Bitmap object to EPS output stream.
def save_image_as_eps(self, image, eps_stream, options):
...
Parameter | Type | Description |
---|---|---|
image | aspose.pydrawing.Bitmap | The image. |
eps_stream | io.RawIOBase | EPS output stream. |
options | aspose.page.eps.device.PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
See Also
- module
aspose.page.eps
- class
PsDocument