You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix nullpointer for transform functions in separation
Type 0 and Type 4 functions pass a PdfStream and not a PdfDictionnary
Separation CS can contain a function, which can be a stream as well
Add tests
DEVSIX-1663
Copy file name to clipboardExpand all lines: pdfa/src/main/java/com/itextpdf/pdfa/PdfAConformanceException.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,11 @@ public class PdfAConformanceException extends PdfException {
146
146
publicstaticfinalStringTheSmaskKeyIsNotAllowedInXobjects = "The smask key is not allowed in xobjects";
147
147
publicstaticfinalStringTheValueOfInterpolateKeyShallNotBeTrue = "The value of interpolate key shall not be true";
148
148
publicstaticfinalStringTheValueOfTheMethEntryInColrBoxShallBe123 = "The value of the meth entry in colr box shall be 123";
149
+
//TODO(DEVSIX-1672): remove in 7.1
150
+
@Deprecated
149
151
publicstaticfinalStringTintTransformAndAlternateSpaceOfSeparationArraysInTheColorantsOfDeviceNShallBeConsistentWithSameAttributesOfDeviceN = "TintTransform and alternateSpace of separation arrays in the colorants of deviceN shall be consistent with same attributes of deviceN";
152
+
//TODO(DEVSIX-1672): move to LogConstants
153
+
publicstaticfinalStringWarningTintTransformAndAlternateSpaceOfSeparationArraysInTheColorantsOfDeviceNShallBeConsistentWithSameAttributesOfDeviceN = "WARNING: TintTransform and alternateSpace of separation arrays in the colorants of deviceN is not consistent with same attributes of deviceN";
150
154
publicstaticfinalStringTintTransformAndAlternateSpaceShallBeTheSameForTheAllSeparationCSWithTheSameName = "TintTransform and alternateSpace shall be the same for the all separation cs with the same name";
151
155
publicstaticfinalStringTransparencyIsNotAllowedCAShallBeEqualTo1 = "Transparency is not allowed. CA shall be equal to 1";
152
156
publicstaticfinalStringTransparencyIsNotAllowedCaShallBeEqualTo1 = "Transparency is not allowed. ca shall be equal to 1";
0 commit comments