PdfPageEditor.Save
Contents
[
Hide
]Save(string)
Saves changed document into file.
public override void Save(string outputFile)
Parameter | Type | Description |
---|---|---|
outputFile | String | Path to file where document will be saved. |
Examples
The following sample demonstrates how to save changed PDF document
PdfPageEditor editor = new PdfPageEditor();
editor.BindPdf("sample.pdf");
editor.Zoom = 0.5f;
editor.Save("newdocument.pdf");
See Also
- class PdfPageEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
Save(Stream)
Saves changed document into stream.
public override void Save(Stream outputStream)
Parameter | Type | Description |
---|---|---|
outputStream | Stream | Stream where changed PDF document will be saved. |
Examples
The following sample demonstrates how to save changed PDF document into stream.
PdfPageEditor editor = new PdfPageEditor();
editor.BindPdf("sample.pdf");
editor.Zoom = 0.5f;
editor.Save("newdocument.pdf");
See Also
- class PdfPageEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF