100 Smiley Faces
Author:
Sunday, March 11, 2018 - 04:43
Art Type:
License(s):
Collections:
Favorites:
7
100 different smileys, all 15x15 in size, put together into one large image.
File(s):
100 smileys.png 9.5 Kb [529 download(s)]
100 different smileys, all 15x15 in size, put together into one large image.
Comments
a python script that cuts them into individual pieces
fromPILimportImage
image = Image.open('100 smileys.png')i = 0forxinrange(10):foryinrange(10):emote = Image.new("RGBA", (15, 15), 0x0000_0000)copy = image.copy().crop((x * 15, y * 15, (x + 1) * 15, (y + 1) * 15))emote.paste(copy, (0, 0))emote.save(f'{i}.png')i += 1
very nice