Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
import cv2
|
3 |
import numpy as np
|
4 |
-
from PIL import Image
|
5 |
|
6 |
-
def combine_images(dress_image, design_image, position, size):
|
7 |
# Convert images to numpy arrays
|
8 |
dress = np.array(dress_image)
|
9 |
design = np.array(design_image)
|
@@ -11,6 +11,7 @@ def combine_images(dress_image, design_image, position, size):
|
|
11 |
# Convert position and size from strings to tuples of integers
|
12 |
x, y = map(int, position.split(","))
|
13 |
width, height = map(int, size.split(","))
|
|
|
14 |
|
15 |
# Resize design image to fit the size
|
16 |
design_resized = cv2.resize(design, (width, height))
|
@@ -40,36 +41,45 @@ def combine_images(dress_image, design_image, position, size):
|
|
40 |
for c in range(3):
|
41 |
dress[y:y+h, x:x+w, c] = dress[y:y+h, x:x+w, c] * (1 - design_mask) + design_resized[:, :, c] * design_mask
|
42 |
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
def interface():
|
46 |
with gr.Blocks() as demo:
|
47 |
-
gr.Markdown("## Image Editor with
|
48 |
dress_image = gr.Image(type="pil", label="Upload Dress Image")
|
49 |
design_image = gr.Image(type="pil", label="Upload Design Image")
|
50 |
|
51 |
position = gr.Textbox(placeholder="Enter position as x,y", value="100,100", label="Position")
|
52 |
size = gr.Textbox(placeholder="Enter size as width,height", value="200,200", label="Size")
|
53 |
|
|
|
|
|
|
|
|
|
|
|
54 |
btn = gr.Button("Fit Design")
|
55 |
output = gr.Image(type="pil", label="Final Output")
|
56 |
|
57 |
# Button click function
|
58 |
btn.click(
|
59 |
combine_images,
|
60 |
-
inputs=[dress_image, design_image, position, size],
|
61 |
outputs=output
|
62 |
)
|
63 |
|
64 |
-
# Add JavaScript for additional interactivity (basic example)
|
65 |
-
gr.HTML("""
|
66 |
-
<script>
|
67 |
-
// JavaScript code for drag-and-drop functionality
|
68 |
-
// This code needs to be customized based on how images are rendered
|
69 |
-
// and will likely require additional adjustments.
|
70 |
-
</script>
|
71 |
-
""")
|
72 |
-
|
73 |
return demo
|
74 |
|
75 |
demo = interface()
|
|
|
1 |
import gradio as gr
|
2 |
import cv2
|
3 |
import numpy as np
|
4 |
+
from PIL import Image, ImageDraw, ImageFont
|
5 |
|
6 |
+
def combine_images(dress_image, design_image, position, size, text, text_position, font_size, font_color):
|
7 |
# Convert images to numpy arrays
|
8 |
dress = np.array(dress_image)
|
9 |
design = np.array(design_image)
|
|
|
11 |
# Convert position and size from strings to tuples of integers
|
12 |
x, y = map(int, position.split(","))
|
13 |
width, height = map(int, size.split(","))
|
14 |
+
tx, ty = map(int, text_position.split(","))
|
15 |
|
16 |
# Resize design image to fit the size
|
17 |
design_resized = cv2.resize(design, (width, height))
|
|
|
41 |
for c in range(3):
|
42 |
dress[y:y+h, x:x+w, c] = dress[y:y+h, x:x+w, c] * (1 - design_mask) + design_resized[:, :, c] * design_mask
|
43 |
|
44 |
+
# Convert to PIL for text addition
|
45 |
+
final_image = Image.fromarray(dress)
|
46 |
+
draw = ImageDraw.Draw(final_image)
|
47 |
+
|
48 |
+
# Define font (you may need to provide the path to a ttf file or use a basic font)
|
49 |
+
try:
|
50 |
+
font = ImageFont.truetype("arial.ttf", int(font_size))
|
51 |
+
except IOError:
|
52 |
+
font = ImageFont.load_default()
|
53 |
+
|
54 |
+
# Add text to the image
|
55 |
+
draw.text((tx, ty), text, font=font, fill=font_color)
|
56 |
+
|
57 |
+
return final_image
|
58 |
|
59 |
def interface():
|
60 |
with gr.Blocks() as demo:
|
61 |
+
gr.Markdown("## Image Editor with Text Addition")
|
62 |
dress_image = gr.Image(type="pil", label="Upload Dress Image")
|
63 |
design_image = gr.Image(type="pil", label="Upload Design Image")
|
64 |
|
65 |
position = gr.Textbox(placeholder="Enter position as x,y", value="100,100", label="Position")
|
66 |
size = gr.Textbox(placeholder="Enter size as width,height", value="200,200", label="Size")
|
67 |
|
68 |
+
text = gr.Textbox(placeholder="Enter text", label="Text")
|
69 |
+
text_position = gr.Textbox(placeholder="Enter text position as x,y", value="50,50", label="Text Position")
|
70 |
+
font_size = gr.Textbox(placeholder="Enter font size", value="24", label="Font Size")
|
71 |
+
font_color = gr.Textbox(placeholder="Enter font color (e.g., #FFFFFF)", value="#000000", label="Font Color")
|
72 |
+
|
73 |
btn = gr.Button("Fit Design")
|
74 |
output = gr.Image(type="pil", label="Final Output")
|
75 |
|
76 |
# Button click function
|
77 |
btn.click(
|
78 |
combine_images,
|
79 |
+
inputs=[dress_image, design_image, position, size, text, text_position, font_size, font_color],
|
80 |
outputs=output
|
81 |
)
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
return demo
|
84 |
|
85 |
demo = interface()
|