PsDocument.PsDocument
Contents
[
Hide
]PsDocument()
Initializes empty PsDocument. This constructor is used only for additional operations that are not related to PostScript files, for example, converting fonts.
public PsDocument()
See Also
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(string, PsSaveOptions)
Initializes empty PsDocument with initialized page.
public PsDocument(string outPsFilePath, PsSaveOptions options)
| Parameter | Type | Description |
|---|---|---|
| outPsFilePath | String | The output PS/EPS file path. |
| options | PsSaveOptions | A set of parameters controlling saving of PostScript file. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(Stream, PsSaveOptions)
Initializes empty PsDocument with initialized page.
public PsDocument(Stream outPsStream, PsSaveOptions options)
| Parameter | Type | Description |
|---|---|---|
| outPsStream | Stream | Stream where to save PS/EPS file. |
| options | PsSaveOptions | A set of parameters controlling saving of PostScript file. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(string, PsSaveOptions, bool)
Initializes empty PsDocument.
public PsDocument(string outPsFilePath, PsSaveOptions options, bool multipaged)
| Parameter | Type | Description |
|---|---|---|
| outPsFilePath | String | The output PS/EPS file path. |
| options | PsSaveOptions | A set of parameters controlling saving of PostScript file. |
| multipaged | Boolean | If false page will not be initialized. In this case page initialization should be performed via explicit “openPage(width, height) call. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(Stream, PsSaveOptions, bool)
Initializes empty PsDocument.
public PsDocument(Stream outPsStream, PsSaveOptions options, bool multipaged)
| Parameter | Type | Description |
|---|---|---|
| outPsStream | Stream | Stream where to save PS/EPS file. |
| options | PsSaveOptions | A set of parameters controlling saving of PostScript file. |
| multipaged | Boolean | If false page will not be initialized. In this case page initialization should be performed via explicit “openPage(width, height) call. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(string, PsSaveOptions, int)
Initializes empty PsDocument when the number of Postscript document pages is known in advance.
public PsDocument(string outPsFilePath, PsSaveOptions options, int numberOfPages)
| Parameter | Type | Description |
|---|---|---|
| outPsFilePath | String | The output PS/EPS file path. |
| options | PsSaveOptions | A set of parameters controlling saving of PostScript file. |
| numberOfPages | Int32 | The number of pages in the PostScript document. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(Stream, PsSaveOptions, int)
Initializes empty PsDocument when the number of Postscript document pages is known in advance.
public PsDocument(Stream outPsStream, PsSaveOptions options, int numberOfPages)
| Parameter | Type | Description |
|---|---|---|
| outPsStream | Stream | Stream where to save PS/EPS file. |
| options | PsSaveOptions | A set of parameters controlling saving of PostScript file. |
| numberOfPages | Int32 | The number of pages in the PostScript document. |
See Also
- class PsSaveOptions
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(string)
Initializes PsDocument with an input PS/EPS file.
public PsDocument(string psFilePath)
| Parameter | Type | Description |
|---|---|---|
| psFilePath | String | PS/EPS file path. |
See Also
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page
PsDocument(Stream)
Initializes PsDocument with a stream of PS/EPS file.
public PsDocument(Stream inPsStream)
| Parameter | Type | Description |
|---|---|---|
| inPsStream | Stream | Input stream of PS/EPS file. |
See Also
- class PsDocument
- namespace Aspose.Page.EPS
- assembly Aspose.Page