From 45ac8c8a60585c5fbf39a192ef1abb59381f7d1e Mon Sep 17 00:00:00 2001 From: Eliot Jones Date: Sun, 5 Apr 2020 17:11:05 +0100 Subject: [PATCH] default clipping to false for performance --- src/UglyToad.PdfPig/ParsingOptions.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/UglyToad.PdfPig/ParsingOptions.cs b/src/UglyToad.PdfPig/ParsingOptions.cs index b4ffc3b4..55bd92c4 100644 --- a/src/UglyToad.PdfPig/ParsingOptions.cs +++ b/src/UglyToad.PdfPig/ParsingOptions.cs @@ -17,10 +17,11 @@ }; /// - /// Should the parser clip paths? Default is true. - /// Bezier curves will be transformed into polylines if clipping is set to true. + /// Should the parser apply clipping to paths? + /// Defaults to . + /// Bezier curves will be transformed into polylines if clipping is set to . /// - public bool ClipPaths { get; set; } = true; + public bool ClipPaths { get; set; } = false; /// /// Should the parser ignore issues where the document does not conform to the PDF specification?