Skip to content

Commit 8464949

Browse files
committed
[RELEASE] iText 7 Core - 7.1.15
https://github.com/itext/itext7-dotnet/releases/tag/7.1.15 * release_branch: [RELEASE] 7.1.15 Add PdfFont#appendDecodedCodesToGlyphsList methods to get success status of decoding to glyph line Prevent null from being passed as occupied area in case of FULL Drop .NET Framework 4.0 support in favor of 4.5 in itextcore modules Expose some font utility API for public usage Support box-sizing property in case of FlexContainerRenderer Add validation for justify-content property Add message logging for not supported flex-related properties Add missing copyright headers Support collapsing margins for flex container Improve TODOs of OCSPVerifier OTF: Support GposLookupType1 - table subformat 2 Respect flex item's height calculated during the algo Consider min and max container's heights while processing line's cross size Better PDF/A Conformance exception text Add Strictness level for PdfReader Add log message for invalid Version in the catalog Ignore invalid catalog version on document load Add missing copyright headers DataHandlerCounter disabling hooks mechanism Add a test which demonstrates that height is not respected in case min-height is set Remove redundant TODO Remove invalid return in javadoc Remove html examples for flex algorithm Make FlexContainer be default-accessed Make glyphs independent in bidi-reordered line from pre-reordering Respect width when placing flex container Update vertical-writing TODO comment to more relevant ticket Introduce integration tests for 'font-weight' font-selection Add missing copyright headers Support justify-content and align-items Skip KEEP_TOGETHER in case of AreaBreak Preserve cell's percent width between relayouts Fix javadoc warnings in sign module KeepTogether disable for not fit in keepTogether tree fix Add flex container element and flex related properties Add test for infinite loop when copying outlines Add missing copyright headers PdfFontFactory font embedding strategy Fix some more SQ related issues Fix issues identified by SQ Cover pattern and shading related constants with javadocs Add logging that ICC profile to be set to the image is invalid Update port-hash Remove deprecated TODOs Add tests for PdfDocument with missing, null and not PdfString producer Add null check on producer string Closes #69. Fix javadocs of SvgConverter Add missing copyright headers Implement initial layout method for FlexContainerRenderer Add JavaDocs to some classes from layer package and to PdfLinkAnnotation class Remove fixed in 7.2.0_preparations branch TODOs Fix javadocs warning Fix null exception with SeparatedTableBorders Add missing copyright headers Add test for CFFFontTest Add javadocs to FontProvider, Range & RangeBuilder Add some unit test for PdfTokenizer Support flex algorithm Remove redundant TODO message Add javadocs for PdfDashPattern and PdfCatalog Add integration test for table cell with rowspan exceeding several pages Fix NPE in PdfDocument.getFont with direct font Add a test on a cell rotation issue Add some javadocs to PdfDocument & PdfAnnotationBorder Remove TODOs in the PdfImageXObject Update port-hash Support type3 glyphs with custom names Cover custom image masks setting API with tests Fix javadoc warnings Delete obsolete TODO PdfNumber equals and hashcode fixes Cover OcspClientBouncyCastle methods with tests Add missing copyright headers Take document into account for PdfIndirectReference equals and hashCode Add missing copyright headers Improve code coverage of itextcore in SonarQube Add AssertUtil#doesNotThrow methods and update some tests ParagraphRenderer and LineRenderer children parent fixes Add missing copyright headers Refactor css validators. Update tests if necessary Fix space validation issue Refactor shorthands Support flex, flex-flow, gap and place-items shorthand Create and move to specific class TYPOGRAPHY_NOT_FOUND constant Remove System.Net.Http package. Update that package for pdftest.netstandart Add missing copyright headers and update copyright year Fix Svg relative MoveTo operator with multiple coordinates logic Add SignWithSignaturePolicyInfoTest test Update port-hash after release [AFTER RELEASE] 7.1.14 Add missing copyright headers Add tests to increase code coverage and split constructor in PdfType3Font Add log message that outline destination page number is out of bounds Update CssSelectorParser to use Matcher Update autoported files Add new tests to SmartModeTests class Update port-hash Refactor OverflowAttributeTest Improve taggedPdfReaderToolTest01
2 parents 6ac76bd + d693924 commit 8464949

File tree

2,498 files changed

+16611
-4007
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,498 files changed

+16611
-4007
lines changed

doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
3232
# title of most generated pages and in a few other places.
3333
# The default value is: My Project.
3434

35-
PROJECT_NAME = "iText 7 7.1.14 API"
35+
PROJECT_NAME = "iText 7 7.1.15 API"
3636

3737
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3838
# could be handy for archiving the generated documentation or if some version

itext.tests/itext.barcodes.tests/Properties/AssemblyInfo.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
[assembly: AssemblyConfiguration("")]
77
[assembly: AssemblyCompany("iText Group NV")]
88
[assembly: AssemblyProduct("iText")]
9-
[assembly: AssemblyCopyright("Copyright (c) 1998-2020 iText Group NV")]
9+
[assembly: AssemblyCopyright("Copyright (c) 1998-2021 iText Group NV")]
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212

1313
[assembly: ComVisible(false)]
1414

1515
[assembly: Guid("d015a3aa-613c-45d9-b908-7d47c4b613af")]
1616

17-
[assembly: AssemblyVersion("7.1.14.0")]
18-
[assembly: AssemblyFileVersion("7.1.14.0")]
19-
[assembly: AssemblyInformationalVersion("7.1.14")]
17+
[assembly: AssemblyVersion("7.1.15.0")]
18+
[assembly: AssemblyFileVersion("7.1.15.0")]
19+
[assembly: AssemblyInformationalVersion("7.1.15")]
2020

2121
#if !NETSTANDARD2_0
2222
[assembly: NUnit.Framework.Timeout(300000)]

itext.tests/itext.barcodes.tests/itext.barcodes.tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0" DefaultTargets="Build">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -8,7 +8,7 @@
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<AssemblyName>itext.barcodes.tests</AssemblyName>
11-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<TargetFrameworkProfile />
1414
<ProductVersion>8.0.30703</ProductVersion>
@@ -37,7 +37,7 @@
3737
</PropertyGroup>
3838
<ItemGroup>
3939
<Reference Include="nunit.framework, Version=3.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
40-
<HintPath>$(SolutionDir)\packages\NUnit.3.7.1\lib\net40\nunit.framework.dll</HintPath>
40+
<HintPath>$(SolutionDir)\packages\NUnit.3.7.1\lib\net45\nunit.framework.dll</HintPath>
4141
</Reference>
4242
<Reference Include="System" />
4343
<Reference Include="System.Core" />

itext.tests/itext.barcodes.tests/itext.barcodes.tests.netstandard.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup Label="Configuration">
33
<SignAssembly>True</SignAssembly>
44
<DelaySign>False</DelaySign>
55
<WarningLevel>4</WarningLevel>
66
</PropertyGroup>
77
<PropertyGroup>
8-
<TargetFrameworks>netcoreapp2.0;net40</TargetFrameworks>
8+
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks>
99
</PropertyGroup>
10-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net40' ">
10+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
1111
<OutputType>library</OutputType>
1212
</PropertyGroup>
1313
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
@@ -28,7 +28,7 @@
2828
<PropertyGroup>
2929
<NoWarn>1701;1702;1591;1570;1572;1573;1574;1580;1584;1658</NoWarn>
3030
</PropertyGroup>
31-
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
31+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
3232
<Reference Include="System" />
3333
<Reference Include="System.Core" />
3434
</ItemGroup>

itext.tests/itext.barcodes.tests/itext/barcodes/Barcode128Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/Barcode39Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeCodabarTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeDataMatrixTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeEANTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeEANUnitTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeInter25Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeMSITest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeMultiThreadingTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodePDF417Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodePDF417UnitTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodePostnetTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeQRCodeTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.barcodes.tests/itext/barcodes/BarcodeUnitTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.7.1" targetFramework="net40" />
4-
</packages>
3+
<package id="NUnit" version="3.7.1" targetFramework="net45" />
4+
</packages>

itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
[assembly: AssemblyConfiguration("")]
77
[assembly: AssemblyCompany("iText Group NV")]
88
[assembly: AssemblyProduct("iText")]
9-
[assembly: AssemblyCopyright("Copyright (c) 1998-2020 iText Group NV")]
9+
[assembly: AssemblyCopyright("Copyright (c) 1998-2021 iText Group NV")]
1010
[assembly: AssemblyTrademark("")]
1111
[assembly: AssemblyCulture("")]
1212

1313
[assembly: ComVisible(false)]
1414

1515
[assembly: Guid("6fe2f714-6b3e-4b20-8c70-28bfce084ed2")]
1616

17-
[assembly: AssemblyVersion("7.1.14.0")]
18-
[assembly: AssemblyFileVersion("7.1.14.0")]
19-
[assembly: AssemblyInformationalVersion("7.1.14")]
17+
[assembly: AssemblyVersion("7.1.15.0")]
18+
[assembly: AssemblyFileVersion("7.1.15.0")]
19+
[assembly: AssemblyInformationalVersion("7.1.15")]
2020

2121
#if !NETSTANDARD2_0
2222
[assembly: NUnit.Framework.Timeout(300000)]

itext.tests/itext.forms.tests/itext.forms.tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0" DefaultTargets="Build">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -8,7 +8,7 @@
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<AssemblyName>itext.forms.tests</AssemblyName>
11-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<ProductVersion>8.0.30703</ProductVersion>
1414
<SchemaVersion>2.0</SchemaVersion>
@@ -36,7 +36,7 @@
3636
</PropertyGroup>
3737
<ItemGroup>
3838
<Reference Include="nunit.framework, Version=3.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
39-
<HintPath>$(SolutionDir)\packages\NUnit.3.7.1\lib\net40\nunit.framework.dll</HintPath>
39+
<HintPath>$(SolutionDir)\packages\NUnit.3.7.1\lib\net45\nunit.framework.dll</HintPath>
4040
</Reference>
4141
<Reference Include="System" />
4242
<Reference Include="System.Core" />

itext.tests/itext.forms.tests/itext.forms.tests.netstandard.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup Label="Configuration">
33
<SignAssembly>True</SignAssembly>
44
<DelaySign>False</DelaySign>
55
<WarningLevel>4</WarningLevel>
66
</PropertyGroup>
77
<PropertyGroup>
8-
<TargetFrameworks>netcoreapp2.0;net40</TargetFrameworks>
8+
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks>
99
</PropertyGroup>
10-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net40' ">
10+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
1111
<OutputType>library</OutputType>
1212
</PropertyGroup>
1313
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
@@ -28,7 +28,7 @@
2828
<PropertyGroup>
2929
<NoWarn>1701;1702;1591;1570;1572;1573;1574;1580;1584;1658</NoWarn>
3030
</PropertyGroup>
31-
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
31+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
3232
<Reference Include="System" />
3333
<Reference Include="System.Core" />
3434
<Reference Include="System.Xml" />

itext.tests/itext.forms.tests/itext/forms/FlatteningRotatedTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FlatteningTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FlatteningWithNullKidElementTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FormFieldAppendTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FormFieldFlatteningTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/FormFieldsTaggingTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/PdfAcroFormInAppendModeTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.

itext.tests/itext.forms.tests/itext/forms/PdfAcroFormTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.

itext.tests/itext.forms.tests/itext/forms/PdfCheckBoxFieldTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/PdfChoiceFieldTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.

itext.tests/itext.forms.tests/itext/forms/PdfEncryptionTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/PdfFormCopyTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

itext.tests/itext.forms.tests/itext/forms/PdfFormFieldMultilineTextTest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2020 iText Group NV
3+
Copyright (c) 1998-2021 iText Group NV
44
Authors: iText Software.
55
66
This program is offered under a commercial and under the AGPL license.
@@ -180,7 +180,7 @@ public virtual void FormFieldFilledWithStringTest() {
180180
String value = "12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
181181
PdfDocument pdfDoc = new PdfDocument(new PdfWriter(destinationFolder + "formFieldWithStringTest.pdf"));
182182
PdfFont font = PdfFontFactory.CreateFont(sourceFolder + "NotoSansCJKtc-Light.otf", PdfEncodings.IDENTITY_H
183-
, true);
183+
);
184184
PdfAcroForm acroForm = PdfAcroForm.GetAcroForm(pdfDoc, true);
185185
PdfFormField form = PdfTextFormField.CreateMultilineText(pdfDoc, new Rectangle(59, 715, 127, 69), "field",
186186
"", font, 10f);

0 commit comments

Comments
 (0)