2023-09-20 17:53:32 +00:00
|
|
|
from PIL import Image
|
|
|
|
import math
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
prog = 'Image Edit Script',
|
|
|
|
description = 'Manipulate or extract information from an image file',
|
|
|
|
epilog = '')
|
|
|
|
|
|
|
|
parser.add_argument('filename') # positional argument
|
|
|
|
parser.add_argument('-o', '--output') # option that takes a value
|
2023-12-31 13:01:44 +00:00
|
|
|
parser.add_argument('-f', '--format', choices=['firmware','nodered','nodered_int'], default='firmware', help='Output format') # option that takes a value
|
2023-09-20 17:53:32 +00:00
|
|
|
parser.add_argument('-v', '--verbose', action='store_true') # on/off flag
|
2023-12-31 14:29:28 +00:00
|
|
|
parser.add_argument('-i', '--invert', action='store_true')
|
2023-09-20 17:53:32 +00:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
2023-12-31 14:29:28 +00:00
|
|
|
print(args.filename, args.output, args.format,args.verbose,args.invert)
|
2023-09-20 17:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
im = Image.open(args.filename) # Can be many different formats.
|
|
|
|
pix = im.load()
|
|
|
|
print(im.size) # Get the width and hight of the image for iterating over
|
|
|
|
print(pix[10,10]) # Get the RGBA Value of the a pixel of an image
|
|
|
|
|
2023-12-31 13:01:44 +00:00
|
|
|
output_pre=""
|
|
|
|
output_col_preL=""
|
|
|
|
output_col_writeCol_flag=False
|
|
|
|
output_col_preR=""
|
|
|
|
output_col_write_binary_flag=False
|
|
|
|
output_col_write_int_flag=False
|
|
|
|
output_col_post=""
|
|
|
|
output_post=""
|
|
|
|
|
|
|
|
if args.format=='firmware':
|
|
|
|
output_pre=""
|
|
|
|
output_col_preL="backBuffer["
|
|
|
|
output_col_writeCol_flag=True
|
|
|
|
output_col_preR="]=0b"
|
|
|
|
output_col_write_binary_flag=True
|
|
|
|
output_col_post=";\n"
|
|
|
|
elif args.format=='nodered': #Nodered Binary
|
|
|
|
output_pre="msg.payload=\"\\\n"
|
|
|
|
output_col_preL=""
|
|
|
|
output_col_writeCol_flag=False
|
|
|
|
output_col_preR=""
|
|
|
|
output_col_write_binary_flag=True
|
|
|
|
output_col_post="\\\n"
|
|
|
|
output_post="\";\nreturn msg;"
|
|
|
|
elif args.format=='nodered_int': #Nodered Int
|
|
|
|
output_pre="msg.payload=\"\\\n"
|
|
|
|
output_col_preL=""
|
|
|
|
output_col_writeCol_flag=False
|
|
|
|
output_col_preR=""
|
|
|
|
output_col_write_int_flag=True
|
|
|
|
output_col_post=","
|
|
|
|
output_post="\";\nreturn msg;"
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-20 17:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def calculateDistance(x1,y1,x2,y2):
|
|
|
|
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
|
|
|
|
return dist
|
|
|
|
|
|
|
|
with open('result.txt', 'w') as f:
|
2023-12-31 13:01:44 +00:00
|
|
|
f.write(output_pre)
|
2023-09-20 17:53:32 +00:00
|
|
|
for x in range(im.size[0]):
|
2023-12-31 13:01:44 +00:00
|
|
|
f.write(output_col_preL)
|
|
|
|
if output_col_writeCol_flag:
|
|
|
|
f.write(str(x))
|
|
|
|
f.write(output_col_preR)
|
|
|
|
|
|
|
|
columnValue=0
|
2023-11-25 11:41:16 +00:00
|
|
|
for y in reversed(range(im.size[1])):
|
2023-09-20 17:53:32 +00:00
|
|
|
c = pix[x,y] #get pixel
|
2023-12-31 14:29:28 +00:00
|
|
|
if args.invert:
|
|
|
|
c=255-c
|
|
|
|
|
2023-09-20 17:53:32 +00:00
|
|
|
if (c[0]>127):
|
2023-12-31 13:01:44 +00:00
|
|
|
if output_col_write_binary_flag:
|
|
|
|
f.write("1")
|
|
|
|
columnValue+=pow(2,y)
|
2023-09-20 17:53:32 +00:00
|
|
|
else:
|
2023-12-31 13:01:44 +00:00
|
|
|
if output_col_write_binary_flag:
|
|
|
|
f.write("0")
|
|
|
|
|
|
|
|
if output_col_write_int_flag:
|
|
|
|
f.write(str(columnValue))
|
2023-09-20 17:53:32 +00:00
|
|
|
|
|
|
|
|
2023-12-31 13:01:44 +00:00
|
|
|
f.write(output_col_post)
|
2023-09-20 17:53:32 +00:00
|
|
|
|
2023-12-31 13:01:44 +00:00
|
|
|
f.write(output_post)
|
2023-09-20 17:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|