鱼C论坛

 找回密码
 立即注册
查看: 1471|回复: 7

[已解决]图片透明度

[复制链接]
发表于 2020-10-4 20:39:13 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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[0]
    y = location[1]

   
    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)






[/code]

函数blit_alpha中的temp.blit(target,(-x,-y))的意思,或者(-x,-y)的意义。谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-10-4 20:47:43 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-10-4 23:39:20 | 显示全部楼层
疾风怪盗 发表于 2020-10-4 20:47
https://fishc.com.cn/thread-168336-1-1.html

相同内容的帖子

..没看明白,感觉和移动没关系吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 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
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-5 00:01:40 | 显示全部楼层    本楼为最佳答案   
https://blog.csdn.net/progess_every_day/article/details/108561090
还有这个,应该能解释清楚了吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-10-5 00:17:18 | 显示全部楼层
<font color="red">[已解决]</font>关于《零基础入门学习Python》第83讲的一个问题
https://fishc.com.cn/thread-67974-1-1.html
(出处: 鱼C论坛)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

我貌似找到了另一个看得懂的答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-5 00:23:48 | 显示全部楼层
yyswoca 发表于 2020-10-5 00:18
我貌似找到了另一个看得懂的答案

你看懂就行了,我没学过pygame,看不懂
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 11:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表