python最新版安装图集_[python] plist图集拆分小图

#!python

importos,sysimportplistlibfrom PIL importImagedefgen_png_from_plist(plist_filename, png_filename):

file_path= plist_filename.replace(‘.plist‘, ‘‘)

big_image=Image.open(png_filename)

root=plistlib.readPlist(plist_filename)

frames= root[‘frames‘]

to_list= lambda x: x.replace(‘{‘,‘‘).replace(‘}‘,‘‘).split(‘,‘)

to_int= lambdax:int(x)for frame inframes:

framename= frame.replace(‘.png‘, ‘‘)

size=frames[frame].sourceColorRect

size=to_list(size)

size=map(to_int, size)

spriteSize=frames[frame].sourceSize

spriteSize=to_list(spriteSize)

spriteSize=map(to_int, spriteSize)

textureRect=frames[frame].frame

textureRect=to_list(textureRect)

textureRect=map(to_int, textureRect)

result_box=textureRect

result_image= Image.new(‘RGBA‘, spriteSize, 0)ifframes[frame].rotated:

result_box[0]=int(textureRect[0])

result_box[1] = int(textureRect[1])

result_box[2] = int(textureRect[0] + textureRect[3])

result_box[3] = int(textureRect[1] + textureRect[2])else:

result_box[0]=int(textureRect[0])

result_box[1] = int(textureRect[1])

result_box[2] = int(textureRect[0] + textureRect[2])

result_box[3] = int(textureRect[1] + textureRect[3])#print(result_box, frames[frame].rotated, frame)

rect_on_big=big_image.crop(result_box)ifframes[frame].rotated:

rect_on_big=rect_on_big.transpose(Image.ROTATE_90)

result_image.paste(rect_on_big)if notos.path.isdir(file_path):

os.mkdir(file_path)

outfile= (file_path+‘/‘ + framename+‘.png‘)print outfile, "generated"result_image.save(outfile)if __name__ == ‘__main__‘:

filename= sys.argv[1]

plist_filename= filename + ‘.plist‘png_filename= filename + ‘.png‘

if (os.path.exists(plist_filename) andos.path.exists(png_filename)):

gen_png_from_plist( plist_filename, png_filename )else:print "make sure you have boith plist and png files in the same directory"

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值