Home | History | Annotate | Download | only in recovery

Lines Matching defs:base

16 "installing" icon animation and turn it into a base image plus a set
31 base = Image.open(sys.argv[1])
33 minmini = base.size[0]-1
35 minminj = base.size[1]-1
42 assert base.size == top.size
44 mini = base.size[0]-1
46 minj = base.size[1]-1
49 h, w = base.size
52 b = base.getpixel((i,j))
83 # Write out the base icon, which is the first frame with that box
89 base.putpixel((i+minmini, j+minminj), (0, 0, 0))
91 base.save(fn)