Spaces:
Paused
Paused
Update app.py
Browse files
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
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
return
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
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 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
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=[
|