Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 6.0
-
Fix Version/s: 6.0
-
Component/s: Core/Parsing, Core/Rendering
-
Labels:None
-
Environment:any
-
Support Case References:
-
Salesforce Case Reference:
Description
This issue came in through support. The PDF displays a fairly complex architecture plan and has server section that are appearing black instead of light grey. The issue is likely related to ColorSpace issue or a pattern paint issue where tiling image is not being correctly decoded.
Further investigation is needed to isolate the reason for the paint issue.
Further investigation is needed to isolate the reason for the paint issue.
Activity
Field | Original Value | New Value |
---|---|---|
Salesforce Case Reference | 5007000000Yd2I0AAJ |
Fix Version/s | 5.1 [ 10675 ] |
Affects Version/s | 5.2 [ 10970 ] | |
Affects Version/s | 5.0.4 [ 11072 ] |
Fix Version/s | 5.2 [ 10970 ] | |
Fix Version/s | 5.1 [ 10675 ] |
Support Case References |
Support Case #12588 - https://icesoft.my.salesforce.com/5007000000Yd2I0
Support Case #12667 - https://icesoft.my.salesforce.com/5007000000Zwk2M |
Component/s | Core/Rendering [ 10974 ] |
Fix Version/s | 5.3 [ 12070 ] | |
Fix Version/s | 5.2 [ 10970 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #44470 | Fri Apr 10 09:31:17 MDT 2015 | patrick.corless | |
Files Changed | ||||
![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #44486 | Mon Apr 13 13:25:58 MDT 2015 | patrick.corless | |
Files Changed | ||||
![]() ![]() |
Fix Version/s | 5.2 [ 10970 ] | |
Fix Version/s | 5.3 [ 12070 ] |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #44555 | Thu Apr 23 07:39:08 MDT 2015 | patrick.corless | |
Files Changed | ||||
![]() ![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #44563 | Thu Apr 23 11:28:26 MDT 2015 | patrick.corless | |
Files Changed | ||||
![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #44564 | Thu Apr 23 11:30:32 MDT 2015 | patrick.corless | |
Files Changed | ||||
![]() |
Status | Resolved [ 5 ] | Closed [ 6 ] |
This took a while to isolate given the 43,000 draw operations. I got lucky though and the colour issue can be reproduced in the first 713 bytes of content stream. It turns out that Separation colour space uses a tint value which we translate to the transparency for rgba. However in our Graphics state we copy colours using only the rgb values and ignore the alpha and thus black is being drawn.
Touched up the code and made sure we aren't doing the bad copy anywhere else. Also made a change to Separation colour space where we were changing the named colour value which I don't believe is correct.