[gs-commits] ghostpdl branch, master, updated. jbig2dec-0.14-1633-gb7d32c4
[email protected] (Michael Vrhel)
| Newsgroups | gmane.comp.printing.ghostscript.cvs |
|---|---|
| Message-ID | <[email protected]> |
The ghostpdl branch, master has been updated
via b7d32c453538bee41c34f8a77a3feb1dcc0ce759 (commit)
from 40934a68930a1d6a41a26df694e1e50fe3c60202 (commit)
----------------------------------------------------------------------
commit b7d32c453538bee41c34f8a77a3feb1dcc0ce759
Author: Michael Vrhel <[email protected]>
Date: Tue Sep 3 12:34:55 2019 -0700
Undo commit 95f7befcec1b30fd5014c8ad616485d32901ce33 for release
Proper handling of the page group color space is going to require
a more complex solution whereby we ensure that we do the final
alpha blending in the page group color space and not the target
device color space.
diff --git a/base/gstrans.c b/base/gstrans.c
index 44ed3a7..8c4fca3 100644
--- a/base/gstrans.c
+++ b/base/gstrans.c
@@ -264,12 +264,9 @@ gs_begin_transparency_group(gs_gstate *pgs,
target device (process color model). Here we just want
to set it as a unknown type for clist writing, as we will take care
of using the parent group color space later during clist reading.
- Also, if the group was not isolated we MUST use the parent group
- color space regardless of what the group color space is specified to be.
- Note that the page group should always be isolated */
+ */
+
- if (group_type == PDF14_BEGIN_TRANS_PAGE_GROUP)
- params.Isolated = true;
if (ptgp->ColorSpace == NULL || params.Isolated != true) {
params.group_color = UNKNOWN;
params.group_color_numcomps = 0;
Summary of changes:
base/gstrans.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)