PdfPageEditor.Save

Save(string)

Saves changed document into file.

public override void Save(string outputFile)
ParameterTypeDescription
outputFileStringPath 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


Save(Stream)

Saves changed document into stream.

public override void Save(Stream outputStream)
ParameterTypeDescription
outputStreamStreamStream 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