Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,76 +1,51 @@
|
|
1 |
-
import
|
2 |
-
import numpy as np
|
3 |
from PIL import Image
|
4 |
-
import
|
5 |
-
|
6 |
-
# Convert 24-bit RGB to 16-bit RGB565
|
7 |
-
def rgb_to_rgb565(r, g, b):
|
8 |
-
return ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3)
|
9 |
-
|
10 |
-
# Convert image to RGB565 format
|
11 |
-
def convert_to_rgb565(image):
|
12 |
-
image = image.convert("RGB") # Ensure image is in RGB mode
|
13 |
-
pixels = np.array(image)
|
14 |
-
height, width, _ = pixels.shape
|
15 |
-
rgb565_data = []
|
16 |
-
|
17 |
-
for y in range(height):
|
18 |
-
for x in range(width):
|
19 |
-
r, g, b = pixels[y, x]
|
20 |
-
rgb565_data.append(rgb_to_rgb565(r, g, b))
|
21 |
-
|
22 |
-
return rgb565_data, width, height
|
23 |
-
|
24 |
-
# Generate a .c file with RGB565 image data
|
25 |
-
def generate_c_file(frames, width, height, output_filename="gif_frames.c"):
|
26 |
-
with open(output_filename, "w") as f:
|
27 |
-
f.write("#include <stdint.h>\n\n")
|
28 |
-
f.write(f"const uint16_t gif_width = {width};\n")
|
29 |
-
f.write(f"const uint16_t gif_height = {height};\n\n")
|
30 |
-
|
31 |
-
for i, frame in enumerate(frames):
|
32 |
-
f.write(f"const uint16_t frame_{i}[] = {{\n")
|
33 |
-
for j, pixel in enumerate(frame):
|
34 |
-
f.write(f"0x{pixel:04X}, ")
|
35 |
-
if (j + 1) % 10 == 0:
|
36 |
-
f.write("\n")
|
37 |
-
f.write("};\n\n")
|
38 |
-
|
39 |
-
f.write(f"const uint16_t* gif_frames[{len(frames)}] = {{\n")
|
40 |
-
for i in range(len(frames)):
|
41 |
-
f.write(f" frame_{i},\n")
|
42 |
-
f.write("};\n")
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
title="GIF to C File Converter",
|
74 |
-
description="Upload a GIF to convert it into a C file with RGB565 format for use on LilyGO T-Display S3.")
|
75 |
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
|
|
2 |
from PIL import Image
|
3 |
+
import numpy as np
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
+
def gif_to_c_array(gif_path, output_c_file):
|
6 |
+
gif = Image.open(gif_path)
|
7 |
+
frame_count = 0
|
8 |
+
c_code = f"const uint16_t {output_c_file.split('.')[0]}[] PROGMEM = {{\n"
|
9 |
|
10 |
+
try:
|
11 |
+
while True:
|
12 |
+
frame = gif.convert("RGB")
|
13 |
+
frame = frame.resize((240, 135))
|
14 |
+
frame_array = np.array(frame)
|
15 |
+
|
16 |
+
for y in range(frame_array.shape[0]):
|
17 |
+
for x in range(frame_array.shape[1]):
|
18 |
+
r, g, b = frame_array[y, x]
|
19 |
+
rgb565 = ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3)
|
20 |
+
c_code += f"0x{rgb565:04X}, "
|
21 |
+
c_code += "\n"
|
22 |
+
|
23 |
+
frame_count += 1
|
24 |
+
gif.seek(gif.tell() + 1)
|
25 |
+
except EOFError:
|
26 |
+
pass
|
27 |
+
|
28 |
+
c_code += "};\n"
|
29 |
+
c_code += f"const uint16_t {output_c_file.split('.')[0]}_frame_count = {frame_count};\n"
|
30 |
+
|
31 |
+
with open(output_c_file, "w") as f:
|
32 |
+
f.write(c_code)
|
33 |
+
|
34 |
+
return output_c_file
|
35 |
|
36 |
+
# Streamlit App
|
37 |
+
st.title("GIF to C Converter for LilyGO T-Display S3")
|
38 |
+
st.write("Upload a GIF to convert it to a .c file.")
|
|
|
|
|
39 |
|
40 |
+
uploaded_file = st.file_uploader("Upload GIF", type=["gif"])
|
41 |
+
if uploaded_file is not None:
|
42 |
+
output_file = "output.c"
|
43 |
+
c_file_path = gif_to_c_array(uploaded_file, output_file)
|
44 |
+
|
45 |
+
with open(c_file_path, "rb") as f:
|
46 |
+
st.download_button(
|
47 |
+
label="Download .c File",
|
48 |
+
data=f,
|
49 |
+
file_name=output_file,
|
50 |
+
mime="text/plain"
|
51 |
+
)
|