当前位置:   article > 正文

Python实现中文文字雨源代码_文字雨代码

文字雨代码

Python实现中文文字雨源代码,代码中用的字体SimHei.ttf可自行下载,该代码基于pygame实现了中文文字雨,程序运行截图:
在这里插入图片描述
完整程序代码

import pygame
import sys
import random

pygame.init()

resolution = width,height = 800,600 #设置窗口大小和标题
windowSurface = pygame.display.set_mode(resolution) #设置分辨率并得到全局的【绘图表面】
pygame.display.set_caption("中文字符雨_Python代码大全")#设置标题

bgSurface = pygame.Surface((width, height), flags=pygame.SRCALPHA)
pygame.Surface.convert(bgSurface)
bgSurface.fill(pygame.Color(0, 0, 0, 35))

# 创建时钟对象
clock = pygame.time.Clock()

if __name__ == '__main__':

    str1 = "01abcdefghijklmnopqurstuvwxyz"
    str1 = "我们希望看到江南水乡的美景。江南水乡,烟雨蒙蒙,雨滴颜色五颜六色,大小不一"
    letter = list(str1)
    font = pygame.font.Font("./SimHei.ttf", 14)
    texts = [
        font.render(str(letter[i]), True, (0, 255, 0)) for i in range(26)
    ]

    column = int(width/15)
    drops = [0 for i in range(column)]

    while True:
        # 处理用户输入
        for event in pygame.event.get():
            # 处理退出事件
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()
        windowSurface.blit(bgSurface, (0, 0))
        # 绘制结束,刷新界面

        for i in range(len(drops)):
            text = random.choice(texts)

            windowSurface.blit(text, (i * 15, drops[i] * 15))

            drops[i] += 1
            if drops[i] * 10 > height or random.random() > 0.9:
                drops[i] = 0

        pygame.display.flip()

        # 时钟停留一帧的时长
        clock.tick(20)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54

更多Python源代码,请微信关注:Python代码大全,在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/85109
推荐阅读
相关标签
  

闽ICP备14008679号