Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -322,12 +322,16 @@ with gr.Blocks(theme=gr.themes.Monochrome()) as blocks:
|
|
322 |
)
|
323 |
with gr.Row():
|
324 |
run_btn = gr.Button("🎨 Create Your QR Art", variant="primary")
|
|
|
325 |
with gr.Column():
|
326 |
result_image = gr.Image(label="Your Artistic QR Code")
|
|
|
|
|
|
|
327 |
gr.Markdown(
|
328 |
"""
|
329 |
### 🔍 Analyzing Your Creation
|
330 |
-
- Is the QR code scannable?
|
331 |
- Does the art style match your prompt? If not, try adjusting the 'Prompt Adherence'.
|
332 |
- Want more artistic flair? Increase the 'Artistic Freedom'.
|
333 |
- Need a clearer QR code? Raise the 'QR Code Visibility'.
|
|
|
322 |
)
|
323 |
with gr.Row():
|
324 |
run_btn = gr.Button("🎨 Create Your QR Art", variant="primary")
|
325 |
+
|
326 |
with gr.Column():
|
327 |
result_image = gr.Image(label="Your Artistic QR Code")
|
328 |
+
scan_button = gr.Button("Scan QR Code")
|
329 |
+
scan_result = gr.Textbox(label="Scan Result", interactive=False)
|
330 |
+
|
331 |
gr.Markdown(
|
332 |
"""
|
333 |
### 🔍 Analyzing Your Creation
|
334 |
+
- Is the QR code scannable? Click the 'Scan QR Code' button to test.
|
335 |
- Does the art style match your prompt? If not, try adjusting the 'Prompt Adherence'.
|
336 |
- Want more artistic flair? Increase the 'Artistic Freedom'.
|
337 |
- Need a clearer QR code? Raise the 'QR Code Visibility'.
|