From c6ae9dcb61d11dc6d80219fc254c65f2420ac575 Mon Sep 17 00:00:00 2001 From: iText Software Date: Fri, 2 Dec 2022 12:29:59 +0000 Subject: [PATCH 1/6] [AFTER RELEASE] pdfSweep 4.0.0 --- pom.xml | 4 ++-- .../itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index d14610e..8333164 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ com.itextpdf root - 7.2.5-SNAPSHOT + 8.0.0-SNAPSHOT cleanup - 3.0.2-SNAPSHOT + 4.0.0-SNAPSHOT pdfSweep Redact PDF documents. If you have to share PDFs with different departments or send them out of house, but they diff --git a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java index 7649861..d6f6f27 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java +++ b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java @@ -51,7 +51,7 @@ public class PdfSweepProductData { public static final String PDF_SWEEP_PRODUCT_NAME = "pdfSweep"; public static final String PDF_SWEEP_PUBLIC_PRODUCT_NAME = PDF_SWEEP_PRODUCT_NAME; - private static final String PDF_SWEEP_VERSION = "3.0.2-SNAPSHOT"; + private static final String PDF_SWEEP_VERSION = "4.0.0-SNAPSHOT"; private static final int PDF_SWEEP_COPYRIGHT_SINCE = 2000; private static final int PDF_SWEEP_COPYRIGHT_TO = 2022; From 8fe8f4bf0a25654178694e2d1526be53ff6863cc Mon Sep 17 00:00:00 2001 From: Guust Ysebie Date: Tue, 6 Dec 2022 11:45:27 +0100 Subject: [PATCH 2/6] Introduce static methods for text <-> glyph space conversions DEVSIX-5385 --- .../java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java | 5 +++-- src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java index 224942b..a72bc12 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java @@ -43,6 +43,7 @@ This file is part of the iText (R) project. package com.itextpdf.pdfcleanup; import com.itextpdf.commons.utils.MessageFormatUtil; +import com.itextpdf.io.font.FontProgram; import com.itextpdf.io.image.ImageData; import com.itextpdf.io.image.ImageDataFactory; import com.itextpdf.kernel.exceptions.PdfException; @@ -231,8 +232,8 @@ FilterResult filterText(TextRenderInfo text) { if (isTextNotToBeCleaned(ri)) { textArray.add(ri.getPdfString()); } else { - textArray.add(new PdfNumber( - -ri.getUnscaledWidth() * 1000f / (text.getFontSize() * text.getHorizontalScaling() / 100) + textArray.add(new PdfNumber(FontProgram.convertGlyphSpaceToTextSpace(-ri.getUnscaledWidth()) / + (text.getFontSize() * text.getHorizontalScaling() / FontProgram.HORIZONTAL_SCALING_FACTOR) )); } } diff --git a/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java b/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java index 0112a1d..ecf321b 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java +++ b/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java @@ -42,6 +42,7 @@ This file is part of the iText (R) project. */ package com.itextpdf.pdfcleanup; +import com.itextpdf.io.font.FontProgram; import com.itextpdf.kernel.geom.Matrix; import com.itextpdf.kernel.pdf.PdfArray; import com.itextpdf.kernel.pdf.PdfNumber; @@ -139,7 +140,8 @@ void appendTjArrayWithSingleNumber(PdfArray tjArray, float fontSize, float scali } float shift = tjArray.getAsNumber(0).floatValue(); - removedTextShift += shift * fontSize * (scaling / 100) / 1000; + removedTextShift += FontProgram.convertTextSpaceToGlyphSpace( + shift * fontSize * (scaling / FontProgram.HORIZONTAL_SCALING_FACTOR)); } /** @@ -189,7 +191,8 @@ private void writeText(String operator, List operands, PdfArray clean } PdfTextArray tjShiftArray = null; if (removedTextShift != null) { - float tjShift = (float) removedTextShift * 1000 / (canvasGs.getFontSize() * canvasGs.getHorizontalScaling() / 100); + final float tjShift = (float) (FontProgram.convertGlyphSpaceToTextSpace((float)removedTextShift) / ( + canvasGs.getFontSize() * canvasGs.getHorizontalScaling() / FontProgram.HORIZONTAL_SCALING_FACTOR)); tjShiftArray = new PdfTextArray(); tjShiftArray.add(new PdfNumber(tjShift)); } From 27697b4faa7c3d5011cb9001fdccb97d662c5f49 Mon Sep 17 00:00:00 2001 From: Guust Ysebie Date: Tue, 3 Jan 2023 15:30:00 +0100 Subject: [PATCH 3/6] Update copyright notice to 2023 DEVSIX-6437 --- src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java | 2 +- .../java/com/itextpdf/pdfcleanup/FilteredImagesCache.java | 2 +- src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java | 2 +- .../java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java | 2 +- src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java | 2 +- src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java | 2 +- .../java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java | 2 +- src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java | 2 +- src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java | 2 +- src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java | 2 +- .../itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java | 4 ++-- .../pdfcleanup/actions/event/PdfSweepProductEvent.java | 2 +- .../java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java | 2 +- .../pdfcleanup/autosweep/CompositeCleanupStrategy.java | 2 +- .../com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java | 2 +- .../com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java | 2 +- .../pdfcleanup/autosweep/RegexBasedCleanupStrategy.java | 2 +- .../exceptions/CleanupExceptionMessageConstant.java | 2 +- .../itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java | 2 +- .../com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java | 2 +- .../java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java | 2 +- .../java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java | 2 +- .../com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java | 2 +- .../com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java | 2 +- .../com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java | 2 +- .../com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java | 2 +- .../com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java | 2 +- src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java | 2 +- .../pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java | 2 +- src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/TextPositioningTest.java | 2 +- .../pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java | 2 +- .../pdfcleanup/images/CleanUpTransformedImageTest.java | 2 +- .../pdfcleanup/images/CleanupImageWithColorSpaceTest.java | 2 +- .../java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java | 2 +- .../itextpdf/pdfcleanup/transparency/MaskedImagesTest.java | 2 +- .../itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java b/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java index 7a707b0..f1f1bb8 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java +++ b/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java b/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java index dc3478f..234bde0 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java +++ b/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java b/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java index 80a8caf..7524bd2 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java +++ b/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java index f40accd..dc0ed37 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java index a72bc12..81f3f8b 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java index 9ae5ede..ec01d06 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java index e3da9b8..f4a6b03 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java index 79d5d08..b3b329b 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java index bed5b92..3891425 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java b/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java index ecf321b..740eb46 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java +++ b/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java index d6f6f27..d0ce24a 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java +++ b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify @@ -53,7 +53,7 @@ public class PdfSweepProductData { private static final String PDF_SWEEP_VERSION = "4.0.0-SNAPSHOT"; private static final int PDF_SWEEP_COPYRIGHT_SINCE = 2000; - private static final int PDF_SWEEP_COPYRIGHT_TO = 2022; + private static final int PDF_SWEEP_COPYRIGHT_TO = 2023; private static final ProductData PDF_SWEEP_PRODUCT_DATA = new ProductData(PDF_SWEEP_PUBLIC_PRODUCT_NAME, PDF_SWEEP_PRODUCT_NAME, PDF_SWEEP_VERSION, PDF_SWEEP_COPYRIGHT_SINCE, PDF_SWEEP_COPYRIGHT_TO); diff --git a/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java b/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java index 7562636..7c6885b 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java +++ b/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java index 2a70b54..1d3cbd7 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java index 5e2cc28..74ddbf7 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java index db8d0b3..26c2893 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java index 82ba9d8..263e8a3 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java index 34beb27..40f10eb 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java b/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java index 73ff52d..f8d9147 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java +++ b/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java b/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java index 67cedc9..b685b81 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java +++ b/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java index ab91018..ff0e656 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java +++ b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java index bc6c6a7..194409e 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java +++ b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java index c339df8..fdfe610 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java +++ b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java index 6e6c734..840a85a 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java index ed0c69d..b9acf47 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java index 5e0842a..141057b 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java index fbd0ad5..a241fb1 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java index edec5de..e4d075c 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java index 086e1c9..d375c50 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java index b60e935..3c0573d 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java index 76f86e9..bb58012 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java b/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java index 7282bcb..4b52577 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java index de80dbd..63a3eee 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java index 6a9a07f..0a3ceb2 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java index f763a6e..576b3e4 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java index 6c9ff4b..dfcc933 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java index c68cb14..04e70bd 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java b/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java index b7d83b2..4cfdf8a 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java b/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java index 17f9dde..7b3745d 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java index 7370eab..921f8ad 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java index db2d70d..ecad990 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java b/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java index b3a5dff..ac44325 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java b/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java index fe81475..e8a6918 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java b/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java index fff1ef2..57aa716 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify diff --git a/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java b/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java index 8b6cd89..1f06504 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java +++ b/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2022 iText Group NV + Copyright (c) 1998-2023 iText Group NV Authors: iText Software. This program is free software; you can redistribute it and/or modify From e2d1bf96f507643a2a652bd27be9fd17004a64c6 Mon Sep 17 00:00:00 2001 From: Dmitry Chubrick Date: Fri, 17 Feb 2023 12:23:56 +0300 Subject: [PATCH 4/6] Replace "itext7" to simple "itext" DEVSIX-7365 --- CONTRIBUTING.md | 10 +++++----- README.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8ad2acb..3dbe63f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# Contributing to iText 7 Community +# Contributing to iText Community -We'd love for you to contribute to our source code and to make **iText 7 Community** even better than it is +We'd love for you to contribute to our source code and to make **iText Community** even better than it is today! Here are the guidelines we'd like you to follow: - [Question or Problem?](#question) @@ -15,7 +15,7 @@ today! Here are the guidelines we'd like you to follow: ## Got a Question or Problem? -If you have questions about how to use **iText 7 Community**, please direct these to [Stack Overflow][stackoverflow]. +If you have questions about how to use **iText Community**, please direct these to [Stack Overflow][stackoverflow]. If you are a customer with a [support agreement][support], you also have direct access to our JIRA and our developers. @@ -79,7 +79,7 @@ Before you submit your pull request consider the following guidelines: * Build your changes locally to ensure all the tests pass. * Push your changes to your GitHub account. * Create a pull request in GitHub. -"Head fork" should be your repository, and the "base fork" should be the iText7 official repository. +"Head fork" should be your repository, and the "base fork" should be the iText official repository. * If we suggest changes then: * Make the required updates. * Fix up your commits if needed, with an interactive rebase. @@ -111,7 +111,7 @@ To ensure consistency throughout the source code, keep these rules in mind as yo We have guidelines on how our git commit messages should be formatted. This leads to **more readable messages** that are easy to follow when looking through the **project history**. But also, -we use the git commit messages to **generate the iText 7 Community change log**. +we use the git commit messages to **generate the iText Community change log**. These guidelines were taken from Chris Beams' blog post [How to Write a Git Commit Message][git-commit]. diff --git a/README.md b/README.md index 94a2c63..cfdf75d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -**[pdfSweep][pdfSweep]** is an [iText 7][itext] add on. +**[pdfSweep][pdfSweep]** is an [iText][itext] add on. This add on will allow you to easily redact PDF files. Redaction is the process of removing sensitive or confidential information. pdfSweep will remove this data entirely so that it won't be extractable anymore. From 1209685f8d7e6b88b508bca117e4b50ff73160f9 Mon Sep 17 00:00:00 2001 From: Andrei Stryhelski Date: Tue, 21 Mar 2023 19:35:02 +0300 Subject: [PATCH 5/6] Update company copyrights in file headers DEVSIX-7431 --- .../pdfcleanup/CleanUpProperties.java | 50 +++++----------- .../pdfcleanup/FilteredImagesCache.java | 56 ++++++------------ .../itextpdf/pdfcleanup/LineDashPattern.java | 56 ++++++------------ .../pdfcleanup/PdfCleanUpEventListener.java | 56 ++++++------------ .../itextpdf/pdfcleanup/PdfCleanUpFilter.java | 56 ++++++------------ .../pdfcleanup/PdfCleanUpLocation.java | 50 +++++----------- .../pdfcleanup/PdfCleanUpProcessor.java | 56 ++++++------------ .../itextpdf/pdfcleanup/PdfCleanUpTool.java | 56 ++++++------------ .../com/itextpdf/pdfcleanup/PdfCleaner.java | 56 ++++++------------ .../itextpdf/pdfcleanup/TextPositioning.java | 56 ++++++------------ .../actions/data/PdfSweepProductData.java | 50 +++++----------- .../actions/event/PdfSweepProductEvent.java | 50 +++++----------- .../pdfcleanup/autosweep/CommonRegex.java | 56 ++++++------------ .../autosweep/CompositeCleanupStrategy.java | 56 ++++++------------ .../autosweep/ICleanupStrategy.java | 50 +++++----------- .../autosweep/PdfAutoSweepTools.java | 56 ++++++------------ .../autosweep/RegexBasedCleanupStrategy.java | 50 +++++----------- .../CleanupExceptionMessageConstant.java | 4 +- .../logs/CleanUpLogMessageConstant.java | 4 +- .../pdfcleanup/util/CleanUpCsCompareUtil.java | 4 +- .../pdfcleanup/util/CleanUpHelperUtil.java | 4 +- .../pdfcleanup/util/CleanUpImageUtil.java | 4 +- .../BigDocumentAutoCleanUpTest.java | 56 ++++++------------ .../pdfcleanup/BigDocumentCleanUpTest.java | 56 ++++++------------ .../pdfcleanup/CleanUpAnnotationTest.java | 56 ++++++------------ .../pdfcleanup/CleanUpCsCompareUtilTest.java | 4 +- .../pdfcleanup/CleanUpImageUtilTest.java | 4 +- .../pdfcleanup/CleanUpInvalidPdfTest.java | 4 +- .../pdfcleanup/CleanUpTaggedPdfTest.java | 56 ++++++------------ .../pdfcleanup/CleanupLicenseEventsTest.java | 4 +- .../pdfcleanup/FilteredImagesCacheTest.java | 56 ++++++------------ .../pdfcleanup/PdfAutoSweepToolsTest.java | 56 ++++++------------ .../pdfcleanup/PdfCleanUpFilterUnitTest.java | 50 +++++----------- .../PdfCleanUpProcessorUnitTest.java | 4 +- .../pdfcleanup/PdfCleanUpToolTest.java | 56 ++++++------------ .../PdfCleanUpToolWithInlineImagesTest.java | 56 ++++++------------ .../itextpdf/pdfcleanup/RectangleTest.java | 4 +- .../pdfcleanup/TextPositioningTest.java | 4 +- .../CleanUpImageIndexedColorSpaceTest.java | 4 +- .../images/CleanUpTransformedImageTest.java | 4 +- .../CleanupImageWithColorSpaceTest.java | 56 ++++++------------ .../pdfcleanup/text/CleanUpTextTest.java | 50 +++++----------- .../transparency/MaskedImagesTest.java | 56 ++++++------------ .../util/CleanUpImagesCompareTool.java | 58 ++++++------------- 44 files changed, 545 insertions(+), 1145 deletions(-) diff --git a/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java b/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java index f1f1bb8..f2b8b7f 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java +++ b/src/main/java/com/itextpdf/pdfcleanup/CleanUpProperties.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java b/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java index 234bde0..b0ed8f0 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java +++ b/src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java b/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java index 7524bd2..ba075fe 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java +++ b/src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java index dc0ed37..addaf02 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java index 81f3f8b..adf6932 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpFilter.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java index ec01d06..81c684b 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpLocation.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java index f4a6b03..bd2c5b4 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessor.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java index b3b329b..e67585f 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpTool.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java b/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java index 3891425..2e283a2 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java +++ b/src/main/java/com/itextpdf/pdfcleanup/PdfCleaner.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java b/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java index 740eb46..d98ac2e 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java +++ b/src/main/java/com/itextpdf/pdfcleanup/TextPositioning.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java index d0ce24a..f2b3832 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java +++ b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.actions.data; diff --git a/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java b/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java index 7c6885b..6f1ce3a 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java +++ b/src/main/java/com/itextpdf/pdfcleanup/actions/event/PdfSweepProductEvent.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.actions.event; diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java index 1d3cbd7..6ba5576 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CommonRegex.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.autosweep; diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java index 74ddbf7..6af1ed4 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/CompositeCleanupStrategy.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.autosweep; diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java index 26c2893..7917269 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/ICleanupStrategy.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.autosweep; diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java index 263e8a3..0415892 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/PdfAutoSweepTools.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.autosweep; diff --git a/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java b/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java index 40f10eb..bf4e973 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java +++ b/src/main/java/com/itextpdf/pdfcleanup/autosweep/RegexBasedCleanupStrategy.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.autosweep; diff --git a/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java b/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java index f8d9147..cf24ee2 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java +++ b/src/main/java/com/itextpdf/pdfcleanup/exceptions/CleanupExceptionMessageConstant.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java b/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java index b685b81..062916e 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java +++ b/src/main/java/com/itextpdf/pdfcleanup/logs/CleanUpLogMessageConstant.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java index ff0e656..cd52d85 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java +++ b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpCsCompareUtil.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java index 194409e..d7dde05 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java +++ b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpHelperUtil.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java index fdfe610..a58a7fc 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java +++ b/src/main/java/com/itextpdf/pdfcleanup/util/CleanUpImageUtil.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java index 840a85a..a27bc82 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentAutoCleanUpTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java index b9acf47..25560c0 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/BigDocumentCleanUpTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java index 141057b..e007155 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpAnnotationTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java index a241fb1..adacf9b 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpCsCompareUtilTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java index e4d075c..da67f14 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpImageUtilTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java index d375c50..ddfeb83 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpInvalidPdfTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java index 3c0573d..45938cd 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanUpTaggedPdfTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java b/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java index bb58012..bfae1bc 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/CleanupLicenseEventsTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java b/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java index 4b52577..bd5ebf9 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/FilteredImagesCacheTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java index 63a3eee..3ee12d3 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfAutoSweepToolsTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java index 0a3ceb2..6713776 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpFilterUnitTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java index 576b3e4..f93b16a 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpProcessorUnitTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java index dfcc933..dc5c1fe 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java index 04e70bd..ee0c618 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/PdfCleanUpToolWithInlineImagesTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup; diff --git a/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java b/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java index 4cfdf8a..e061f66 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/RectangleTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java b/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java index 7b3745d..b87c9f1 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/TextPositioningTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java index 921f8ad..1c3f0c3 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpImageIndexedColorSpaceTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java index ecad990..26895e5 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/images/CleanUpTransformedImageTest.java @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. diff --git a/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java b/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java index ac44325..328e5c9 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/images/CleanupImageWithColorSpaceTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.images; diff --git a/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java b/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java index e8a6918..364dc65 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/text/CleanUpTextTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. - You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.text; diff --git a/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java b/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java index 57aa716..daada2e 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java +++ b/src/test/java/com/itextpdf/pdfcleanup/transparency/MaskedImagesTest.java @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com + along with this program. If not, see . */ package com.itextpdf.pdfcleanup.transparency; diff --git a/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java b/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java index 1f06504..27e44ec 100644 --- a/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java +++ b/src/test/java/com/itextpdf/pdfcleanup/util/CleanUpImagesCompareTool.java @@ -1,45 +1,25 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2023 iText Group NV - Authors: iText Software. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License version 3 - as published by the Free Software Foundation with the addition of the - following permission added to Section 15 as permitted in Section 7(a): - FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY - ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT - OF THIRD PARTY RIGHTS - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Affero General Public License for more details. + Copyright (c) 1998-2023 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + You should have received a copy of the GNU Affero General Public License - along with this program; if not, see http://www.gnu.org/licenses or write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA, 02110-1301 USA, or download the license from the following URL: - http://itextpdf.com/terms-of-use/ - - The interactive user interfaces in modified source and object code versions - of this program must display Appropriate Legal Notices, as required under - Section 5 of the GNU Affero General Public License. - - In accordance with Section 7(b) of the GNU Affero General Public License, - a covered work must retain the producer line in every PDF that is created - or manipulated using iText. - - You can be released from the requirements of the license by purchasing - a commercial license. Buying such a license is mandatory as soon as you - develop commercial activities involving the iText software without - disclosing the source code of your own applications. - These activities include: offering paid services to customers as an ASP, - serving PDFs on the fly in a web application, shipping iText with a closed - source product. - - For more information, please contact iText Software Corp. at this - address: sales@itextpdf.com -*/ + along with this program. If not, see . + */ package com.itextpdf.pdfcleanup.util; import com.itextpdf.commons.utils.FileUtil; From 33b3fdb462401e392e41147bbf7b31da13515f6a Mon Sep 17 00:00:00 2001 From: iText Software Date: Wed, 26 Apr 2023 18:10:40 +0000 Subject: [PATCH 6/6] [RELEASE] pdfSweep 4.0.0 --- pom.xml | 4 ++-- .../itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 8333164..0a51609 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ com.itextpdf root - 8.0.0-SNAPSHOT + 8.0.0 cleanup - 4.0.0-SNAPSHOT + 4.0.0 pdfSweep Redact PDF documents. If you have to share PDFs with different departments or send them out of house, but they diff --git a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java index f2b3832..2f6ab6b 100644 --- a/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java +++ b/src/main/java/com/itextpdf/pdfcleanup/actions/data/PdfSweepProductData.java @@ -31,7 +31,7 @@ public class PdfSweepProductData { public static final String PDF_SWEEP_PRODUCT_NAME = "pdfSweep"; public static final String PDF_SWEEP_PUBLIC_PRODUCT_NAME = PDF_SWEEP_PRODUCT_NAME; - private static final String PDF_SWEEP_VERSION = "4.0.0-SNAPSHOT"; + private static final String PDF_SWEEP_VERSION = "4.0.0"; private static final int PDF_SWEEP_COPYRIGHT_SINCE = 2000; private static final int PDF_SWEEP_COPYRIGHT_TO = 2023;