The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
76 views

Convert L*a*b* to RGB using an ICC profile

I want to display correct colors on a mobile device Android/iPhone so I created an ICC profile for each device. My colors are in L*a*b* (CIELAB) format. The conversion from L*a*b* to RGB goes through ...
-1
votes
1answer
44 views

How can I display image as color managed with wxPython?

I want to show images with embedded ICC profile with wxPython. To show them correctly, they need to be converted to the current display profile. Is there a way to get wxPython automatically do the ...
1
vote
0answers
81 views

CIAreaHistogram inputScale factor

I'm building an application that uses the CIAreaHistogram Core Image filter. I use an inputCount value (number of buckets) of 10 for testing, and an inputScale value of 1. I get the CIImage for the ...
0
votes
0answers
123 views

Convert CMYK Color to Lab with WCS by using an ICC Profile

I try to convert the CMYK Values ("255","0","0","0") to Lab! The Lab result should be ("59.11", "-23.94", "-27.10") by using the ICC Profile "ISOnewspaper26v4.icc". I'm sure, that the profile supports ...
2
votes
1answer
72 views

Code example for WcsGetDefaultColorProfile

Does anyone have a working code example showing a call to the Windows Color System function WcsGetDefaultColorProfile to get the default color profile for a specific device? It works for me when I ...
2
votes
3answers
498 views

Matlab restoring an image to its original colors

I want to take a picture of something. The colors in the picture are not the same as I see in my eyes. So in order to fix this problem, I decided to place a red paper (with RGB: [255 0 0]) and then ...
2
votes
1answer
916 views

Assign an ICC Color Profile to an image in C#

In short: I want to assign a ICC color profile to an image and not apply it. More info: In my company we need to merge a multiple layered pdf file into one layer. To do this we merge the pdf page ...
0
votes
1answer
138 views

Cross-Browser Colour Management for PNGs

I apologise in advance if SO is not the place for this. This seemed the most appropriate Stack Exchange, but still not ideal... Anyway, I have a number of PNG images on a website I'm developing. They ...
4
votes
1answer
306 views

Color profiles conversion

I have a project on color profile conversion in C++, where the idea is to use CIELAB as transition between RGB and all others (CMY; CMYK; HSV; HSL;...).But I have one big big problem. I have searched ...
6
votes
2answers
533 views

Is there any client-side technology able to convert sRGB to CMYK through an ICC color profile?

Is there any technology available in a browser (client-side) able to convert sRGB colors to CMYK and vice versa using a specified ICC color profile? I'm currently using a hidden Java applet for the ...
5
votes
2answers
198 views

Achieving Colour Consistency Across Different Monitors

I have an SWF file with only vector illustrations in it (no bitmaps). Is there a way to improve colour consistency across different monitors? Colour management is a very complex topic and the more I ...
0
votes
1answer
583 views

Does WPF use the installed color profile(ICC) in windows?

Does WPF use the installed color profile in windows for correcting the colors that are rendered? I'm pretty sure old forms/gdi-based applications are not "automatically" color corrected, but I wonder ...
1
vote
1answer
792 views

disabling color correction in quartz 2d

Ok, I know that it's not possible to actually disable color correction in quartz. What I'm looking for is a device-independent color space setting that dosn't change the RGB values I draw in a ...
6
votes
5answers
936 views

Determining your websites color scheme

One of the biggest issues I have, from a UI standpoint, when building a new website is figuring out what colors I will use and of those colors, do they actually work well together. I found this site ...
4
votes
6answers
1k views

Color differences between images and html

I'm having issues with color matching css background colors with colors in images on the same html page. What gives?
3
votes
2answers
460 views

Writing Color Calibration Data to a TIFF or PNG file

My custom homebrew photography processing software, running on 64 bit Linux/GNU, writes out PNG and TIFF files. These are to be sent to a quality printing shop to be made into fine art. Working ...
2
votes
2answers
4k views

Apply an ICC Color Profile to an image in C# (Dotnet)

How does one convert an image from one color profile to another (screen to printer, or scanner to screen). In Visual C++ you would use the function in ICM.h, is there a managed way to do this with ...