Parcourir la source

change image size

tomoya il y a 7 mois
Parent
commit
2158ba8107
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      backend/app/app/api/api_v1/endpoints/images.py

+ 2 - 2
backend/app/app/api/api_v1/endpoints/images.py

@@ -124,11 +124,11 @@ def del_image():
 
 aspects = ['16:9', '3:2', '1:1', '2:3', '9:16']
 flux_image_size = [
-    (450, 800),
+    (448, 800),
     (480, 720),
     (600, 600),
     (720, 480),
-    (800, 250)
+    (800, 448)
 ]
 
 def remove_file(path: str) -> None: