-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
2 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 Mihir Shah | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# DrawingCanvas | ||
|
||
[![GitHub license](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) | ||
|
||
Library for drawing app canvas | ||
|
||
## Features | ||
- **Size** , **transperancy** and **color** manupulation of brush | ||
-- Using ***setSizeForBrush(), setBrushAlpha() and setBrushColor()*** respectively | ||
- **Undo** and **Redo** fucntionality available | ||
-- Using ***undo() and redo()*** respectively | ||
- **Clear canvas** feature | ||
-- Using ***clearDrawingBoard()*** | ||
|
||
## Demo | ||
|
||
Watch the explaination on youtube: https://www.youtube.com/watch?v=Dnm3SI_OIko | ||
|
||
https://user-images.githubusercontent.com/66465511/126068320-9d1f0971-2f0f-4ba7-a16e-9815aacb32ee.mp4 | ||
|
||
## How to use | ||
|
||
### You can refer to this Video: | ||
https://youtu.be/Dnm3SI_OIko | ||
|
||
### OR Follow these steps: | ||
> Step 1. Add this maven dependency to your build.gradle (project) file | ||
```gradle | ||
allprojects { | ||
repositories { | ||
... | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
``` | ||
>Step 2. Add the dependency to your build.gradle (app) file | ||
```gradle | ||
dependencies { | ||
implementation 'com.github.Miihir79:DrawingCanvas:1.0.1' | ||
} | ||
``` | ||
|
||
>Step 3. Add the XML code | ||
```XML | ||
<com.mihir.drawingcanvas.drawingView | ||
android:id="@+id/drawing_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
</com.mihir.drawingcanvas.drawingView> | ||
``` | ||
|
||
>Step 4. Refrence the canvas in XML to use it's functions | ||
```Kotlin | ||
drawing_view.setBrushAlpha(120)// values from 0-255 | ||
drawing_view.setBrushColor(R.color.white) | ||
drawing_view.setSizeForBrush(12) // takes value from 0-35 | ||
drawing_view.undo() | ||
drawing_view.redo() | ||
drawing_view.clearDrawingBoard() | ||
|
||
``` | ||
|
||
## Demo of all the functions | ||
### setBrushAlpha | ||
|
||
This function takes the value from 0-255. You can check it's implementation here:<br> | ||
|
||
<img src="https://user-images.githubusercontent.com/66465511/126197548-15777ce6-c18e-41b4-b119-4dfda6c5eb23.gif" width="250" /> | ||
|
||
### setBrushColor | ||
|
||
This function takes any color as an input. You can check it's implementation here: | ||
|
||
<img src="https://user-images.githubusercontent.com/66465511/126198881-8496b4eb-4646-435f-b480-2bc623db1089.gif" width="250" /> | ||
|
||
### setSizeForBrush | ||
|
||
This function takes any value from 0-35 as an input. You can check it's implementation here: | ||
|
||
<img src="https://user-images.githubusercontent.com/66465511/126199495-a1e4cc19-5a06-48f6-b6a8-f1301c82db1f.gif" width="250" /> | ||
|
||
### undo and redo | ||
|
||
These functions can undo and redo your strokes. You can check it's implementation here: | ||
|
||
<img src="https://user-images.githubusercontent.com/66465511/126199690-74ff6303-e18c-4b7b-9d07-c20bb27c492a.gif" width="250" /> | ||
|
||
### clearDrawingBoard | ||
|
||
This function clears all the strokes and clear the drawing board. But carefully you wont be able to undo this change! You can check it's implementation here: | ||
|
||
<img src="https://user-images.githubusercontent.com/66465511/126199980-e8a1137b-4f47-4989-8db9-f2e76c0b6f8f.gif" width="250" /> | ||
|
||
|
||
## That's it! | ||
If you liked it then show some love by giving a star. | ||
|
||
## Author and contributions: | ||
I, Mihir Shah has made this library and will maintain it. | ||
All contributions are welcomed! |