aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/util
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2006-05-07 13:43:35 +0000
committerJeremias Maerki <jeremias@apache.org>2006-05-07 13:43:35 +0000
commit141722a7cd16bf481453de7dce21a2506dc8ca0b (patch)
tree3bfd2e9be2ba1e8dbbc681793a1d6786112ba485 /src/java/org/apache/fop/util
parentce3ec60e0395a82e39a0fa270606e487ddc54916 (diff)
downloadxmlgraphics-fop-141722a7cd16bf481453de7dce21a2506dc8ca0b.tar.gz
xmlgraphics-fop-141722a7cd16bf481453de7dce21a2506dc8ca0b.zip
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.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@404759 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/util')
-rw-r--r--src/java/org/apache/fop/util/ColorProfileUtil.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/util/ColorProfileUtil.java b/src/java/org/apache/fop/util/ColorProfileUtil.java
new file mode 100644
index 000000000..8c0e7794f
--- /dev/null
+++ b/src/java/org/apache/fop/util/ColorProfileUtil.java
@@ -0,0 +1,67 @@
+/*
+ * 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;
+ }
+
+}