Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 15494 invoked from network); 25 Jul 2007 14:55:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jul 2007 14:55:32 -0000 Received: (qmail 26874 invoked by uid 500); 25 Jul 2007 14:55:32 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 26651 invoked by uid 500); 25 Jul 2007 14:55:31 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 26642 invoked by uid 99); 25 Jul 2007 14:55:31 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jul 2007 07:55:31 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [192.55.52.88] (HELO mga01.intel.com) (192.55.52.88) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jul 2007 07:55:29 -0700 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 25 Jul 2007 07:55:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.16,581,1175497200"; d="scan'208";a="272548953" Received: from fmsmsx333.amr.corp.intel.com ([132.233.42.2]) by fmsmga001.fm.intel.com with ESMTP; 25 Jul 2007 07:55:09 -0700 Received: from mssmsx411.ccr.corp.intel.com ([10.125.144.12]) by fmsmsx333.amr.corp.intel.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 25 Jul 2007 07:55:09 -0700 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.5 Subject: FW: [jira] Created: (HARMONY-4381) [classlib][awt] Color profiles are not exists Date: Wed, 25 Jul 2007 18:55:04 +0400 Message-ID: <2A786EB15713B544AB79607529273B04E87B40@mssmsx411.ccr.corp.intel.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [jira] Created: (HARMONY-4381) [classlib][awt] Color profiles are not exists Thread-Index: Ace/wiyv9u+kPZclRpyEy7p9IOffrwPBkFNA From: "Pavlenko, Andrey A" To: X-OriginalArrivalTime: 25 Jul 2007 14:55:09.0436 (UTC) FILETIME=[CBB04BC0:01C7CECB] X-Virus-Checked: Checked by ClamAV on apache.org Hi, I have a legal question.=20 I could generate the profiles using the lcms library (http://sourceforge.net/projects/lcms) which is already used by the Harmony/AWT module. Could we use the generated profiles in Harmony?=20 -----Original Message----- From: Dmitriy Matveev (JIRA) [mailto:jira@apache.org]=20 Sent: Friday, July 06, 2007 3:38 PM To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-4381) [classlib][awt] Color profiles are not exists [classlib][awt] Color profiles are not exists --------------------------------------------- Key: HARMONY-4381 URL: https://issues.apache.org/jira/browse/HARMONY-4381 Project: Harmony Issue Type: Bug Components: Classlib Reporter: Dmitriy Matveev Exception when using getInstance() method of java.awt.color.ICC_Profile Test below demonstrate this: import java.awt.*; import java.awt.color.ColorSpace; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.awt.image.ColorConvertOp; public class ColorTest { public static void main(String[] args) { Frame f =3D new Frame("Test"){ public void paint(Graphics g){ Graphics2D g2d =3D (Graphics2D)g; RenderingHints hints =3D g2d.getRenderingHints(); ColorSpace cs =3D ColorSpace.getInstance(ColorSpace.CS_GRAY); ColorConvertOp cco =3D new ColorConvertOp(cs, hints); } }; =20 f.setBounds(0, 0, 800, 600); f.setVisible(true); f.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent ev) { =20 System.exit(0); } }); =20 } } --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.