Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ def apply_filters(image, filter_type, brightness, contrast, sharpening):
|
|
85 |
return image
|
86 |
|
87 |
# Define Interface
|
88 |
-
with gr.Blocks(css=""".gradio-container { background-color: #f7f7f7; }""") as app:
|
89 |
# Title and Description
|
90 |
gr.Markdown("<h1 style='text-align: center; font-family: Arial, sans-serif; color: #333;'>Dynamic Photo Filter App</h1>")
|
91 |
gr.Markdown("<p style='text-align: center; color: #666;'>Apply professional photo filters with adjustable brightness, contrast, and sharpness. Perfect your images instantly!</p>")
|
|
|
85 |
return image
|
86 |
|
87 |
# Define Interface
|
88 |
+
with gr.Blocks(css=""".gradio-container { background-color: #f7f7f7; text-align: center; }""") as app:
|
89 |
# Title and Description
|
90 |
gr.Markdown("<h1 style='text-align: center; font-family: Arial, sans-serif; color: #333;'>Dynamic Photo Filter App</h1>")
|
91 |
gr.Markdown("<p style='text-align: center; color: #666;'>Apply professional photo filters with adjustable brightness, contrast, and sharpness. Perfect your images instantly!</p>")
|