/* $Id$ */
package org.apache.fop.render.pdf;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
import org.apache.fop.pdf.PDFConformanceException;
import org.apache.fop.pdf.PDFFilterList;
import org.apache.fop.pdf.PDFImage;
import org.apache.fop.pdf.PDFColorSpace;
import org.apache.fop.pdf.PDFXObject;
import org.apache.fop.pdf.BitmapImage;
+import org.apache.fop.util.ColorProfileUtil;
import org.apache.fop.image.FopImage;
import org.apache.fop.image.EPSImage;
*/
public class FopPDFImage implements PDFImage {
+ /** logging instance */
+ private static Log log = LogFactory.getLog(FopPDFImage.class);
+
private FopImage fopImage;
private PDFICCStream pdfICCStream = null;
private PDFFilter pdfFilter = null;
ICC_Profile prof = fopImage.getICCProfile();
PDFColorSpace pdfCS = toPDFColorSpace(fopImage.getColorSpace());
if (prof != null) {
- pdfICCStream = doc.getFactory().makePDFICCStream();
- pdfICCStream.setColorSpace(prof, pdfCS);
+ boolean defaultsRGB = ColorProfileUtil.isDefaultsRGB(prof);
+ if (log.isDebugEnabled()) {
+ String desc = ColorProfileUtil.getICCProfileDescription(prof);
+ log.debug("Image returns ICC profile: " + desc + ", default sRGB=" + defaultsRGB);
+ }
+ //TODO Instead of skipping the ICC profile for sRGB, let's think about embedding our
+ //own sRGB profile instead, but if possible only once per PDF (Need a new structure in
+ //the PDF library for that).
+ if (!defaultsRGB) {
+ pdfICCStream = doc.getFactory().makePDFICCStream();
+ pdfICCStream.setColorSpace(prof, pdfCS);
+ }
}
//Handle transparency mask if applicable
if (fopImage.hasSoftMask()) {
import org.apache.fop.render.Graphics2DAdapter;
import org.apache.fop.render.RendererContext;
import org.apache.fop.util.CharUtilities;
+import org.apache.fop.util.ColorProfileUtil;
import org.apache.fop.fo.Constants;
import org.apache.fop.fo.extensions.ExtensionAttachment;
import org.apache.fop.fo.extensions.xmp.XMPMetadata;
//Fallback: Use the sRGB profile from the JRE (about 140KB)
profile = ICC_Profile.getInstance(ColorSpace.CS_sRGB);
}
- String desc = getICCProfileDescription(profile);
+ String desc = ColorProfileUtil.getICCProfileDescription(profile);
icc.setColorSpace(profile, null);
outputIntent.setDestOutputProfile(icc);
pdfDoc.getRoot().addOutputIntent(outputIntent);
}
- private String getICCProfileDescription(ICC_Profile profile) {
- byte[] data = profile.getData(ICC_Profile.icSigProfileDescriptionTag);
- if (data == null) {
- return null;
- } else {
- //Info on the data format: http://www.color.org/ICC-1_1998-09.PDF
- int length = (data[8] << 3 * 8) | (data[9] << 2 * 8) | (data[10] << 8) | data[11];
- length--; //Remove trailing NUL character
- try {
- return new String(data, 12, length, "US-ASCII");
- } catch (UnsupportedEncodingException e) {
- throw new UnsupportedOperationException("Incompatible VM");
- }
- }
- }
-
/**
* @see org.apache.fop.render.Renderer#stopRenderer()
*/
--- /dev/null
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+
+package org.apache.fop.util;
+
+import java.awt.color.ColorSpace;
+import java.awt.color.ICC_ColorSpace;
+import java.awt.color.ICC_Profile;
+import java.io.UnsupportedEncodingException;
+
+/**
+ * Helper methods for handling color profiles.
+ */
+public class ColorProfileUtil {
+
+ /**
+ * Returns the profile description of an ICC profile
+ * @param profile the profile
+ * @return the description
+ */
+ public static String getICCProfileDescription(ICC_Profile profile) {
+ byte[] data = profile.getData(ICC_Profile.icSigProfileDescriptionTag);
+ if (data == null) {
+ return null;
+ } else {
+ //Info on the data format: http://www.color.org/ICC-1_1998-09.PDF
+ int length = (data[8] << 3 * 8) | (data[9] << 2 * 8) | (data[10] << 8) | data[11];
+ length--; //Remove trailing NUL character
+ try {
+ return new String(data, 12, length, "US-ASCII");
+ } catch (UnsupportedEncodingException e) {
+ throw new UnsupportedOperationException("Incompatible VM");
+ }
+ }
+ }
+
+ /**
+ * Indicates whether a given color profile is identical to the default sRGB profile
+ * provided by the Java class library.
+ * @param profile the color profile to check
+ * @return true if it is the default sRGB profile
+ */
+ public static boolean isDefaultsRGB(ICC_Profile profile) {
+ ColorSpace sRGB = ColorSpace.getInstance(ColorSpace.CS_sRGB);
+ ICC_Profile sRGBProfile = null;
+ if (sRGB instanceof ICC_ColorSpace) {
+ sRGBProfile = ((ICC_ColorSpace)sRGB).getProfile();
+ }
+ return profile == sRGBProfile;
+ }
+
+}
<changes>
<release version="FOP Trunk">
+ <action context="Code" dev="JM" type="update">
+ The default sRGB color profile provided by the Java class library is no longer
+ embedded if it is encountered. This should reduce the PDF size considerably.
+ </action>
<action context="Code" dev="JM" type="fix" fixes-bug="39443">
Bugfix: Sections with span="all" lead to overlapping text if spanning multiple pages.
</action>