Sergidev commited on
Commit
0170156
·
verified ·
1 Parent(s): 07a8fae

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +9 -0
utils.py CHANGED
@@ -105,3 +105,12 @@ def validate_json_parameters(json_str):
105
  raise ValueError("Invalid JSON format")
106
  except Exception as e:
107
  raise ValueError(f"Error parsing JSON: {str(e)}")
 
 
 
 
 
 
 
 
 
 
105
  raise ValueError("Invalid JSON format")
106
  except Exception as e:
107
  raise ValueError(f"Error parsing JSON: {str(e)}")
108
+
109
+ import base64
110
+ from io import BytesIO
111
+
112
+ def image_to_base64(image):
113
+ buffered = BytesIO()
114
+ image.save(buffered, format="PNG")
115
+ return base64.b64encode(buffered.getvalue()).decode("utf-8")
116
+