PsDocument.SaveImageAsEps
Contents
[
Hide
]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)
Parameter | Type | Description |
---|---|---|
imageStream | Stream | Image input stream. |
epsStream | Stream | EPS output stream. |
options | PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
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)
Parameter | Type | Description |
---|---|---|
imageFilePath | String | The image file path. |
epsFilePath | String | EPS file path. |
options | PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
SaveImageAsEps(Bitmap, string, PsSaveOptions)
Saves Bitmap object to EPS file.
public static void SaveImageAsEps(Bitmap image, string epsFilePath, PsSaveOptions options)
Parameter | Type | Description |
---|---|---|
image | Bitmap | The image. |
epsFilePath | String | EPS file path. |
options | PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
SaveImageAsEps(Bitmap, Stream, PsSaveOptions)
Saves Bitmap object to EPS output stream.
public static void SaveImageAsEps(Bitmap image, Stream epsStream, PsSaveOptions options)
Parameter | Type | Description |
---|---|---|
image | Bitmap | The image. |
epsStream | Stream | EPS output stream. |
options | PsSaveOptions | Contains parameters that specify output of errors thrown during conversion. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page