Skip to content

Instantly share code, notes, and snippets.

View oldmota's full-sized avatar

Gustavo Mota oldmota

  • Salvador, Brazil
View GitHub Profile
@oldmota
oldmota / file_to_png.py
Last active March 2, 2021 01:46
Python script to convert any file to PNG and back, made just for fun
from sys import argv
from math import sqrt, ceil
from struct import pack, unpack
from PIL import Image
def file_to_image(data, ext):
size = pack(">I", len(data))
full_data = bytearray(ext + '\0', 'ascii') + size + data