default clipping to false for performance

This commit is contained in:
Eliot Jones
2020-04-05 17:11:05 +01:00
parent 2998b1b2eb
commit 45ac8c8a60

View File

@@ -17,10 +17,11 @@
};
/// <summary>
/// Should the parser clip paths? Default is true.
/// <para>Bezier curves will be transformed into polylines if clipping is set to true.</para>
/// Should the parser apply clipping to paths?
/// Defaults to <see langword="false"/>.
/// <para>Bezier curves will be transformed into polylines if clipping is set to <see langword="true"/>.</para>
/// </summary>
public bool ClipPaths { get; set; } = true;
public bool ClipPaths { get; set; } = false;
/// <summary>
/// Should the parser ignore issues where the document does not conform to the PDF specification?