Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-15 Thread Kai-Uwe Behrmann
Hello, Here comes what I have put in CinePaints standard plugin header : void gimp_image_set_icc_profile_by_name (gint32 image_ID, gchar *data); void gimp_image_set_icc_profile_by_mem (gint32 image_ID,

Re: [Gimp-developer] Color Management

2004-08-15 Thread Sven Neumann
Hi, [EMAIL PROTECTED] [EMAIL PROTECTED] writes: What's the easy way to get an ICC color profile? I'd like to look at an image on my display and on the wall simultaneously and tweak the profile until the display matches the wall. But I don't see any kind of GUI to accomplish this. Do I

Re: [Gimp-developer] Re: The way forward for Color Management

2004-08-15 Thread Sven Neumann
Hi, yesterday I suggested the following struct: struct GimpColorConfig { GObject parent_instance; gboolean enabled; gchar *monitor_profile; gchar *working_profile; gchar *proof_profile; GimpColorIntent render_intent;

Re: [Gimp-developer] MA project: FS/OS Developer as a social Formation

2004-08-15 Thread Shlomi Fish
On Sun, 15 Aug 2004 03:00, Sven Neumann wrote: Hi, just got a nice email asking me to point the GIMP developers to this online questionnaire: http://userpage.fu-berlin.de/~egal/ It's a study on the social cohesion between developers and aims to grasp them as a social whole. I think we

Re: [Gimp-developer] CMS PDBs in CinePaint/GIMP

2004-08-15 Thread Alastair M. Robinson
Hi Sven, Sven Neumann wrote: Kai-Uwe Behrmann [EMAIL PROTECTED] writes: void gimp_image_set_lab_profile (gint32 image_ID); void gimp_image_set_xyz_profile (gint32 image_ID); void gimp_image_set_srgb_profile(gint32 image_ID); What are these? Setters

Re: [Gimp-developer] Re: The way forward for Color Management

2004-08-15 Thread Alastair M. Robinson
Hi Sven, Sven Neumann wrote: What we didn't talk about yet is whether the profiles are filenames that specify what ICC color profile to load or whether they are pointers to color profiles loaded into memory. I suggest that we use filenames here and let the modules deal with loading the profile. Is

Re: [Gimp-developer] Re: The way forward for Color Management

2004-08-15 Thread Alastair M. Robinson
Hi Sven, Sven Neumann wrote: yesterday I suggested the following struct: struct GimpColorConfig { GObject parent_instance; gboolean enabled; gchar *monitor_profile; gchar *working_profile; gchar *proof_profile; GimpColorIntent render_intent;

Re: [Gimp-developer] Re: The way forward for Color Management

2004-08-15 Thread Sven Neumann
Hi, Alastair M. Robinson [EMAIL PROTECTED] writes: In order to support this feature, we'd need one more flag and an appropriate RGB colour: gboolean proof_use_alarm; RGBTriple proof_alarm_color; That would be a feature that is enabled per display and doesn't need to be stored globally ?!

Re: [Gimp-developer] Re: The way forward for Color Management

2004-08-15 Thread Alastair M. Robinson
Hi Sven, Sven Neumann wrote: In order to support this feature, we'd need one more flag and an appropriate RGB colour: gboolean proof_use_alarm; RGBTriple proof_alarm_color; That would be a feature that is enabled per display and doesn't need to be stored globally ?! Perhaps - though I can see some