Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate

100 Smiley Faces

Author: 
Angrycheese
Sunday, March 11, 2018 - 04:43
Art Type: 
2D Art
Tags: 
smiley face
smiley
Pixel Art
15x15
small
emoticons
icons
emojis
emoji
emoticon
License(s): 
CC0
Collections: 
  • Emoji
  • Prototype Stuff
Favorites: 
9
Share Icons: 
Preview: 
Preview

100 different smileys, all 15x15 in size, put together into one large image.

File(s): 
100 smileys.png 100 smileys.png 9.5 Kb [565 download(s)]
  • Log in or register to post comments

Comments

biom4st3r
joined 3 years 3 days ago
05/13/2022 - 14:17

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

 

  • Log in or register to post comments
Angrycheese
joined 7 years 2 months ago
05/13/2022 - 23:49
Angrycheese's picture

very nice

  • Log in or register to post comments