From 22e751fb77d7b060dc2ef73254b7d6bdb0aa208d Mon Sep 17 00:00:00 2001
From: s47700 <s47700@bht-berlin.de>
Date: Sat, 23 Mar 2024 16:25:32 +0100
Subject: [PATCH] Upload New File

---
 .../foward image attempts/fo2ward__2.py       | 30 +++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 api attempts/foward image attempts/fo2ward__2.py

diff --git a/api attempts/foward image attempts/fo2ward__2.py b/api attempts/foward image attempts/fo2ward__2.py
new file mode 100644
index 0000000..1b49c5d
--- /dev/null
+++ b/api attempts/foward image attempts/fo2ward__2.py	
@@ -0,0 +1,30 @@
+import requests
+from PIL import Image
+from io import BytesIO
+
+# Fetch camera image from OctoPrint
+def fetch_camera_image():
+    #url = "http://192.168.0.205/webcam/?action=stream"
+    url =  "https://www.example.com/image.jpg"
+    try:
+        response = requests.get(url, timeout=10)
+        print(f"Response status code: {response.status_code}")  # Check the status code of the response
+        print(f"Response size: {len(response.content)} bytes")  # Check the size of the response
+        return response.content
+    except Exception as e:
+        print(f"Error fetching image: {e}")  # Log any errors
+        return None
+
+def display_image(image_data):
+    if image_data:
+        try:
+            image = Image.open(BytesIO(image_data))
+            image.show()
+        except Exception as e:
+            print(f"Error displaying image: {e}")  # Log any errors
+    else:
+        print("No image data to display")
+
+if __name__ == "__main__":
+    image_data = fetch_camera_image()
+    display_image(image_data)
-- 
GitLab