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