yyswoca 发表于 2020-10-4 20:39:13

图片透明度

import pygame
import sys
from pygame.locals import *


pygame.init()

size = width,height = 500,375
bg = (0,0,0)

clock = pygame.time.Clock()
screen = pygame.display.set_mode(size,RESIZABLE)
pygame.display.set_caption("shiyan4")

turtle = pygame.image.load("feiji.png").convert_alpha()
background = pygame.image.load("cloud.jpg").convert()
position = turtle.get_rect()
position.center = width//2,height//2
print(position)

def blit_alpha(target,source,location,opacity):
    x = location
    y = location

   
    temp = pygame.Surface((source.get_width(),source.get_height())).convert()

    #把透明的screen
    temp.blit(target,(-x,-y))
    temp.blit(source,(0,0))
    temp.set_alpha(opacity)
    target.blit(temp,location)

while True:
    for event in pygame.event.get():
      if event.type == QUIT:
            sys.exit()

    screen.blit(background,(0,0))
    blit_alpha(screen,turtle,position,200)

    pygame.display.flip()

    clock.tick(30)








函数blit_alpha中的temp.blit(target,(-x,-y))的意思,或者(-x,-y)的意义。谢谢

疾风怪盗 发表于 2020-10-4 20:47:43

https://fishc.com.cn/thread-168336-1-1.html

相同内容的帖子

yyswoca 发表于 2020-10-4 23:39:20

疾风怪盗 发表于 2020-10-4 20:47
https://fishc.com.cn/thread-168336-1-1.html

相同内容的帖子

..没看明白,感觉和移动没关系吧

疾风怪盗 发表于 2020-10-4 23:59:38

yyswoca 发表于 2020-10-4 23:39
..没看明白,感觉和移动没关系吧

你论坛里搜一下

有很多相同的帖子
https://fishc.com.cn/thread-67974-1-1.html
https://fishc.com.cn/thread-140856-1-1.html

疾风怪盗 发表于 2020-10-5 00:01:40

https://blog.csdn.net/progess_every_day/article/details/108561090
还有这个,应该能解释清楚了吧

yyswoca 发表于 2020-10-5 00:17:18

<font color="red">[已解决]</font>关于《零基础入门学习Python》第83讲的一个问题
https://fishc.com.cn/thread-67974-1-1.html
(出处: 鱼C论坛)

yyswoca 发表于 2020-10-5 00:18:02

yyswoca 发表于 2020-10-5 00:17
[已解决]关于《零基础入门学习Python》第83讲的一个问题
https://fishc.com.cn/thread-67974-1-1.html
( ...

我貌似找到了另一个看得懂的答案

疾风怪盗 发表于 2020-10-5 00:23:48

yyswoca 发表于 2020-10-5 00:18
我貌似找到了另一个看得懂的答案

{:10_284:}你看懂就行了,我没学过pygame,看不懂
页: [1]
查看完整版本: 图片透明度