switching images to byte
This commit is contained in:
parent
d7a291a58f
commit
188b462540
78
mp-server.py
78
mp-server.py
@ -10,7 +10,8 @@ import subprocess
|
|||||||
from PIL import Image, ImageTk
|
from PIL import Image, ImageTk
|
||||||
import pystray # Add this import for system tray functionality
|
import pystray # Add this import for system tray functionality
|
||||||
import io
|
import io
|
||||||
import time
|
import uuid
|
||||||
|
import shutil
|
||||||
|
|
||||||
class MacroPadServer:
|
class MacroPadServer:
|
||||||
def __init__(self, root):
|
def __init__(self, root):
|
||||||
@ -18,6 +19,10 @@ class MacroPadServer:
|
|||||||
self.root.title("MacroPad Server")
|
self.root.title("MacroPad Server")
|
||||||
self.root.geometry("800x600")
|
self.root.geometry("800x600")
|
||||||
|
|
||||||
|
# Create the image Directory
|
||||||
|
self.images_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "macro_images")
|
||||||
|
os.makedirs(self.images_dir, exist_ok=True)
|
||||||
|
|
||||||
# Set dark theme colors
|
# Set dark theme colors
|
||||||
self.bg_color = "#2E2E2E"
|
self.bg_color = "#2E2E2E"
|
||||||
self.fg_color = "#FFFFFF"
|
self.fg_color = "#FFFFFF"
|
||||||
@ -167,12 +172,13 @@ class MacroPadServer:
|
|||||||
frame.grid(row=row, column=col, padx=10, pady=10, sticky="nsew")
|
frame.grid(row=row, column=col, padx=10, pady=10, sticky="nsew")
|
||||||
|
|
||||||
# Load image if exists
|
# Load image if exists
|
||||||
if "image_data" in macro and macro["image_data"]:
|
if "image_path" in macro and macro["image_path"]:
|
||||||
try:
|
try:
|
||||||
image_data = base64.b64decode(macro["image_data"])
|
img_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), macro["image_path"])
|
||||||
image = Image.open(io.BytesIO(image_data))
|
img = Image.open(img_path)
|
||||||
image = image.resize((64, 64), Image.LANCZOS)
|
# Resize for display
|
||||||
photo = ImageTk.PhotoImage(image)
|
img.thumbnail((64, 64)) # Keep aspect ratio for display
|
||||||
|
photo = ImageTk.PhotoImage(img)
|
||||||
label = tk.Label(frame, image=photo, bg=self.highlight_color)
|
label = tk.Label(frame, image=photo, bg=self.highlight_color)
|
||||||
label.image = photo # Keep a reference
|
label.image = photo # Keep a reference
|
||||||
label.pack()
|
label.pack()
|
||||||
@ -256,12 +262,22 @@ class MacroPadServer:
|
|||||||
macro_id = str(len(self.macros) + 1)
|
macro_id = str(len(self.macros) + 1)
|
||||||
|
|
||||||
# Process image
|
# Process image
|
||||||
image_data = ""
|
image_path_reference = ""
|
||||||
img_path = image_path.get()
|
img_path = image_path.get()
|
||||||
if img_path:
|
if img_path:
|
||||||
try:
|
try:
|
||||||
with open(img_path, "rb") as img_file:
|
# Generate unique filename for the image
|
||||||
image_data = base64.b64encode(img_file.read()).decode('utf-8')
|
file_ext = os.path.splitext(img_path)[1].lower()
|
||||||
|
unique_filename = f"{uuid.uuid4().hex}{file_ext}"
|
||||||
|
dest_path = os.path.join(self.images_dir, unique_filename)
|
||||||
|
|
||||||
|
# Resize image to max 256x256
|
||||||
|
with Image.open(img_path) as img:
|
||||||
|
img.thumbnail((256, 256))
|
||||||
|
img.save(dest_path)
|
||||||
|
|
||||||
|
# Store the relative path to the image
|
||||||
|
image_path_reference = os.path.join("macro_images", unique_filename)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Error processing image: {e}")
|
print(f"Error processing image: {e}")
|
||||||
|
|
||||||
@ -270,7 +286,7 @@ class MacroPadServer:
|
|||||||
"name": name,
|
"name": name,
|
||||||
"type": macro_type,
|
"type": macro_type,
|
||||||
"command": command,
|
"command": command,
|
||||||
"image_data": image_data,
|
"image_path": image_path_reference,
|
||||||
"modifiers": {
|
"modifiers": {
|
||||||
"ctrl": ctrl_var.get(),
|
"ctrl": ctrl_var.get(),
|
||||||
"alt": alt_var.get(),
|
"alt": alt_var.get(),
|
||||||
@ -398,21 +414,32 @@ class MacroPadServer:
|
|||||||
command = command_text.get("1.0", tk.END).strip()
|
command = command_text.get("1.0", tk.END).strip()
|
||||||
|
|
||||||
# Keep the old image or update with new one
|
# Keep the old image or update with new one
|
||||||
image_data = macro.get("image_data", "")
|
image_path_reference = macro.get("image_path", "")
|
||||||
img_path = image_path.get()
|
img_path = image_path.get()
|
||||||
if img_path:
|
if img_path:
|
||||||
try:
|
try:
|
||||||
with open(img_path, "rb") as img_file:
|
# Generate unique filename for the image
|
||||||
image_data = base64.b64encode(img_file.read()).decode('utf-8')
|
file_ext = os.path.splitext(img_path)[1].lower()
|
||||||
|
unique_filename = f"{uuid.uuid4().hex}{file_ext}"
|
||||||
|
dest_path = os.path.join(self.images_dir, unique_filename)
|
||||||
|
|
||||||
|
# Resize image to max 256x256
|
||||||
|
with Image.open(img_path) as img:
|
||||||
|
img.thumbnail((256, 256))
|
||||||
|
img.save(dest_path)
|
||||||
|
|
||||||
|
# Store the relative path to the image
|
||||||
|
image_path_reference = os.path.join("macro_images", unique_filename)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Error processing image: {e}")
|
print(f"Error processing image: {e}")
|
||||||
|
|
||||||
|
|
||||||
# Update macro with modifiers
|
# Update macro with modifiers
|
||||||
self.macros[macro_id] = {
|
self.macros[macro_id] = {
|
||||||
"name": name,
|
"name": name,
|
||||||
"type": new_type,
|
"type": new_type,
|
||||||
"command": command,
|
"command": command,
|
||||||
"image_data": image_data,
|
"image_path": image_path_reference,
|
||||||
"modifiers": {
|
"modifiers": {
|
||||||
"ctrl": ctrl_var.get(),
|
"ctrl": ctrl_var.get(),
|
||||||
"alt": alt_var.get(),
|
"alt": alt_var.get(),
|
||||||
@ -463,6 +490,15 @@ class MacroPadServer:
|
|||||||
|
|
||||||
# Confirm deletion
|
# Confirm deletion
|
||||||
if tk.messagebox.askyesno("Confirm Deletion", f"Are you sure you want to delete macro '{selected_name}'?"):
|
if tk.messagebox.askyesno("Confirm Deletion", f"Are you sure you want to delete macro '{selected_name}'?"):
|
||||||
|
# Delete associated image file if it exists
|
||||||
|
macro = self.macros[selected_macro_id]
|
||||||
|
if "image_path" in macro and macro["image_path"]:
|
||||||
|
try:
|
||||||
|
img_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), macro["image_path"])
|
||||||
|
if os.path.exists(img_path):
|
||||||
|
os.remove(img_path)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error removing image file: {e}")
|
||||||
del self.macros[selected_macro_id]
|
del self.macros[selected_macro_id]
|
||||||
self.save_macros()
|
self.save_macros()
|
||||||
self.display_macros()
|
self.display_macros()
|
||||||
@ -572,6 +608,20 @@ class MacroPadServer:
|
|||||||
success = self.execute_macro(request['macro_id'])
|
success = self.execute_macro(request['macro_id'])
|
||||||
response = {'success': success}
|
response = {'success': success}
|
||||||
client_socket.send(json.dumps(response).encode('utf-8'))
|
client_socket.send(json.dumps(response).encode('utf-8'))
|
||||||
|
elif request['action'] == 'get_image':
|
||||||
|
image_path = request['image_path']
|
||||||
|
if os.path.exists(image_path):
|
||||||
|
try:
|
||||||
|
with open(image_path, 'rb') as f:
|
||||||
|
image_data =f.read
|
||||||
|
image_size = len(image_data)
|
||||||
|
client_socket.send(str(image_size).encode('utf-8'))
|
||||||
|
client_socket.recv(1024) # Wait for acknowledgment
|
||||||
|
client_socket.sendall(image_data)
|
||||||
|
except FileNotFoundError:
|
||||||
|
client_socket.send(b"ERROR: Image not found")
|
||||||
|
except Exception as e:
|
||||||
|
client_socket.send(f"ERROR: {str(e)}".encode('utf-8'))
|
||||||
else:
|
else:
|
||||||
client_socket.send(json.dumps({'error': 'Unknown action'}).encode('utf-8'))
|
client_socket.send(json.dumps({'error': 'Unknown action'}).encode('utf-8'))
|
||||||
except (json.JSONDecodeError, KeyError, TypeError) as e:
|
except (json.JSONDecodeError, KeyError, TypeError) as e:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user