save_image_as_eps method

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):
    ...
ParameterTypeDescription
image_streamio.RawIOBaseImage input stream.
eps_streamio.RawIOBaseEPS output stream.
optionsaspose.page.eps.device.PsSaveOptionsContains 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):
    ...
ParameterTypeDescription
image_file_pathstrThe image file path.
eps_file_pathstrEPS file path.
optionsaspose.page.eps.device.PsSaveOptionsContains 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):
    ...
ParameterTypeDescription
imageaspose.pydrawing.BitmapThe image.
eps_file_pathstrEPS file path.
optionsaspose.page.eps.device.PsSaveOptionsContains 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):
    ...
ParameterTypeDescription
imageaspose.pydrawing.BitmapThe image.
eps_streamio.RawIOBaseEPS output stream.
optionsaspose.page.eps.device.PsSaveOptionsContains parameters that specify output of errors thrown during conversion.

See Also