https://github.com/japneet001/ink-canvas
Ink Canvas provides a simple whiteboard application built using Tkinter. It allows users to draw, write, and annotate freely on a canvas using various tools provided.
https://github.com/japneet001/ink-canvas
python python3 tkinter tkinter-canvas tkinter-gui whiteboard
Last synced: 4 months ago
JSON representation
Ink Canvas provides a simple whiteboard application built using Tkinter. It allows users to draw, write, and annotate freely on a canvas using various tools provided.
- Host: GitHub
- URL: https://github.com/japneet001/ink-canvas
- Owner: Japneet001
- Created: 2024-03-19T13:25:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-19T14:36:30.000Z (over 1 year ago)
- Last Synced: 2024-03-19T15:55:42.981Z (over 1 year ago)
- Topics: python, python3, tkinter, tkinter-canvas, tkinter-gui, whiteboard
- Language: Python
- Homepage:
- Size: 4.59 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
🎨Ink Canvas🎨
Table of Contents🧾
- [Introduction🚀](#introduction)
- [Features✨](#features)
- [Technology Used💻](#technology-used)
- [Getting Started🛠️](#getting-started)
- [Project Admin👨💼](#project-admin)Introduction 🚀
Welcome to Ink Canvas - a Python project that provides a simple whiteboard application built using Tkinter. This application allows users to draw, write, and annotate freely on a canvas using various tools provided.
Features ✨
- **Color Selection**: Choose from a wide range of colors to make your drawings vibrant and expressive.
- **Clear Canvas**: Clear the canvas to start fresh whenever needed.
- **Customizable Canvas Size**: Adjust the canvas size according to your preference.
Technology Used 💻
- **Python**: The core language used for building the application.
- **Tkinter**: Python's standard GUI (Graphical User Interface) toolkit used for creating the whiteboard interface.
Getting Started 🛠️
1. **Clone the Repository**: Clone this repository to your local machine using `git clone`.
```bash
git clone https://github.com/yourusername/ink-canvas.git
```2. **Install Dependencies**: Ensure you have Python installed on your system. Tkinter is typically included with Python installations, so no additional dependencies are required.
- **Install Python**: If you don't have Python installed on your system, you can download and install it from the [official Python website](https://www.python.org/downloads/).
- **Install Tkinter**: You can install Tkinter using pip by running the following command:
```bash
pip install tk
```
*Note: Depending on your system configuration, you may need to use `pip3` instead of `pip` to install packages for Python 3.*3. **Run the Application**: Navigate to the project directory and execute the main Python script.
```bash
cd ink-canvas
python ink_canvas.py
```4. **Start Drawing**: Once the application is launched, you can start drawing, writing, or using any other tool provided.
Project Admin 👨💼