PsDocument.SaveImageAsEps

SaveImageAsEps(Stream, Stream, PsSaveOptions)

Saves PNG/JPEG/TIFF/BMP/GIF/EMF image from input stream to EPS output stream.

public static void SaveImageAsEps(Stream imageStream, Stream epsStream, PsSaveOptions options)
ParameterTypeDescription
imageStreamStreamImage input stream.
epsStreamStreamEPS output stream.
optionsPsSaveOptionsContains parameters that specify output of errors thrown during conversion.

See Also


SaveImageAsEps(string, string, PsSaveOptions)

Saves PNG/JPEG/TIFF/BMP/GIF/EMF image from file to EPS file.

public static void SaveImageAsEps(string imageFilePath, string epsFilePath, PsSaveOptions options)
ParameterTypeDescription
imageFilePathStringThe image file path.
epsFilePathStringEPS file path.
optionsPsSaveOptionsContains parameters that specify output of errors thrown during conversion.

See Also


SaveImageAsEps(Bitmap, string, PsSaveOptions)

Saves Bitmap object to EPS file.

public static void SaveImageAsEps(Bitmap image, string epsFilePath, PsSaveOptions options)
ParameterTypeDescription
imageBitmapThe image.
epsFilePathStringEPS file path.
optionsPsSaveOptionsContains parameters that specify output of errors thrown during conversion.

See Also


SaveImageAsEps(Bitmap, Stream, PsSaveOptions)

Saves Bitmap object to EPS output stream.

public static void SaveImageAsEps(Bitmap image, Stream epsStream, PsSaveOptions options)
ParameterTypeDescription
imageBitmapThe image.
epsStreamStreamEPS output stream.
optionsPsSaveOptionsContains parameters that specify output of errors thrown during conversion.

See Also