Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 5.0.4
-
Fix Version/s: 5.0.5
-
Component/s: Core/Parsing
-
Labels:None
-
Environment:any
-
Salesforce Case Reference:
Description
The PDF in question contains a small black box and should have white text painted over it. The pages white text is being set with "1 scn" but when "0 scn" is set the text is still drawing using black.
My guess is that we have a could space issue or becuase "0 scn" is being set outside of the text block it isn't being applied to the text state fill.
My guess is that we have a could space issue or becuase "0 scn" is being set outside of the text block it isn't being applied to the text state fill.
Activity
Patrick Corless
created issue -
Judy Guglielmin
made changes -
Field | Original Value | New Value |
---|---|---|
Salesforce Case Reference | 5007000000Y3pajAAB |
Patrick Corless
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #39868 | Fri Jan 31 10:26:45 MST 2014 | patrick.corless | |
Files Changed | ||||
MODIFY
/icepdf/trunk/icepdf/core/src/org/icepdf/core/pobjects/graphics/Separation.java
|
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #39869 | Fri Jan 31 10:26:55 MST 2014 | patrick.corless | |
Files Changed | ||||
MODIFY
/icepdf/branches/icepdf-5.0.1/icepdf/core/src/org/icepdf/core/pobjects/graphics/Separation.java
|
Patrick Corless
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
I think I have a solution for this colour issue. In this particular case the color value of 0 is correctly decoded in the Seperation colour space to white in RGB. However the tint value is zero which we apply as an alpha value to the colour. The problem with this is that we get 100% transparent result and no white. The default colour model for PDF shouln't have transparency as transparency is specified using other mechanisms.
So long story shot I've put in a corner case to paint white if white is used with 100% alpha. There could be problems after a QA run but I'm hopeful the fix will pass.