首页 > 编程语言 > 详细

[python] plist图集拆分小图

时间:2020-11-13 18:10:00      阅读:73      评论:0      收藏:0      [点我收藏+]
#!python
import os,sys
import plistlib
from PIL import Image

def gen_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 = lambda x:int(x)
    for frame in frames:
        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)
        if frames[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)
        if frames[frame].rotated:
            rect_on_big = rect_on_big.transpose(Image.ROTATE_90)
        result_image.paste(rect_on_big)
        
        if not os.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) and os.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"

 

[python] plist图集拆分小图

原文:https://www.cnblogs.com/ring1992/p/13970639.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!