Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ def freemium_watermark(img, sb_logo):
|
|
17 |
sb_logo = Image.blend(transparent_img, sb_logo, alpha=0.3) # Blend the logo with the transparent image
|
18 |
# Calculate the position to paste the logo at the center of the image
|
19 |
paste_x_position = (width_px - new_logo_width) // 2
|
20 |
-
paste_y_position = (height_px - new_logo_height
|
21 |
img.paste(sb_logo, (paste_x_position, paste_y_position), sb_logo)
|
22 |
# Save the image
|
23 |
return img
|
@@ -30,7 +30,8 @@ with gr.Blocks(analytics_enabled=False, theme=gr.themes.Soft()) as demo:
|
|
30 |
input = gr.Image(type="pil", label="Upload Image", sources=["upload"])
|
31 |
with gr.Column():
|
32 |
image = gr.Image(label="Sketch Drawing", show_share_button=False)
|
33 |
-
gr.Markdown("<p style='text-align: center; font-size: 20px;'>Want to remove the watermark
|
|
|
34 |
examples = gr.Examples(examples=["road_small.jpg", "preview_small.jpg", "trailer.jpg"], inputs=[input])
|
35 |
@gr.on(inputs=[input], outputs=[image], show_progress="minimal")
|
36 |
def sketch(input_path):
|
|
|
17 |
sb_logo = Image.blend(transparent_img, sb_logo, alpha=0.3) # Blend the logo with the transparent image
|
18 |
# Calculate the position to paste the logo at the center of the image
|
19 |
paste_x_position = (width_px - new_logo_width) // 2
|
20 |
+
paste_y_position = int(height_px * 0.6) - (new_logo_height // 2)
|
21 |
img.paste(sb_logo, (paste_x_position, paste_y_position), sb_logo)
|
22 |
# Save the image
|
23 |
return img
|
|
|
30 |
input = gr.Image(type="pil", label="Upload Image", sources=["upload"])
|
31 |
with gr.Column():
|
32 |
image = gr.Image(label="Sketch Drawing", show_share_button=False)
|
33 |
+
gr.Markdown("<p style='text-align: center; font-size: 20px;'>Want to remove the watermark?</p>\n")
|
34 |
+
gr.Markdown("<p style='text-align: center; font-size: 20px;'>Subscribe or <a href='https://skyebrowse.com/pricing'>purchase a model</a> starting at $3.<p>")
|
35 |
examples = gr.Examples(examples=["road_small.jpg", "preview_small.jpg", "trailer.jpg"], inputs=[input])
|
36 |
@gr.on(inputs=[input], outputs=[image], show_progress="minimal")
|
37 |
def sketch(input_path):
|