Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/divyanshub024/androiddraw
A drawing view for your android application.
https://github.com/divyanshub024/androiddraw
Last synced: 8 days ago
JSON representation
A drawing view for your android application.
- Host: GitHub
- URL: https://github.com/divyanshub024/androiddraw
- Owner: divyanshub024
- License: apache-2.0
- Created: 2018-05-17T16:34:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-14T18:29:08.000Z (almost 3 years ago)
- Last Synced: 2023-11-07T17:17:33.185Z (about 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 851 KB
- Stars: 422
- Watchers: 13
- Forks: 74
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Android Draw [![](https://jitpack.io/v/divyanshub024/AndroidDraw.svg)](https://jitpack.io/#divyanshub024/AndroidDraw) [![Android Arsenal]( https://img.shields.io/badge/Android%20Arsenal-AndroidDraw-green.svg?style=flat )]( https://android-arsenal.com/details/1/7150 )
A drawing view for your android application
### Download
For information : checkout [Sample App Code](https://github.com/divyanshub024/AndroidDraw/tree/master/app) in repository.
## Dependency
*Step 1*. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
*Step 2*. Add the dependency```gradle
dependencies {
implementation 'com.github.divyanshub024:AndroidDraw:v0.1'
}
```
## UsageThere are two ways to use this library.
### 1. Use Activity
You can call the `Drawing Activity` using `startActivityForResult` which will return you bitmap in byteArray. By using this method you will have all the features like change strokeWidth, change strokeColor, change Alpha, erase, redo, undo.
```kotlin
val intent = Intent(this, DrawingActivity::class.java)
startActivityForResult(intent, REQUEST_CODE_DRAW)// Get bitmap in onActivityResult
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
if (data != null && resultCode == Activity.RESULT_OK) {
when(requestCode){
REQUEST_CODE_DRAW -> {
val result= data.getByteArrayExtra("bitmap")
val bitmap = BitmapFactory.decodeByteArray(result, 0, result.size)
saveImage(bitmap)
}
}
}
}
```
### 2.Use DrawView#### Declaration
```xml```
- To clear canvas
```
draw_view.clearCanvas()
```
- To set stroke width
```kotlin
// takes input as Float
draw_view.setStrokeWidth(strokeWidth)
```
- To set stroke alpha
```kotlin
// takes input as Int
draw_view.setAlpha(progress)
```
- To set stroke color
```
draw_view.setColor(color)
```
- To undo
```
draw_view.undo()
```- To redo
```
draw_view.redo()
```## Contributor
Thanks [Arslan Şahin](https://github.com/Arslanshn) for this amazing logo.## Connect
- [Twitter](https://twitter.com/divyanshub024)
- [Medium](https://medium.com/@divyanshub024)
- [LinkedIn](https://www.linkedin.com/in/divyanshub024/)## LICENCE
```
Copyright 2018 Divyanshu BhargavaLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```