blob: fa646dc2b2b3643e2578b16edea5f34bc5424e4b [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package sun.java2d.cmm.lcms;
27
28import java.awt.color.ColorSpace;
29import java.awt.color.ICC_Profile;
30import java.awt.color.CMMException;
31import sun.java2d.cmm.ColorTransform;
32import sun.java2d.cmm.PCMM;
33import sun.java2d.cmm.lcms.LCMS;
34import sun.java2d.cmm.lcms.LCMSTransform;
35
36public class LCMS implements PCMM {
37
38 /* methods invoked from ICC_Profile */
39 public native long loadProfile(byte[] data);
40
41 public native void freeProfile(long profileID);
42
43 public native synchronized int getProfileSize(long profileID);
44
45 public native synchronized void getProfileData(long profileID, byte[] data);
46
47 public native synchronized int getTagSize(long profileID, int tagSignature);
48 public native synchronized void getTagData(long profileID, int tagSignature,
49 byte[] data);
50 public native synchronized void setTagData(long profileID, int tagSignature,
51 byte[] data);
52
53 public static native long getProfileID(ICC_Profile profile);
54
55 public static native long createNativeTransform(
56 long[] profileIDs, int renderType, Object disposerRef);
57
58 /**
59 * Constructs ColorTransform object corresponding to an ICC_profile
60 */
61 public ColorTransform createTransform(ICC_Profile profile,
62 int renderType,
63 int transformType)
64 {
65 return new LCMSTransform(profile, renderType, renderType);
66 }
67
68 /**
69 * Constructs an ColorTransform object from a list of ColorTransform
70 * objects
71 */
72 public synchronized ColorTransform createTransform(
73 ColorTransform[] transforms)
74 {
75 return new LCMSTransform(transforms);
76 }
77
78 /* methods invoked from LCMSTransform */
79 public static native void colorConvert(LCMSTransform trans,
80 LCMSImageLayout src,
81 LCMSImageLayout dest);
82 public static native void freeTransform(long ID);
83
84 public static native void initLCMS(Class Trans, Class IL, Class Pf);
85
86 /* the class initializer which loads the CMM */
87 static {
88 java.security.AccessController.doPrivileged(
89 new java.security.PrivilegedAction() {
90 public Object run() {
91 /* We need to load awt here because of usage trace and
92 * disposer frameworks
93 */
94 System.loadLibrary("awt");
95 System.loadLibrary("lcms");
96 return null;
97 }
98 }
99 );
100
101 initLCMS(LCMSTransform.class, LCMSImageLayout.class, ICC_Profile.class);
102 }
103}