Diez B. Roggisch schrieb:
> [EMAIL PROTECTED] schrieb:
>> Hi! I need to manipulate multicolor strings, i.e. strings with a color
>> associated with each letter.
>> Any suggestions?
> 
> There is no support for multi-color strings as such in pygame. If you 
> use a fixed-width font, things are easy. Just create the strings one 
> after another using spaces as prefix. E.g.
> 
> back = (0,0,0)
> font = pygame.font.Font(font_fn, size)
> images = []
> for i, c in enumerate("colored string"):
>     s = " " * i + c
>     color = color_for_index(i)
>     s_image = font.render(s, True, color, back)
>     images.append(s_image)

Don't drink and code... *sigh*

Of course you can just create an equally dimensioned image for each 
character and each color (cached or not, however you like it), and just 
blit these one after another, offsetting them with the character width.

Diez
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to