The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
25 views

Can SDL create a sRGB OpenGL context?

The documentation of SDL does not seem to mention much about color spaces. I don't see any SRGB flag/parameter for SDL_SetVideoMode or SDL_GL_SetAttribute. Is it possible at all for SDL to ask ...
0
votes
0answers
54 views

Include sRGB ICC profile in javascript

I have a web page with HTML 5 canvas and I fetch small images that I draw on the canvas with javascript. The issue is that the color is off... I convert them to sRGB but the color is OK only if the ...
0
votes
0answers
58 views

Color profiles (AdobeRGB, sRGB) and fpdf

I'm generating PDF vector graphics using the fpdf library with some extensions from http://bililite.com/blog/blogfiles/pdf/pdftest.php?which=GraphicsPDF&output=source (and various other extensions ...
0
votes
1answer
42 views

GIF: two different monitor looks gif very different

I've 2 pc with windows 7 I've two monitor, same brand, same model 2 pc aare using the same browser: ie8 With first pc i see one web page we make with all color ok In the second pc, some of the gif ...
1
vote
1answer
181 views

GIMP 2: how to batch assign sRGB profile to a lot of images into various subfolder

I've an entire tree with PNG images I need to - open - assign sRGB profile - close to every of them (about 2000 images) Is there a way to do this via gimp 2?
1
vote
1answer
114 views

OpenGL Automatic sRGB Conversion vs Manual sRGB Conversion

I've recently been reading up about sRGB conversion and some of the benefits that come with it. A read a very useful article in GPU Gems 3 which is now available for free which covers some automatic ...
2
votes
1answer
568 views

When to call glEnable(GL_FRAMEBUFFER_SRGB)?

I have a rendering system where I draw to an FBO with a multisampled renderbuffer, then blit it to another FBO with a texture in order to resolve the samples in order to read off the texture to ...
2
votes
1answer
491 views

Convert to sRGB for iPhone?

Should I select "Convert to sRGB" in Adobe Photoshop/Illustrator if I'm saving the image for the iPhone or iPad? Why You Should Probably Use sRGB says you should use sRGB for web. But, what about for ...
-1
votes
1answer
409 views

Different colors with Photoshop or Web browser over the same image

One of my clients is a painter and he has realized there's a color difference between the colors on an image looking it through the website with his web browser (Internet Explorer 8) and the same ...
0
votes
0answers
199 views

Convert sRGB to Lab in R with convertColor

I'm trying to work with Lab colour, and need to do conversions from sRGB, ideally with R. I've just given converColor a go, and am a little confused. As a test, I'm converting the Macbeth ColorChecker ...
1
vote
1answer
192 views

make a lightness histogram with luminance, Lab and sRGB space in Java

I have to create a lightness histogram of an image. I have already maked a RGB Histogram On Internet i found these values: Luminance (standard, objective): (0.2126*R) + (0.7152*G) + (0.0722*B) ...
1
vote
1answer
410 views

sRGB FBO render to texture

In my renderer, I produce an anti-aliased scene on a multisampled FBO, which is blitted to an FBO whose color attachment is a texture. The texture is then read during rendering to the framebuffer. ...
0
votes
1answer
313 views

Using sRGB colour in QGLFramebufferObject with multisampling

For performance reasons I have separated my 2D and 3D rendering. I have two QGLFramebufferObjects for each type because QGLFramebuffer does not support multisampling with GL_TEXTURE_2D as a target, ...
2
votes
1answer
494 views

Color Profile strategies for developing web sites with sRGB photos and Monitor RGB comps

Overview I'm looking for advice / solutions on standardizing color profiles on comps so colors of HTML/CSS gradients/blends match effects achieved in a comp. I often get PSDs using the sRGB color ...
4
votes
1answer
531 views

Gamma-curve experiment — convert 2.2 to opposite of 1.8?

The Motorola Photon is infamous for exhibiting what others have called "black crush" -- when viewing pictures, most of the detail in dark parts of the image is flattened out to black. Up to now, ...
2
votes
1answer
232 views

(DirectX9) sRGB conversion after blending

I recently came across this blog post Yet another post about gamma correction which taught me the availability of the D3DPMISCCAPS_POSTBLENDSRGBCONVERT capability flag. This should allow for proper ...
6
votes
3answers
2k views

Color spaces, gamma and image enhancement

Color space. Well, everybody knows about RGB: three values normalized in the range [0.0,1.0], which have the meaning of the intensity of the color components Red Green Blue; this intensity is meant as ...
2
votes
2answers
164 views

How much worse is sRGB than L*a*b* when computing the eucleidan distance between colors?

L*a*b* is the best way of doing it, but converting to it is complicated, and I'm lazy. How much accuracy am I giving up by operating on sRGB directly?
5
votes
1answer
391 views

Should the result of sRGB->CIEXYZ->discard luminance be convertible back to sRGB?

I'm writing shadow removal for my pony detector. After I've converted a PNG image from sRGB to CIE XYZ I remove the luminance as per instructions: When I try to convert the image back to sRGB for ...
2
votes
0answers
244 views

Using EXIFTool to create sRGB images?

I would like to ask a question about sRGB, ICC profiles, and exiftool. I've found that you can use exiftool to embed sRGB profiles into images. Does this mean I can create a picture in Paint.NET and ...
3
votes
1answer
1k views

How to convert sRGB to CIELAb and CIELab to sRGB efficiently?

I don't understand how to convert sRGB to CIELab and backward. Help me please. it's desirable in с++ code
4
votes
4answers
1k views

linearRGB conversion to/from HSL

Does anyone know of a way to get HSL from an linearRGB color (not an sRGB color)? I've seen a lot of sRGB<->HSL conversions, but nothing for linearRGB<->HSL. Not sure if it is fundementally the ...