我的意思是,在Python中。透明度。我只是希望图像出现并慢慢消失,也就是说,变得透明。
我的实际代码。
def post_texto_1():
inicio = True
alpha = 255
screen.fill((0, 0, 0))
while inicio:
for event in pygame.event.get():
if event.type == QUIT:
exit()
imagen_postTexto1.set_alpha(alpha)
screen.blit(imagen_postTexto1, (0, 0))
alpha -= 1
if alpha == 0:
inicio = False
tex2 = u"¿Dónde estoy? ¿A dónde voy?"
mostrar_mensaje(tex2, (255, 255, 255))
print("El alpha de la imagen es : "+str(alpha))
pygame.display.update()
答案 0 :(得分:1)
使用convert_alpha()
时,您可以更改图像的像素格式,包括每像素alphas 。
根据set_alpha()
的PyGame文档,如果Surface格式(即图像)包含每像素alphas ,则alpha值将忽略。
如果您仍然需要显示透明图片并希望使用set_alpha()
,则可以使用PyGames set_colorkey()
方法将一个颜色设置为透明。
使用以下功能消除图像:
def vanish_image(image, screen, background_color):
image = pygame.image.load(image).convert()
image.set_colorkey((0,0,0)) #RGB-value for transparent color if needed
alpha = 255
while True:
if alpha < 0: #exit function if alpha is smaller than 0
return
alpha -= 1
screen.fill(background_color) #"clear" last blitted image
image.set_alpha(alpha)
pygame.display.update(screen.blit(image,(0,0))) #blit new image onto surface and update only this area
pygame.time.delay(20) #wait 20 milliseconds