用户:
你的爸查看:0 回复:0 评论:0 创建时间:2023-08-11T15:29:57
【作品展示】

【作品介绍】
eregyd7teryruyrtfrtygheweftgfrtgehterydrtwuteftewd
【作品源代码】
'''27-双奥风华鉴-工程包'''
# 请在下方输入本节课代码
from PIL import Image,ImageDraw,ImageFont
def crop_s(name,x1,y1,x2,y2):
a1 = Image.open(name)
a1_c = a1.crop((x1, y1, x2, y2))
a1_c.save('new'+name)
crop_s('0.png',500,0,700,600)
crop_s('1.png', 500, 0, 700, 600)
crop_s('2.png', 600, 0, 800, 600)
crop_s('3.png', 550, 0, 750, 600)
crop_s('4.png', 400, 0, 600, 600)
crop_s('5.png', 500,0,700,600)
bg = Image.new('RGB',(1200,600),'white')
for i in range(0,6):
name = 'new'+str(i)+'.png'
pic=Image.open(name)
bg.paste(pic,(i*200,0),mask=pic)
draw=ImageDraw.Draw(bg)
font1=ImageFont.truetype('1.ttf',100)
draw.text((200,200),'中国北京',fill='white',font=font1)
bg.save('123.png')
bg.save('123.png')
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn