PsDocument.CropEps

CropEps(string, float[])

Crops given PsDocument as EPS file. It saves initial EPS file with updated existing %%BoundingBox or new one will be created.

public void CropEps(string outEpsFilePath, float[] cropBox)
ParameterTypeDescription
outEpsFilePathStringThe output EPS file path.
cropBoxSingle[]The crop box (x0, y0, x, y).

See Also


CropEps(Stream, float[])

Crops given PsDocument as EPS file. It saves initial EPS file with updated existing %%BoundingBox or new one will be created.

public void CropEps(Stream epsStream, float[] cropBox)
ParameterTypeDescription
epsStreamStreamStream of output EPS file.
cropBoxSingle[]The crop box (x0, y0, x, y).

See Also