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 definition of an "inverted color," but it's what I want for now.

I'm surprised that pygame doesn't have something like this built in!

Thanks for your help!

import pygame

def invertImg(img):
    """Inverts the colors of a pygame Screen"""

    img.lock()

    for x in range(img.get_width()):
        for y in range(img.get_height()):
            RGBA = img.get_at((x,y))
            for i in range(3):
                # Invert RGB, but not Alpha
                RGBA[i] = 255 - RGBA[i]
            img.set_at((x,y),RGBA)

    img.unlock()
link|improve this question

50% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Winston 's answer is nice, but for the sake of completeness, when one have to manipulate an image pixel by pixel in Python,. whatever image library is being used, the main point should be in not having to loop over the pixels in Python code. This is CPU intensive due to the language nature, and can rarely be made to work in realtime.

Fortunatelly, the excelent Numpy library can help one perform several scalar operations in streams of bytes, looping over each number in native code - which is orders of magnitude faster than doing it in Python. For this particular operation, if we make an xor operation with (2^32 - 1) we can delagate the operation to the iner loop, in native code.

So this example witch you can paste in python console, will flip the pixels instantly to white, if you have Numpy instaled:

import pygame

srf = pygame.display.set_mode((640,480))
pixels = pygame.surfarray.pixels2d(srf)
pixels ^= 2 ** 32 - 1
del pixels

pygame.display.flip()

Without numpy instaled, pygame.surfarray methods return ordinary python arrays (from the stdlib array module) and you would have to find anotehr way to operate on these numbers, since the ordinary Python array does not operate on all elements when a line such as pixels ^= 2 ** 32 - 1 is given.

link|improve this answer
numpy is awesome, I use it in almost every python project – Winston Ewert May 5 '11 at 3:15
Great! I should really learn and use Numpy. – Ain Britain May 5 '11 at 3:44
@jsbueno I'm curious, why did you do "del pixels"? – Ain Britain May 5 '11 at 4:13
@jsbueno Well, I figured out that you have to delete the surfarray to unlock the Surface. But what I can't figure out despite 3 hours of searching is how the value that you get from value = pixels[x,y] corresponds to RGB values. It's not hex, what is it? pygame.surfarray.pixels3d(srf) gives you [x][y][r,g,b], but what about the 2d array? – Ain Britain May 5 '11 at 5:42
@Ain, hex is just a way of representing a number. If you pass the value into the hex() function you'll get the hex representation. – Winston Ewert May 5 '11 at 15:33
show 1 more comment
feedback

Taken from: http://archives.seul.org/pygame/users/Sep-2008/msg00142.html

def inverted(img):
   inv = pygame.Surface(img.get_rect().size, pygame.SRCALPHA)
   inv.fill((255,255,255,255))
   inv.blit(img, (0,0), None, BLEND_RGB_SUB)
   return inv

This may do the alpha channel wrong, but you should be able to get that working with additional tweaks.

link|improve this answer
feedback

One approach that might be more efficient would be to use PIL, as described here: How to invert colors of image with PIL (Python-Imaging)?

It's easy to convert it to a native pygame image in-memory, as described here: http://mail.python.org/pipermail/image-sig/2005-May/003315.html

link|improve this answer
Thanks, but I'm trying to avoid additional modules and have already committed to pygame. I should have mentioned that earlier, sorry! – Ain Britain May 5 '11 at 2:07
3  
@Ain Britain, don't. A huge strength of python is the massive amount of code already written for you. You are missing out if you don't add module that help support what you want. – Winston Ewert May 5 '11 at 2:14
@Winston: However, as your and mine answers denote, PIL is not the best thing for this -- converting between image data between PIL and Pygame surfaces is painfull in itself. – jsbueno May 5 '11 at 2:29
2  
@jsbueno, yes, in this case using PIL is overkill. But in principle, one shouldn't be scared of using additional libraries. – Winston Ewert May 5 '11 at 3:13
@Winston Ewert Agree 100% on code reuse. Unfortunately PIL is kind of a crappy dependency to have. I'm sure you knew that, but I just thought I would mention it for our readers :-) – Brian O'Dell May 5 '11 at 15:20
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.