File size: 4,278 Bytes
da240c7 37db736 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
import os
import json
import logging
from PIL import Image
import gradio as gr
from dotenv import load_dotenv
from db_examples import product_background_examples
# ํ๊ฒฝ ๋ณ์ ๋ก๋
load_dotenv()
# ๋ก๊น
์ค์
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
# ์บ์๋ ์ด๋ฏธ์ง ์ ์ฅ์
IMAGE_CACHE = {}
# CSS ๋ฐ ์์ด์ฝ ๋งํฌ (์์ ํญ ์ ์ฉ)
custom_css = """
:root {
--background-color: #FFFFFF;
--text-color: #334155;
--border-radius: 18px;
--shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.example-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
padding: 20px;
}
.example-item img {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: var(--border-radius);
}
.image-container {
border-radius: var(--border-radius);
overflow: hidden;
background-color: white;
transition: box-shadow 0.3s;
}
.image-container:hover {
box-shadow: var(--shadow);
}
.footer { visibility: hidden; }
"""
fontawesome_link = """
<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\" />
"""
# ์์ ์ด๋ฏธ์ง ์บ์ฑ ๋ฐ ๋ก๋
def load_image_cached(path):
if path not in IMAGE_CACHE:
try:
img = Image.open(path)
IMAGE_CACHE[path] = img
except Exception as e:
logger.error(f"์ด๋ฏธ์ง ๋ก๋ ์คํจ: {path} - {e}")
return None
return IMAGE_CACHE[path]
def preload_example_images():
for ex in product_background_examples:
load_image_cached(ex[0])
load_image_cached(ex[5])
# ์์ ์ ํ ํธ๋ค๋ฌ
def load_example(evt: gr.SelectData):
ex = product_background_examples[evt.index]
return ex[0], ex[1], ex[2], ex[3], ex[4] or "(์์)", ex[5]
# ์ฒซ ๋ฒ์งธ ์์ ์๋ ๋ก๋
def load_first_example():
if product_background_examples:
ex = product_background_examples[0]
return ex[0], ex[1], ex[2], ex[3], ex[4] or "(์์)", ex[5]
return None, "", "", "", "", None
# Gradio ์ฑ ์์ฑ
def create_app():
with gr.Blocks(css=custom_css, theme=gr.themes.Default(
primary_hue="orange", secondary_hue="orange",
font=[gr.themes.GoogleFont("Noto Sans KR"), "ui-sans-serif", "system-ui"]
)) as demo:
gr.HTML(fontawesome_link)
with gr.Tabs():
with gr.TabItem("์์ ๊ฒฐ๊ณผ ๋ณด๊ธฐ"):
with gr.Column():
gr.HTML('<div class="section-title"><img src="https://cdn-icons-png.flaticon.com/512/681/681443.png"> ์ํ ๋ฐฐ๊ฒฝ ์ด๋ฏธ์ง ์์ ๊ฐค๋ฌ๋ฆฌ</div>')
with gr.Row(elem_classes="example-gallery"):
for idx, ex in enumerate(product_background_examples):
item = gr.Image(value=ex[5], show_label=False, elem_classes="example-item")
item.select(fn=load_example, inputs=None, outputs=[example_input_image, example_bg_type, example_bg_option, example_product_name, example_additional_info, example_output_image], _js=None)
# ๋ฉ์ธ ๋ทฐ
with gr.Row():
example_input_image = gr.Image(label="์
๋ ฅ ์ด๋ฏธ์ง", elem_classes="image-container")
with gr.Column():
example_bg_type = gr.Textbox(label="๋ฐฐ๊ฒฝ ์ ํ", interactive=False)
example_bg_option = gr.Textbox(label="๋ฐฐ๊ฒฝ ์ ํ", interactive=False)
example_product_name = gr.Textbox(label="์ํ๋ช
", interactive=False)
example_additional_info = gr.Textbox(label="์ถ๊ฐ ์์ฒญ์ฌํญ", interactive=False)
example_output_image = gr.Image(label="๊ฒฐ๊ณผ ์ด๋ฏธ์ง", elem_classes="image-container")
demo.load(fn=load_first_example, outputs=[example_input_image, example_bg_type, example_bg_option, example_product_name, example_additional_info, example_output_image])
return demo
if __name__ == "__main__":
preload_example_images()
app = create_app()
app.launch(share=False, inbrowser=True)
|