phenixrhyder commited on
Commit
91bffbb
·
unverified ·
1 Parent(s): 3b54482

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -3
README.md CHANGED
@@ -1,12 +1,22 @@
1
- ---
2
  title: Checkerboard Pattern Generator
 
 
 
3
  sdk: gradio
 
4
  app_file: app.py
5
- ---
6
-
 
7
  Welcome to the Checkerboard Pattern Generator! This is a simple and interactive Hugging Face Space that allows you to create custom checkerboard images directly in your browser.
8
  🚀 How to Use
9
  Using the app is straightforward:
10
  * Board Size: Use the first slider to select the number of squares on the board (e.g., a value of 8 creates an 8x8 board).
11
  * Square Size: Use the second slider to control the size of each individual square in pixels.
12
  * Generate: Click the "Generate Image" button to create your checkerboard based on your settings. The resulting image will appear below.
 
 
 
 
 
 
 
 
1
  title: Checkerboard Pattern Generator
2
+ emoji: '🏁'
3
+ colorFrom: 'gray'
4
+ colorTo: 'gray'
5
  sdk: gradio
6
+ sdk_version: "4.21.0"
7
  app_file: app.py
8
+ short_description: "An interactive tool to generate custom checkerboard patterns."
9
+ tags: ["image-generation", "drawing", "gradio", "creative-tool"]
10
+ Checkerboard Pattern Generator
11
  Welcome to the Checkerboard Pattern Generator! This is a simple and interactive Hugging Face Space that allows you to create custom checkerboard images directly in your browser.
12
  🚀 How to Use
13
  Using the app is straightforward:
14
  * Board Size: Use the first slider to select the number of squares on the board (e.g., a value of 8 creates an 8x8 board).
15
  * Square Size: Use the second slider to control the size of each individual square in pixels.
16
  * Generate: Click the "Generate Image" button to create your checkerboard based on your settings. The resulting image will appear below.
17
+ Feel free to experiment with different values to create patterns of all sizes!
18
+ 🛠️ Technical Details
19
+ This application is built using the following open-source libraries:
20
+ * Gradio: Provides the fast and easy-to-use web interface with sliders, buttons, and image display components.
21
+ * Pillow (PIL): The core image processing library used to draw the checkerboard pattern on a blank canvas.
22
+ The entire application is contained within the app.py file and runs on the Hugging Face Spaces infrastructure.