Hi,
Can someone please explain me the following queries?
1. What is uncalibrated CMYK color space?
2. What extent the FOP supports this feature?
3. I have got the following fo source code to specify a background color
from the CMYK color profile, from which I am able to produce all three
differents documents (PDF, AFP, and PS):
<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="demo">
<fo:region-body
background-color="rgb-icc(100%,0%,0%,CMYKProfile,0,1,1,0)"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:declarations>
<fo:color-profile color-profile-name="CMYKProfile"
src="ECI_Offset_2009/ISOcoated_v2_eci.icc"/>
</fo:declarations>
<fo:page-sequence master-reference="demo">
<fo:flow flow-name="xsl-region-body">
<fo:block color="rgb-icc(0%,0%,0%,CMYKProfile,0,0,0,1)">Demo</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
I have downloaded this fo file from the bug
"https://issues.apache.org/bugzilla/show_bug.cgi?id=43705".
Does this means FOP supports CMYK feature? (I have used the FOP Trunk
source for this..)
4. There is a class by name 'CMYKColorSpace.java', when will it be used?
Thanks,
Venkat.