-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatlas.py
66 lines (52 loc) · 2.28 KB
/
atlas.py
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
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
import sys
import os
import argparse
import logging
from atlas.packer import *
from atlas.input import *
from atlas.output import *
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description = '''
Packs several image file into a single atlas image, and provides
an index file mapping filenames to rectangles in the atlas\n''',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('files', nargs='+', metavar="IMAGE", help='filenames of the images to pack')
parser.add_argument('-a', '--atlas', default='atlas', help='filename of the atlas file (without extension)')
parser.add_argument('-i', '--index', default='index', help='filename of the index file (without extension)')
parser.add_argument('-it', '--indextype', default='json', choices=['json', 'css'],
help='type of index file')
parser.add_argument('-v', '--verbose', action='store_const',
default=argparse.SUPPRESS, const=True, help='display verbose progress info')
parser.add_argument('-pma', '--premultiply-alpha', action='store_true',
help='Premultiplies the alpha channel into the color channels, desired for some rendering pipelines')
args = parser.parse_args()
# Set parent loglevel"
logging.basicConfig(level = logging.INFO if 'verbose' in args.__dict__ else logging.WARNING)
rects = []
# Load images
for name in args.files:
try:
# TODO: Add correct filetype
infile = open(name, 'rb')
rect = PngRect(infile, name)
rect.premultiply_alpha = args.premultiply_alpha
rects.append(rect)
infile.close()
except:
logging.exception('Could not open input file [%s] for reading' % name)
exit(1)
# Packing
packer = Packer(rects)
res, area = packer.pack()
# Atlas
atlasfile = '%s.%s' % (args.atlas, 'png')
PngAtlas(res).write(atlasfile)
# Index
indexfile = '%s.%s' % (args.index, args.indextype)
indexclass = {
'json': JsonIndexOutput,
'css': CssIndexOutput
}[args.indextype]
indexclass(res, indexfile, atlasfile).write()