PCMM.java revision 0
809N/A/*
809N/A * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
809N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
809N/A *
809N/A * This code is free software; you can redistribute it and/or modify it
809N/A * under the terms of the GNU General Public License version 2 only, as
809N/A * published by the Free Software Foundation. Sun designates this
809N/A * particular file as subject to the "Classpath" exception as provided
809N/A * by Sun in the LICENSE file that accompanied this code.
809N/A *
809N/A * This code is distributed in the hope that it will be useful, but WITHOUT
809N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
809N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
809N/A * version 2 for more details (a copy is included in the LICENSE file that
809N/A * accompanied this code).
809N/A *
809N/A * You should have received a copy of the GNU General Public License version
809N/A * 2 along with this work; if not, write to the Free Software Foundation,
809N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
809N/A *
809N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
809N/A * CA 95054 USA or visit www.sun.com if you need additional information or
809N/A * have any questions.
809N/A */
809N/A
809N/Apackage sun.java2d.cmm;
809N/A
809N/Aimport java.awt.color.ICC_Profile;
809N/A
809N/A/* Pluggable CMM interface */
809N/A
809N/Apublic interface PCMM {
809N/A
809N/A /* methods invoked from ICC_Profile */
809N/A public long loadProfile(byte[] data);
809N/A public void freeProfile(long profileID);
809N/A public int getProfileSize(long profileID);
809N/A public void getProfileData(long profileID, byte[] data);
809N/A public void getTagData(long profileID, int tagSignature, byte[] data);
809N/A public int getTagSize(long profileID, int tagSignature);
809N/A public void setTagData(long profileID, int tagSignature, byte[] data);
809N/A
809N/A /* methods for creating ColorTransforms */
809N/A public ColorTransform createTransform(ICC_Profile profile, int renderType,
809N/A int transformType);
809N/A
809N/A public ColorTransform createTransform(ColorTransform[] transforms);
809N/A}
809N/A