a python script that cuts them into individual pieces
fromPILimportImageimage = 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
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