Spaces:
Sleeping
Sleeping
Sync from GitHub via hub-sync
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: Image Rotator
|
| 3 |
emoji: π
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: purple
|
|
@@ -14,7 +14,7 @@ pinned: false
|
|
| 14 |
|
| 15 |
This repository contains experimental scripts and applications.
|
| 16 |
|
| 17 |
-
## π Image Rotator
|
| 18 |
|
| 19 |
A beautiful, premium Gradio application for rotating images by standard steps or custom angles. It supports uploading files, drag-and-drop, and pasting images directly from the clipboard.
|
| 20 |
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Image Rotator
|
| 3 |
emoji: π
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: purple
|
|
|
|
| 14 |
|
| 15 |
This repository contains experimental scripts and applications.
|
| 16 |
|
| 17 |
+
## π Image Rotator
|
| 18 |
|
| 19 |
A beautiful, premium Gradio application for rotating images by standard steps or custom angles. It supports uploading files, drag-and-drop, and pasting images directly from the clipboard.
|
| 20 |
|
app.py
CHANGED
|
@@ -108,11 +108,11 @@ theme = gr.themes.Soft(
|
|
| 108 |
font=[gr.themes.GoogleFont("Outfit"), "sans-serif"],
|
| 109 |
)
|
| 110 |
|
| 111 |
-
with gr.Blocks(title="Image Rotator
|
| 112 |
gr.HTML(
|
| 113 |
value="""
|
| 114 |
<div class="header-banner">
|
| 115 |
-
<h1>π Image Rotator
|
| 116 |
<p>Rotate your images with precision. Paste directly from the clipboard, drop files, and choose any angle.</p>
|
| 117 |
</div>
|
| 118 |
"""
|
|
|
|
| 108 |
font=[gr.themes.GoogleFont("Outfit"), "sans-serif"],
|
| 109 |
)
|
| 110 |
|
| 111 |
+
with gr.Blocks(title="Image Rotator") as demo:
|
| 112 |
gr.HTML(
|
| 113 |
value="""
|
| 114 |
<div class="header-banner">
|
| 115 |
+
<h1>π Image Rotator</h1>
|
| 116 |
<p>Rotate your images with precision. Paste directly from the clipboard, drop files, and choose any angle.</p>
|
| 117 |
</div>
|
| 118 |
"""
|