ginipick commited on
Commit
e4f3777
ยท
verified ยท
1 Parent(s): efb2200

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -48
app.py CHANGED
@@ -678,32 +678,21 @@ def add_text_to_image(
678
  # ์ „์—ญ ๋ณ€์ˆ˜ ์„ค์ •
679
  current_position = None # position ์ƒํƒœ๋ฅผ ์ „์—ญ์œผ๋กœ ๊ด€๋ฆฌํ•˜๊ธฐ ์œ„ํ•œ ๋ณ€์ˆ˜
680
 
681
- # ์œ„์น˜ ์—…๋ฐ์ดํŠธ ํ•จ์ˆ˜ ์ˆ˜์ •
682
- def update_position(new_position):
683
  print(f"Position updated to: {new_position}") # ๋””๋ฒ„๊น…์šฉ
684
- # ๋ชจ๋“  ๋ฒ„ํŠผ์˜ ์Šคํƒ€์ผ ์—…๋ฐ์ดํŠธ
685
- for btn in [btn_top_left, btn_top_center, btn_top_right,
686
- btn_middle_left, btn_middle_center, btn_middle_right,
687
- btn_bottom_left, btn_bottom_center, btn_bottom_right]:
688
- btn.elem_classes = ["position-btn", "selected"] if btn == new_position else ["position-btn"]
689
- return new_position
690
-
691
- def update_button_styles():
692
- return {
693
- btn: gr.update(elem_classes=["position-btn", "selected"] if pos == current_position else ["position-btn"])
694
- for btn, pos in [
695
- (btn_top_left, "top-left"),
696
- (btn_top_center, "top-center"),
697
- (btn_top_right, "top-right"),
698
- (btn_middle_left, "middle-left"),
699
- (btn_middle_center, "middle-center"),
700
- (btn_middle_right, "middle-right"),
701
- (btn_bottom_left, "bottom-left"),
702
- (btn_bottom_center, "bottom-center"),
703
- (btn_bottom_right, "bottom-right")
704
- ]
705
- }
706
-
707
  with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
708
  gr.HTML("""
709
  <div class="main-title">
@@ -870,27 +859,21 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
870
  </style>
871
  """)
872
 
873
-
874
  # ๋ฒ„ํŠผ ํด๋ฆญ ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
875
- btn_top_left.click(fn=lambda: update_position("top-left"), outputs=position)
876
- btn_top_center.click(fn=lambda: update_position("top-center"), outputs=position)
877
- btn_top_right.click(fn=lambda: update_position("top-right"), outputs=position)
878
- btn_middle_left.click(fn=lambda: update_position("middle-left"), outputs=position)
879
- btn_middle_center.click(fn=lambda: update_position("middle-center"), outputs=position)
880
- btn_middle_right.click(fn=lambda: update_position("middle-right"), outputs=position)
881
- btn_bottom_left.click(fn=lambda: update_position("bottom-left"), outputs=position)
882
- btn_bottom_center.click(fn=lambda: update_position("bottom-center"), outputs=position)
883
- btn_bottom_right.click(fn=lambda: update_position("bottom-right"), outputs=position)
884
-
885
- def update_controls(bg_prompt):
886
- """๋ฐฐ๊ฒฝ ํ”„๋กฌํ”„ํŠธ ์ž…๋ ฅ ์—ฌ๋ถ€์— ๋”ฐ๋ผ ์ปจํŠธ๋กค ํ‘œ์‹œ ์—…๋ฐ์ดํŠธ"""
887
- is_visible = bool(bg_prompt)
888
- return [
889
- gr.update(visible=is_visible), # aspect_ratio
890
- gr.update(visible=is_visible), # object_controls
891
- ]
892
-
893
- # ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ์—์„œ๋„ ํ•„์š”
894
  bg_prompt.change(
895
  fn=update_controls,
896
  inputs=bg_prompt,
@@ -898,7 +881,6 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
898
  queue=False
899
  )
900
 
901
- # ๊ธฐํƒ€ ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
902
  input_image.change(
903
  fn=update_process_button,
904
  inputs=[input_image, text_prompt],
@@ -913,8 +895,6 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
913
  queue=False
914
  )
915
 
916
-
917
-
918
  process_btn.click(
919
  fn=process_prompt,
920
  inputs=[
 
678
  # ์ „์—ญ ๋ณ€์ˆ˜ ์„ค์ •
679
  current_position = None # position ์ƒํƒœ๋ฅผ ์ „์—ญ์œผ๋กœ ๊ด€๋ฆฌํ•˜๊ธฐ ์œ„ํ•œ ๋ณ€์ˆ˜
680
 
681
+ def update_position(new_position, *buttons):
 
682
  print(f"Position updated to: {new_position}") # ๋””๋ฒ„๊น…์šฉ
683
+ updates = []
684
+ for btn in buttons:
685
+ updates.append(gr.update(elem_classes=["position-btn", "selected"] if btn == new_position else ["position-btn"]))
686
+ return [new_position] + updates
687
+
688
+ def update_controls(bg_prompt):
689
+ """๋ฐฐ๊ฒฝ ํ”„๋กฌํ”„ํŠธ ์ž…๋ ฅ ์—ฌ๋ถ€์— ๋”ฐ๋ผ ์ปจํŠธ๋กค ํ‘œ์‹œ ์—…๋ฐ์ดํŠธ"""
690
+ is_visible = bool(bg_prompt)
691
+ return [
692
+ gr.update(visible=is_visible), # aspect_ratio
693
+ gr.update(visible=is_visible), # object_controls
694
+ ]
695
+
 
 
 
 
 
 
 
 
 
 
696
  with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
697
  gr.HTML("""
698
  <div class="main-title">
 
859
  </style>
860
  """)
861
 
 
862
  # ๋ฒ„ํŠผ ํด๋ฆญ ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
863
+ all_position_buttons = [btn_top_left, btn_top_center, btn_top_right,
864
+ btn_middle_left, btn_middle_center, btn_middle_right,
865
+ btn_bottom_left, btn_bottom_center, btn_bottom_right]
866
+
867
+ for btn, pos in zip(all_position_buttons,
868
+ ["top-left", "top-center", "top-right",
869
+ "middle-left", "middle-center", "middle-right",
870
+ "bottom-left", "bottom-center", "bottom-right"]):
871
+ btn.click(
872
+ fn=lambda p=pos: update_position(p),
873
+ outputs=[position] + all_position_buttons
874
+ )
875
+
876
+ # ์ด๋ฒคํŠธ ๋ฐ”์ธ๋”ฉ
 
 
 
 
 
877
  bg_prompt.change(
878
  fn=update_controls,
879
  inputs=bg_prompt,
 
881
  queue=False
882
  )
883
 
 
884
  input_image.change(
885
  fn=update_process_button,
886
  inputs=[input_image, text_prompt],
 
895
  queue=False
896
  )
897
 
 
 
898
  process_btn.click(
899
  fn=process_prompt,
900
  inputs=[