Ok, I've filed the generated profiles to JIRA. -----Original Message----- From: Alexey Petrenko [mailto:[EMAIL PROTECTED] Sent: Thursday, July 26, 2007 7:03 PM To: [email protected] Subject: Re: FW: [jira] Created: (HARMONY-4381) [classlib][awt] Color profiles are not exists
2007/7/26, Alexei Zakharov <[EMAIL PROTECTED]>: > These profiles are result of the work of program distributed under MIT > license (lcms is MIT). This way, I don't see any problems. Yes, looks so. http://people.apache.org/~cliffs/3party.html > 2007/7/25, Pavlenko, Andrey A <[EMAIL PROTECTED]>: > > Hi, > > > > I have a legal question. > > > > 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? > > > > > > -----Original Message----- > > From: Dmitriy Matveev (JIRA) [mailto:[EMAIL PROTECTED] > > Sent: Friday, July 06, 2007 3:38 PM > > To: [EMAIL PROTECTED] > > 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 = new Frame("Test"){ > > public void paint(Graphics g){ > > Graphics2D g2d = (Graphics2D)g; > > RenderingHints hints = g2d.getRenderingHints(); > > ColorSpace cs = > > ColorSpace.getInstance(ColorSpace.CS_GRAY); > > ColorConvertOp cco = new ColorConvertOp(cs, hints); > > } > > }; > > > > f.setBounds(0, 0, 800, 600); > > f.setVisible(true); > > f.addWindowListener(new WindowAdapter() { > > public void windowClosing(WindowEvent ev) { > > System.exit(0); > > } > > }); > > } > > } > > > -- > Alexei Zakharov, > Intel ESSD >
