├── .gitattributes ├── .gitignore ├── .mailmap ├── BUILDING.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CodeConventions.md ├── ITSC-avatar.png ├── Jenkinsfile ├── LICENSE.md ├── README.md ├── SECURITY.md ├── doxyfile ├── gnu-agpl-v3.0.md ├── itext.cleanup.sln ├── itext.tests └── itext.cleanup.tests │ ├── Properties │ └── AssemblyInfo.cs │ ├── itext.cleanup.tests.csproj │ ├── itext.snk │ ├── itext │ └── pdfcleanup │ │ ├── BigDocumentAutoCleanUpTest.cs │ │ ├── BigDocumentCleanUpTest.cs │ │ ├── CleanUpAnnotationTest.cs │ │ ├── CleanUpCsCompareUtilTest.cs │ │ ├── CleanUpImageUtilTest.cs │ │ ├── CleanUpInvalidPdfTest.cs │ │ ├── CleanUpPropertiesUnitTest.cs │ │ ├── CleanUpTaggedPdfTest.cs │ │ ├── CleanupLicenseEventsTest.cs │ │ ├── FilteredImagesCacheTest.cs │ │ ├── OverlapRatioTest.cs │ │ ├── PdfAutoSweepToolsTest.cs │ │ ├── PdfCleanUpFilterUnitTest.cs │ │ ├── PdfCleanUpProcessorUnitTest.cs │ │ ├── PdfCleanUpToolTest.cs │ │ ├── PdfCleanUpToolWithInlineImagesTest.cs │ │ ├── RectangleTest.cs │ │ ├── TextPositioningTest.cs │ │ ├── UnsupportedImageTypeTest.cs │ │ ├── images │ │ ├── CleanUpImageIndexedColorSpaceTest.cs │ │ ├── CleanUpTransformedImageTest.cs │ │ └── CleanupImageWithColorSpaceTest.cs │ │ ├── text │ │ └── CleanUpTextTest.cs │ │ ├── transparency │ │ └── MaskedImagesTest.cs │ │ └── util │ │ └── CleanUpImagesCompareTool.cs │ └── resources │ └── itext │ └── pdfcleanup │ ├── BigDocumentAutoCleanUpTest │ ├── TheSopranos.pdf │ ├── cleanUpAreaCalculationPrecision.pdf │ ├── cmp_cleanUpAreaCalculationPrecision.pdf │ ├── cmp_redactIPhoneUserManual.pdf │ ├── cmp_redactIPhoneUserManualColored.pdf │ ├── cmp_redactIPhoneUserManualMatchColor.pdf │ ├── cmp_redactTonySoprano.pdf │ ├── iphone_user_guide_untagged.pdf │ └── iphone_user_guide_untagged_small.pdf │ ├── BigDocumentCleanUpTest │ ├── chapter8_Interactive_features.pdf │ ├── cmp_bigTaggedDocument.pdf │ ├── cmp_bigUntaggedDocument.pdf │ ├── cmp_redactIPhoneUserManualMatchColor.pdf │ ├── cmp_textPositioning.pdf │ ├── iphone_user_guide_untagged.pdf │ └── textPositioning.pdf │ ├── CleanUpAnnotationTest │ ├── cleanAnnotation.pdf │ ├── cmp_cleanAnnotation_Line01.pdf │ ├── cmp_cleanAnnotation_Link01.pdf │ ├── cmp_cleanAnnotation_Text01.pdf │ ├── cmp_cleanAnnotation_full01.pdf │ ├── cmp_cleanAnnotation_highlight01.pdf │ ├── cmp_cleanFreeTextAnnotation01.pdf │ ├── cmp_cleanLineAnnotation02.pdf │ ├── cmp_cleanStrikeOutAnnotation01.pdf │ ├── cmp_cleanStrikeOutAnnotation02.pdf │ ├── cmp_formAnnotation01.pdf │ ├── cmp_formAnnotation02.pdf │ ├── cmp_watermarkAnnotation.pdf │ ├── formAnnotation.pdf │ ├── freeTextAnnotation.pdf │ ├── lineAnnotationLeaders.pdf │ ├── strikeOutAnnotQuadOutsideRect.pdf │ └── watermarkAnnotation.pdf │ ├── CleanUpInvalidPdfTest │ └── circularReferencesInResources.pdf │ ├── CleanUpTaggedPdfTest │ ├── cleanImage_full.pdf │ ├── cleanImage_partial.pdf │ ├── cleanPath_full.pdf │ ├── cleanPath_partial.pdf │ ├── cleanText_full.pdf │ ├── cleanText_partial.pdf │ ├── cmp_cleanImage_full.pdf │ ├── cmp_cleanImage_partial.pdf │ ├── cmp_cleanPath_full.pdf │ ├── cmp_cleanPath_partial.pdf │ ├── cmp_cleanText_full.pdf │ └── cmp_cleanText_partial.pdf │ ├── CleanupImageHandlingUtilTest │ └── cleanUpImageEmptyAreasToClean.png │ ├── FilteredImagesCacheTest │ ├── cmp_filteredImagesCacheFlushingTest01.pdf │ ├── cmp_filteredImagesCacheFlushingTest02.pdf │ ├── cmp_filteredImagesCacheTest01.pdf │ ├── cmp_filteredImagesCacheTest02.pdf │ ├── cmp_filteredImagesCacheTest03.pdf │ ├── cmp_filteredImagesCacheTest04.pdf │ ├── itis.jpg │ ├── itis2.jpg │ ├── multipleDifferentImageXObjectOccurrences.pdf │ ├── multipleImageXObjectOccurrences.pdf │ ├── multipleScaledImageXObjectOccurrences.pdf │ └── severalImageXObjectOccurrences.pdf │ ├── OverlapRatioTest │ ├── cmp_differentTextRenderInfo_.000_redact.pdf │ ├── cmp_differentTextRenderInfo_.001_redact.pdf │ ├── cmp_differentTextRenderInfo_.100_redact.pdf │ ├── cmp_differentTextRenderInfo_.200_redact.pdf │ ├── cmp_differentTextRenderInfo_.300_redact.pdf │ ├── cmp_differentTextRenderInfo_.400_redact.pdf │ ├── cmp_differentTextRenderInfo_.500_redact.pdf │ ├── cmp_differentTextRenderInfo_.600_redact.pdf │ ├── cmp_differentTextRenderInfo_.700_redact.pdf │ ├── cmp_differentTextRenderInfo_.800_redact.pdf │ ├── cmp_differentTextRenderInfo_.900_redact.pdf │ ├── cmp_differentTextRenderInfo_1.000_redact.pdf │ ├── cmp_redact_aspect_ratio_0_simple.pdf │ ├── cmp_redact_aspect_ratio_1_simple.pdf │ ├── cmp_redact_aspect_ratio_simple.pdf │ ├── cmp_wo_redact_aspect_ratio_simple.pdf │ ├── differentTextRenderInfo.pdf │ └── redact_aspect_ratio_simple.pdf │ ├── PdfAutoSweepTest │ ├── Lipsum.pdf │ ├── cmp_highlightTest.pdf │ ├── cmp_lineArtsDrawingOnCanvas.pdf │ ├── cmp_tentativeCleanUp.pdf │ ├── lineArtsDrawingOnCanvas.pdf │ └── noninvertibleMatrix.pdf │ ├── PdfCleanUpToolTest │ ├── BigImage-jpg.pdf │ ├── BigImage-png.pdf │ ├── BigImage-tif-lzw.pdf │ ├── BigImage-tif.pdf │ ├── DirectPropertyObject.pdf │ ├── Lipsum.pdf │ ├── absentICentry.pdf │ ├── bigOne.pdf │ ├── clipPathReduction.pdf │ ├── clippingNWRule.pdf │ ├── closedBezier.pdf │ ├── cmp_BigImage-jpg.pdf │ ├── cmp_BigImage-png.pdf │ ├── cmp_BigImage-tif-lzw.pdf │ ├── cmp_BigImage-tif.pdf │ ├── cmp_DirectPropertyObject.pdf │ ├── cmp_absentICentry.pdf │ ├── cmp_autoCleanPageTest.pdf │ ├── cmp_autoCleanPageWithAdditionalLocationAndPropertyTest.pdf │ ├── cmp_autoCleanPageWithAdditionalLocationTest.pdf │ ├── cmp_autoCleanWithCleaUpPropertiesTest.pdf │ ├── cmp_autoCleanWithFalseProcessAnnotationTest.pdf │ ├── cmp_autoCleanWithLocationAndStreamParamsTest.pdf │ ├── cmp_autoSweepCleanUpWithAdditionalLocationTest.pdf │ ├── cmp_bigOne.pdf │ ├── cmp_cleanUpDocument.pdf │ ├── cmp_cleanUpPage.pdf │ ├── cmp_cleanUpStreamParamsTest.pdf │ ├── cmp_clipPathReduction.pdf │ ├── cmp_clippingNWRule.pdf │ ├── cmp_closedBezier.pdf │ ├── cmp_complexTextPositioning.pdf │ ├── cmp_corruptJpeg.pdf │ ├── cmp_dashedBezier.pdf │ ├── cmp_dashedClosedRotatedTriangles.pdf │ ├── cmp_dashedStyledClosedBezier.pdf │ ├── cmp_degenerateCases.pdf │ ├── cmp_emptyPdf.pdf │ ├── cmp_emptyTj01.pdf │ ├── cmp_emptyTj02.pdf │ ├── cmp_fontCleanup.pdf │ ├── cmp_fullyFilteredImageDocument.pdf │ ├── cmp_helloHelvetica.pdf │ ├── cmp_helloHelvetica02.pdf │ ├── cmp_hello_05.pdf │ ├── cmp_incorrectBDCToBMCTest.pdf │ ├── cmp_inlineImages_full.pdf │ ├── cmp_lineArtsCompletely.pdf │ ├── cmp_lineArtsPartially.pdf │ ├── cmp_lineArtsSimple.pdf │ ├── cmp_line_chart.pdf │ ├── cmp_lotOfDashes.pdf │ ├── cmp_maskImage.pdf │ ├── cmp_miterTest.pdf │ ├── cmp_multiUseImage.pdf │ ├── cmp_multiUseIndirect.pdf │ ├── cmp_newLines01.pdf │ ├── cmp_newLines02.pdf │ ├── cmp_newLines03.pdf │ ├── cmp_noPropertiesInResourcesTest.pdf │ ├── cmp_noninvertibleMatrix.pdf │ ├── cmp_noninvertibleMatrixRemoveAllTest.pdf │ ├── cmp_noninvertibleMatrixRemoveAllTest02.pdf │ ├── cmp_noninvertibleMatrixRemoveNothingTest.pdf │ ├── cmp_page166_03.pdf │ ├── cmp_page166_04.pdf │ ├── cmp_page229-modified-Tc-Tw.pdf │ ├── cmp_page229_01.pdf │ ├── cmp_pathAndIncorrectCM.pdf │ ├── cmp_redactLipsumPatternStartsWithWhitespace.pdf │ ├── cmp_redactPdfWithNoninvertibleMatrix.pdf │ ├── cmp_rotatedImg.pdf │ ├── cmp_simpleCleanUpOnRotatedPages.pdf │ ├── cmp_simpleCleanUpOnRotatedPagesIgnoreRotation.pdf │ ├── cmp_simpleImmediate-tm.pdf │ ├── cmp_simpleImmediate.pdf │ ├── cmp_styledLineArts.pdf │ ├── cmp_textAndImages.pdf │ ├── cmp_wholePageCleanUp.pdf │ ├── corruptJpeg.pdf │ ├── dashedBezier.pdf │ ├── dashedClosedRotatedTriangles.pdf │ ├── dashedStyledClosedBezier.pdf │ ├── degenerateCases.pdf │ ├── documentWithRotatedPages.pdf │ ├── emptyPdf.pdf │ ├── emptyTj01.pdf │ ├── emptyTj02.pdf │ ├── fontCleanup.pdf │ ├── fullyFilteredImageDocument.pdf │ ├── helloHelvetica.pdf │ ├── helloHelvetica02.pdf │ ├── hello_05.pdf │ ├── incorrectBDCToBMCTest.pdf │ ├── inlineImages.pdf │ ├── lineArtsCompletely.pdf │ ├── lineArtsPartially.pdf │ ├── lineArtsSimple.pdf │ ├── line_chart.pdf │ ├── lotOfDashes.pdf │ ├── maskImage.pdf │ ├── miterTest.pdf │ ├── multiUseImage.pdf │ ├── multiUseIndirect.pdf │ ├── newLines01.pdf │ ├── newLines02.pdf │ ├── newLines03.pdf │ ├── new_york_times.pdf │ ├── noPropertiesInResourcesTest.pdf │ ├── noninvertibleMatrix.pdf │ ├── page166_03.pdf │ ├── page166_04.pdf │ ├── page229-modified-Tc-Tw.pdf │ ├── page229.pdf │ ├── pathAndIncorrectCM.pdf │ ├── rotatedImg.pdf │ ├── simpleImmediate-tm.pdf │ ├── simpleImmediate.pdf │ ├── styledLineArts.pdf │ └── viewer_prefs_dict_table.pdf │ ├── PdfCleanUpToolWithInlineImagesTest │ ├── cmp_inlineImageCleanup.pdf │ ├── cmp_inlineImages_partial.pdf │ ├── cmp_inlineImages_partial2.pdf │ ├── inlineImageCleanup.pdf │ └── inlineImages.pdf │ ├── RectangleTest │ └── cmp_zeroWidthLine.pdf │ ├── UnsupportedImageTypeTest │ ├── JpegCmykImage.pdf │ └── cmp_JpegCmykImage.pdf │ ├── images │ ├── CleanUpImageIndexedColorSpaceTest │ │ ├── cmp_indexedImageNoWhite.pdf │ │ └── indexedImageNoWhite.pdf │ ├── CleanUpTransformedImageTest │ │ ├── cmp_skewedRgbImage.pdf │ │ ├── skewedGrayImage.pdf │ │ └── skewedRgbImage.pdf │ └── CleanupImageWithColorSpaceTest │ │ ├── cmp_imgSeparationCs.pdf │ │ ├── cmp_imgSeparationCsJpegBaselineEncoded.pdf │ │ ├── cmp_imgSeparationCsJpegBaselineEncodedWithApp14Segment.pdf │ │ ├── imgSeparationCs.pdf │ │ ├── imgSeparationCsJpegBaselineEncoded.pdf │ │ └── imgSeparationCsJpegBaselineEncodedWithApp14Segment.pdf │ ├── text │ └── CleanUpTextTest │ │ ├── cleanZeroWidthTextInvalidFont.pdf │ │ └── cmp_cleanZeroWidthTextInvalidFont.pdf │ └── transparency │ └── MaskedImagesTest │ ├── cmp_imageColorKeyMaskArray.pdf │ ├── cmp_imageIsMask.pdf │ ├── cmp_imageMask.pdf │ ├── cmp_imageSMask.pdf │ ├── cmp_imageSMaskAIS.pdf │ ├── cmp_textOnTransparentField.pdf │ ├── imageColorKeyMaskArray.pdf │ ├── imageIsMask.pdf │ ├── imageMask.pdf │ ├── imageSMask.pdf │ ├── imageSMaskAIS.pdf │ └── textOnTransparentField.pdf ├── itext └── itext.cleanup │ ├── Properties │ └── AssemblyInfo.cs │ ├── itext.cleanup.csproj │ ├── itext.snk │ └── itext │ └── pdfcleanup │ ├── CleanUpExtensions.cs │ ├── CleanUpProperties.cs │ ├── FilteredImagesCache.cs │ ├── LineDashPattern.cs │ ├── PathOffsetApproximationProperties.cs │ ├── PdfCleanUpEventListener.cs │ ├── PdfCleanUpFilter.cs │ ├── PdfCleanUpLocation.cs │ ├── PdfCleanUpProcessor.cs │ ├── PdfCleanUpTool.cs │ ├── PdfCleaner.cs │ ├── TextPositioning.cs │ ├── actions │ ├── data │ │ └── PdfSweepProductData.cs │ └── event │ │ └── PdfSweepProductEvent.cs │ ├── autosweep │ ├── CommonRegex.cs │ ├── CompositeCleanupStrategy.cs │ ├── ICleanupStrategy.cs │ ├── PdfAutoSweepTools.cs │ └── RegexBasedCleanupStrategy.cs │ ├── exceptions │ └── CleanupExceptionMessageConstant.cs │ ├── logs │ └── CleanUpLogMessageConstant.cs │ └── util │ ├── CleanUpCsCompareUtil.cs │ ├── CleanUpHelperUtil.cs │ └── CleanUpImageUtil.cs ├── nuget.config ├── pdfSweep.nuspec └── port-hash /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/.mailmap -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CodeConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/CodeConventions.md -------------------------------------------------------------------------------- /ITSC-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/ITSC-avatar.png -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/doxyfile -------------------------------------------------------------------------------- /gnu-agpl-v3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/gnu-agpl-v3.0.md -------------------------------------------------------------------------------- /itext.cleanup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.cleanup.sln -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext.cleanup.tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext.cleanup.tests.csproj -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext.snk -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/BigDocumentAutoCleanUpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/BigDocumentAutoCleanUpTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/BigDocumentCleanUpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/BigDocumentCleanUpTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpAnnotationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpAnnotationTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpCsCompareUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpCsCompareUtilTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpImageUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpImageUtilTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpInvalidPdfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpInvalidPdfTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpPropertiesUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpPropertiesUnitTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpTaggedPdfTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanUpTaggedPdfTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanupLicenseEventsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/CleanupLicenseEventsTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/FilteredImagesCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/FilteredImagesCacheTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/OverlapRatioTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/OverlapRatioTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfAutoSweepToolsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfAutoSweepToolsTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpFilterUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpFilterUnitTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpProcessorUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpProcessorUnitTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpToolTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpToolTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/RectangleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/RectangleTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/TextPositioningTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/TextPositioningTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/UnsupportedImageTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/UnsupportedImageTypeTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/images/CleanUpTransformedImageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/images/CleanUpTransformedImageTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/text/CleanUpTextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/text/CleanUpTextTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/transparency/MaskedImagesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/transparency/MaskedImagesTest.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/itext/pdfcleanup/util/CleanUpImagesCompareTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/itext/pdfcleanup/util/CleanUpImagesCompareTool.cs -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/TheSopranos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/TheSopranos.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cleanUpAreaCalculationPrecision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cleanUpAreaCalculationPrecision.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_cleanUpAreaCalculationPrecision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_cleanUpAreaCalculationPrecision.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactIPhoneUserManual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactIPhoneUserManual.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactIPhoneUserManualColored.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactIPhoneUserManualColored.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactIPhoneUserManualMatchColor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactIPhoneUserManualMatchColor.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactTonySoprano.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/cmp_redactTonySoprano.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/iphone_user_guide_untagged.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/iphone_user_guide_untagged.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/iphone_user_guide_untagged_small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentAutoCleanUpTest/iphone_user_guide_untagged_small.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/chapter8_Interactive_features.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/chapter8_Interactive_features.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_bigTaggedDocument.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_bigTaggedDocument.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_bigUntaggedDocument.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_bigUntaggedDocument.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_redactIPhoneUserManualMatchColor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_redactIPhoneUserManualMatchColor.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_textPositioning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/cmp_textPositioning.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/iphone_user_guide_untagged.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/iphone_user_guide_untagged.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/textPositioning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/BigDocumentCleanUpTest/textPositioning.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cleanAnnotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cleanAnnotation.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_Line01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_Line01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_Link01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_Link01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_Text01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_Text01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_full01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_full01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_highlight01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanAnnotation_highlight01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanFreeTextAnnotation01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanFreeTextAnnotation01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanLineAnnotation02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanLineAnnotation02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanStrikeOutAnnotation01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanStrikeOutAnnotation01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanStrikeOutAnnotation02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_cleanStrikeOutAnnotation02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_formAnnotation01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_formAnnotation01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_formAnnotation02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_formAnnotation02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_watermarkAnnotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/cmp_watermarkAnnotation.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/formAnnotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/formAnnotation.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/freeTextAnnotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/freeTextAnnotation.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/lineAnnotationLeaders.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/lineAnnotationLeaders.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/strikeOutAnnotQuadOutsideRect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/strikeOutAnnotQuadOutsideRect.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/watermarkAnnotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpAnnotationTest/watermarkAnnotation.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpInvalidPdfTest/circularReferencesInResources.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpInvalidPdfTest/circularReferencesInResources.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanImage_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanImage_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanImage_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanImage_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanPath_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanPath_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanPath_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanPath_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanText_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanText_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanText_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cleanText_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanImage_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanImage_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanImage_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanImage_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanPath_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanPath_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanPath_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanPath_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanText_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanText_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanText_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanUpTaggedPdfTest/cmp_cleanText_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanupImageHandlingUtilTest/cleanUpImageEmptyAreasToClean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/CleanupImageHandlingUtilTest/cleanUpImageEmptyAreasToClean.png -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheFlushingTest01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheFlushingTest01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheFlushingTest02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheFlushingTest02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest03.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/cmp_filteredImagesCacheTest04.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/itis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/itis.jpg -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/itis2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/itis2.jpg -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/multipleDifferentImageXObjectOccurrences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/multipleDifferentImageXObjectOccurrences.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/multipleImageXObjectOccurrences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/multipleImageXObjectOccurrences.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/multipleScaledImageXObjectOccurrences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/multipleScaledImageXObjectOccurrences.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/severalImageXObjectOccurrences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/FilteredImagesCacheTest/severalImageXObjectOccurrences.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.000_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.000_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.001_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.001_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.100_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.100_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.200_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.200_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.300_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.300_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.400_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.400_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.500_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.500_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.600_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.600_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.700_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.700_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.800_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.800_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.900_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_.900_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_1.000_redact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_differentTextRenderInfo_1.000_redact.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_redact_aspect_ratio_0_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_redact_aspect_ratio_0_simple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_redact_aspect_ratio_1_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_redact_aspect_ratio_1_simple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_redact_aspect_ratio_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_redact_aspect_ratio_simple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_wo_redact_aspect_ratio_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/cmp_wo_redact_aspect_ratio_simple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/differentTextRenderInfo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/differentTextRenderInfo.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/redact_aspect_ratio_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/OverlapRatioTest/redact_aspect_ratio_simple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/Lipsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/Lipsum.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/cmp_highlightTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/cmp_highlightTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/cmp_lineArtsDrawingOnCanvas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/cmp_lineArtsDrawingOnCanvas.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/cmp_tentativeCleanUp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/cmp_tentativeCleanUp.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/lineArtsDrawingOnCanvas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/lineArtsDrawingOnCanvas.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/noninvertibleMatrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfAutoSweepTest/noninvertibleMatrix.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-jpg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-jpg.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-png.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-png.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-tif-lzw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-tif-lzw.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-tif.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/BigImage-tif.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/DirectPropertyObject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/DirectPropertyObject.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/Lipsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/Lipsum.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/absentICentry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/absentICentry.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/bigOne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/bigOne.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/clipPathReduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/clipPathReduction.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/clippingNWRule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/clippingNWRule.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/closedBezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/closedBezier.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-jpg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-jpg.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-png.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-png.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-tif-lzw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-tif-lzw.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-tif.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_BigImage-tif.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_DirectPropertyObject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_DirectPropertyObject.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_absentICentry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_absentICentry.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanPageTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanPageTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanPageWithAdditionalLocationAndPropertyTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanPageWithAdditionalLocationAndPropertyTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanPageWithAdditionalLocationTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanPageWithAdditionalLocationTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanWithCleaUpPropertiesTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanWithCleaUpPropertiesTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanWithFalseProcessAnnotationTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanWithFalseProcessAnnotationTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanWithLocationAndStreamParamsTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoCleanWithLocationAndStreamParamsTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoSweepCleanUpWithAdditionalLocationTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_autoSweepCleanUpWithAdditionalLocationTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_bigOne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_bigOne.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_cleanUpDocument.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_cleanUpDocument.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_cleanUpPage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_cleanUpPage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_cleanUpStreamParamsTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_cleanUpStreamParamsTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_clipPathReduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_clipPathReduction.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_clippingNWRule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_clippingNWRule.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_closedBezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_closedBezier.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_complexTextPositioning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_complexTextPositioning.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_corruptJpeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_corruptJpeg.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_dashedBezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_dashedBezier.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_dashedClosedRotatedTriangles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_dashedClosedRotatedTriangles.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_dashedStyledClosedBezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_dashedStyledClosedBezier.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_degenerateCases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_degenerateCases.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_emptyPdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_emptyPdf.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_emptyTj01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_emptyTj01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_emptyTj02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_emptyTj02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_fontCleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_fontCleanup.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_fullyFilteredImageDocument.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_fullyFilteredImageDocument.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_helloHelvetica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_helloHelvetica.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_helloHelvetica02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_helloHelvetica02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_hello_05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_hello_05.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_incorrectBDCToBMCTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_incorrectBDCToBMCTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_inlineImages_full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_inlineImages_full.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lineArtsCompletely.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lineArtsCompletely.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lineArtsPartially.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lineArtsPartially.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lineArtsSimple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lineArtsSimple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_line_chart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_line_chart.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lotOfDashes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_lotOfDashes.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_maskImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_maskImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_miterTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_miterTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_multiUseImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_multiUseImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_multiUseIndirect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_multiUseIndirect.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_newLines01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_newLines01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_newLines02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_newLines02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_newLines03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_newLines03.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noPropertiesInResourcesTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noPropertiesInResourcesTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrix.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrixRemoveAllTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrixRemoveAllTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrixRemoveAllTest02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrixRemoveAllTest02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrixRemoveNothingTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_noninvertibleMatrixRemoveNothingTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page166_03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page166_03.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page166_04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page166_04.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page229-modified-Tc-Tw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page229-modified-Tc-Tw.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page229_01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_page229_01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_pathAndIncorrectCM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_pathAndIncorrectCM.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_redactLipsumPatternStartsWithWhitespace.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_redactLipsumPatternStartsWithWhitespace.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_redactPdfWithNoninvertibleMatrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_redactPdfWithNoninvertibleMatrix.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_rotatedImg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_rotatedImg.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleCleanUpOnRotatedPages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleCleanUpOnRotatedPages.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleCleanUpOnRotatedPagesIgnoreRotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleCleanUpOnRotatedPagesIgnoreRotation.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleImmediate-tm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleImmediate-tm.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleImmediate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_simpleImmediate.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_styledLineArts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_styledLineArts.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_textAndImages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_textAndImages.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_wholePageCleanUp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/cmp_wholePageCleanUp.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/corruptJpeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/corruptJpeg.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/dashedBezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/dashedBezier.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/dashedClosedRotatedTriangles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/dashedClosedRotatedTriangles.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/dashedStyledClosedBezier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/dashedStyledClosedBezier.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/degenerateCases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/degenerateCases.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/documentWithRotatedPages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/documentWithRotatedPages.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/emptyPdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/emptyPdf.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/emptyTj01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/emptyTj01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/emptyTj02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/emptyTj02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/fontCleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/fontCleanup.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/fullyFilteredImageDocument.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/fullyFilteredImageDocument.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/helloHelvetica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/helloHelvetica.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/helloHelvetica02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/helloHelvetica02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/hello_05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/hello_05.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/incorrectBDCToBMCTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/incorrectBDCToBMCTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/inlineImages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/inlineImages.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lineArtsCompletely.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lineArtsCompletely.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lineArtsPartially.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lineArtsPartially.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lineArtsSimple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lineArtsSimple.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/line_chart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/line_chart.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lotOfDashes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/lotOfDashes.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/maskImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/maskImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/miterTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/miterTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/multiUseImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/multiUseImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/multiUseIndirect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/multiUseIndirect.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/newLines01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/newLines01.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/newLines02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/newLines02.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/newLines03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/newLines03.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/new_york_times.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/new_york_times.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/noPropertiesInResourcesTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/noPropertiesInResourcesTest.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/noninvertibleMatrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/noninvertibleMatrix.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page166_03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page166_03.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page166_04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page166_04.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page229-modified-Tc-Tw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page229-modified-Tc-Tw.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page229.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/page229.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/pathAndIncorrectCM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/pathAndIncorrectCM.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/rotatedImg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/rotatedImg.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/simpleImmediate-tm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/simpleImmediate-tm.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/simpleImmediate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/simpleImmediate.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/styledLineArts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/styledLineArts.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/viewer_prefs_dict_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolTest/viewer_prefs_dict_table.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/cmp_inlineImageCleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/cmp_inlineImageCleanup.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/cmp_inlineImages_partial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/cmp_inlineImages_partial.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/cmp_inlineImages_partial2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/cmp_inlineImages_partial2.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/inlineImageCleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/inlineImageCleanup.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/inlineImages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/PdfCleanUpToolWithInlineImagesTest/inlineImages.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/RectangleTest/cmp_zeroWidthLine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/RectangleTest/cmp_zeroWidthLine.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/UnsupportedImageTypeTest/JpegCmykImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/UnsupportedImageTypeTest/JpegCmykImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/UnsupportedImageTypeTest/cmp_JpegCmykImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/UnsupportedImageTypeTest/cmp_JpegCmykImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest/cmp_indexedImageNoWhite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest/cmp_indexedImageNoWhite.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest/indexedImageNoWhite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest/indexedImageNoWhite.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpTransformedImageTest/cmp_skewedRgbImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpTransformedImageTest/cmp_skewedRgbImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpTransformedImageTest/skewedGrayImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpTransformedImageTest/skewedGrayImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpTransformedImageTest/skewedRgbImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanUpTransformedImageTest/skewedRgbImage.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/cmp_imgSeparationCs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/cmp_imgSeparationCs.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/cmp_imgSeparationCsJpegBaselineEncoded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/cmp_imgSeparationCsJpegBaselineEncoded.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/cmp_imgSeparationCsJpegBaselineEncodedWithApp14Segment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/cmp_imgSeparationCsJpegBaselineEncodedWithApp14Segment.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/imgSeparationCs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/imgSeparationCs.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/imgSeparationCsJpegBaselineEncoded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/imgSeparationCsJpegBaselineEncoded.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/imgSeparationCsJpegBaselineEncodedWithApp14Segment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/images/CleanupImageWithColorSpaceTest/imgSeparationCsJpegBaselineEncodedWithApp14Segment.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/text/CleanUpTextTest/cleanZeroWidthTextInvalidFont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/text/CleanUpTextTest/cleanZeroWidthTextInvalidFont.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/text/CleanUpTextTest/cmp_cleanZeroWidthTextInvalidFont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/text/CleanUpTextTest/cmp_cleanZeroWidthTextInvalidFont.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageColorKeyMaskArray.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageColorKeyMaskArray.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageIsMask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageIsMask.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageMask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageMask.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageSMask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageSMask.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageSMaskAIS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_imageSMaskAIS.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_textOnTransparentField.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/cmp_textOnTransparentField.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageColorKeyMaskArray.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageColorKeyMaskArray.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageIsMask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageIsMask.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageMask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageMask.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageSMask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageSMask.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageSMaskAIS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/imageSMaskAIS.pdf -------------------------------------------------------------------------------- /itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/textOnTransparentField.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext.tests/itext.cleanup.tests/resources/itext/pdfcleanup/transparency/MaskedImagesTest/textOnTransparentField.pdf -------------------------------------------------------------------------------- /itext/itext.cleanup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext.cleanup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext.cleanup.csproj -------------------------------------------------------------------------------- /itext/itext.cleanup/itext.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext.snk -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/CleanUpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/CleanUpExtensions.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/CleanUpProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/CleanUpProperties.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/FilteredImagesCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/FilteredImagesCache.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/LineDashPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/LineDashPattern.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PathOffsetApproximationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PathOffsetApproximationProperties.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpEventListener.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpFilter.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpLocation.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpProcessor.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PdfCleanUpTool.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/PdfCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/PdfCleaner.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/TextPositioning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/TextPositioning.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/actions/data/PdfSweepProductData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/actions/data/PdfSweepProductData.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/actions/event/PdfSweepProductEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/actions/event/PdfSweepProductEvent.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/autosweep/CommonRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/autosweep/CommonRegex.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/autosweep/CompositeCleanupStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/autosweep/CompositeCleanupStrategy.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/autosweep/ICleanupStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/autosweep/ICleanupStrategy.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/autosweep/PdfAutoSweepTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/autosweep/PdfAutoSweepTools.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/autosweep/RegexBasedCleanupStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/autosweep/RegexBasedCleanupStrategy.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/exceptions/CleanupExceptionMessageConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/exceptions/CleanupExceptionMessageConstant.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/logs/CleanUpLogMessageConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/logs/CleanUpLogMessageConstant.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/util/CleanUpCsCompareUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/util/CleanUpCsCompareUtil.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/util/CleanUpHelperUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/util/CleanUpHelperUtil.cs -------------------------------------------------------------------------------- /itext/itext.cleanup/itext/pdfcleanup/util/CleanUpImageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/itext/itext.cleanup/itext/pdfcleanup/util/CleanUpImageUtil.cs -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/nuget.config -------------------------------------------------------------------------------- /pdfSweep.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itext/itext-pdfsweep-dotnet/HEAD/pdfSweep.nuspec -------------------------------------------------------------------------------- /port-hash: -------------------------------------------------------------------------------- 1 | d08eacf7409fa5a3efecb2c3168da24d2e0bbe87 2 | --------------------------------------------------------------------------------