If we can generate color profiles with lcms and store them to the
files why we can not generate and use them on fly?

SY, Alexey

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);
           }
       });
   }
}

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to