Tagged Questions

5
votes
3answers
404 views

How to invert colors of an image in pygame?

I have a pygame Surface and would like to invert the colors. Is there any way quicker & more pythonic than this? It's rather slow. I'm aware that subtracting the value from 255 isn't the only ...
5
votes
4answers
5k views

How do I invert a colour / color? (C# .net)

I know that this won't directly invert a colour, it will just 'oppose' it. I was wondering if anyone knew a simple way (a few lines of code) to invert a colour from any given colour? At the moment I ...
4
votes
1answer
410 views

iPad programming, any way to invert color programmatically?

You know how the iPad can invert colors? For the app I'm working on we wanted to have a button that would invert the colors for one of the views the same way. Does the sdk have any kind of support ...
0
votes
1answer
53 views

BitBlt to invert colors using C++

I am using BitBlt WinAPI to compose a bitmap using C++, and I was wondering what flags do I need to use to invert the colors in it?
0
votes
0answers
58 views

Invert text-color of a specific element (using jQuery)

How do I invert the text-color of an element using jQuery? <div style="color: rgb(0, 0, 0)">Invert me</div>
0
votes
1answer
73 views

Optimization of color inversion - Python Tkinter library

I attempted today to create a Python code to invert the colors of a .gif image using the Tkinter library. The code works and does exactly what I expected, but it takes about 50 seconds to run on a ...
0
votes
1answer
190 views

How to control the contrast of text?

How do you change the color contrast of text when the background changes? for example If I was to have a black background, black text would not be visible.
0
votes
1answer
321 views

Invert Image Color Onmouseover

I want to invert the colors of an image when the mouse rolls over the image using Javascript. I do not want to use Image Rollover as it will increase the load time. I am building my first ...
0
votes
3answers
530 views

Inverted-colors text on top of an OpenGL scene

I have a font texture which I use in order to draw text on top of my OpenGL scene. The problem is that the scene's colors vary so much that any solid color I use is hard to read. Is it possible to ...