PsDocument.Save

Save(Device, SaveOptions)

Saves PS/EPS file to a device.

[Obsolete("Save is deprecated beginning from 24.3, please use SaveAsPdf or SaveAsImage instead. In 24.6 this method will be hidden")]
public override void Save(Device device, SaveOptions options)
ParameterTypeDescription
deviceDeviceAn output device.
optionsSaveOptionsContains flags that specify output of errors thrown during conversion.

See Also


Save(Stream)

Saves given PsDocument as EPS file. This method is used only after updating XMP metadata. It saves initial EPS file with updated existing metadata or new one created while calling GetMetadata method. In the last case all necessary PostScript code and EPS comments are added.

public void Save(Stream epsStream)
ParameterTypeDescription
epsStreamStreamStream of output EPS file.

See Also


Save()

Saves given PsDocument as EPS file. This method is used only when PsDocument was created from scratch.

public void Save()

See Also