recenter linux icon

This commit is contained in:
jacob1 2018-05-05 21:49:07 -04:00
parent 002ab799c5
commit 841022c907
5 changed files with 590 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -20,4 +20,3 @@
*/
#pragma once
extern const unsigned char app_icon[];
extern const unsigned char app_icon_bitmap[];

View File

@ -1,7 +1,16 @@
import sys
from PIL import Image
image = Image.open(sys.argv[1])
with open(sys.argv[1], "rb") as icon:
output = ""
formatted = []
for pixel in image.getdata():
formatted.extend("0x{0:02X}".format(byte) for byte in pixel)
for i in range(len(formatted)/16 + 1):
print(", ".join(formatted[i*16:(i+1)*16]) + ",")
"""with open(sys.argv[1], "rb") as icon:
icondata = icon.read()
output = ["0x{0:02X}".format(ord(byte)) for byte in icondata]
for line in range(len(output)/16+1):
print(", ".join(output[line*16:(line+1)*16])+",")
print(", ".join(output[line*16:(line+1)*16])+",")"""

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -188,7 +188,7 @@ int SDLOpen()
//SDL_SetWindowResizable(sdl_window, SDL_TRUE);
#ifdef LIN
SDL_Surface *icon = SDL_CreateRGBSurfaceFrom((void*)app_icon, 48, 48, 24, 144, 0x00FF0000, 0x0000FF00, 0x000000FF, 0);
SDL_Surface *icon = SDL_CreateRGBSurfaceFrom((void*)app_icon, 48, 48, 32, 192, 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000);
SDL_SetWindowIcon(sdl_window, icon);
SDL_FreeSurface(icon);
#endif