You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
import binascii
|
|
import os
|
|
import sys
|
|
|
|
try:
|
|
input_file = sys.argv[1]
|
|
except IndexError:
|
|
print('No file or directory given using current working directory')
|
|
input_file = os.getcwd()
|
|
|
|
def run(in_file):
|
|
output_file = os.path.splitext(in_file)[0] + '.py'
|
|
ext = os.path.splitext(in_file)[1][1:]
|
|
|
|
with open(in_file, 'rb') as f:
|
|
data = f.read()
|
|
|
|
data = binascii.hexlify(data)
|
|
data = [' ' + str(data[i: min(i + 74, len(data))])[1:] for i in range(0, len(data), 74)]
|
|
data = '\n'.join(data)
|
|
|
|
output = f'''\
|
|
import binascii
|
|
|
|
_{ext} = bytearray(binascii.unhexlify(
|
|
{data}
|
|
))
|
|
{ext} = memoryview(_{ext})
|
|
'''
|
|
|
|
with open(output_file, 'w') as f:
|
|
f.write(output)
|
|
|
|
def process_directory(directory):
|
|
for root, _, files in os.walk(directory):
|
|
for file in files:
|
|
file_ext = os.path.splitext(file)[1][1:]
|
|
if file_ext not in ('bmp', 'jpg', 'gif', 'png', 'bin', 'MF'):
|
|
continue
|
|
|
|
thisfile = os.path.join(root, file)
|
|
print('found file:', thisfile)
|
|
run(thisfile)
|
|
|
|
if os.path.isdir(input_file):
|
|
process_directory(input_file)
|
|
else:
|
|
file_ext = os.path.splitext(input_file)[1][1:]
|
|
if file_ext not in ('bmp', 'jpg', 'gif', 'png', 'bin'):
|
|
raise RuntimeError('supported image files are bmp, jpg, gif and png')
|
|
print('found file:', input_file)
|
|
run(input_file)
|
|
|
|
print('DONE!!')
|