The-Powder-Toy/resources/icon/icontofile.py

17 lines
493 B
Python
Raw Normal View History

import sys
2018-05-05 20:49:07 -05:00
from PIL import Image
image = Image.open(sys.argv[1])
2018-05-05 20:49:07 -05:00
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):
2018-05-05 20:49:07 -05:00
print(", ".join(output[line*16:(line+1)*16])+",")"""