https://github.com/mindorksopensource/screenshot
This library helps to take screenshot dynamically
https://github.com/mindorksopensource/screenshot
android android-app android-application library opensource screenshot
Last synced: 9 months ago
JSON representation
This library helps to take screenshot dynamically
- Host: GitHub
- URL: https://github.com/mindorksopensource/screenshot
- Owner: MindorksOpenSource
- Created: 2019-07-29T08:34:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-17T17:08:39.000Z (over 5 years ago)
- Last Synced: 2025-04-02T22:33:08.783Z (10 months ago)
- Topics: android, android-app, android-application, library, opensource, screenshot
- Language: Kotlin
- Homepage: https://mindorks.com
- Size: 176 KB
- Stars: 67
- Watchers: 6
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Screenshot - Take Screenshot Programmatically
This library helps you to take screenshot of the complete screen or any specific view. This is a very lite library to be integrated.
[](https://mindorks.com/open-source-projects)
[](https://mindorks.com/join-community)
### Add Screenshot in your library
Add it in your root build.gradle at the end of repositories:
```groovy
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```
Add the dependency
```groovy
dependencies {
implementation 'com.github.MindorksOpenSource:screenshot:v0.0.1'
}
```
### Usage of the library,
Type 1 : Basic Implementation. It will take the screenshot of the complete view of the activity and returns a bitmap
```kotlin
Screenshot.with(activityReference).getScreenshot()
```
Type 2 : You can customise the screenshot by adding the features like,
```kotlin
Screenshot.with(this)
.setView(/** the view **/)
.setQuality(Quality.HIGH)
.setFlip(Flip.HORIZONTALLY)
.getAsBitmap()
```
Type 3 : You can also get the screenshot as a file,
```kotlin
Screenshot.with(this)
.setView(/** the view **/)
.setQuality(Quality.HIGH)
.setFlip(Flip.HORIZONTALLY)
.getAsImageFile(/** Pass your Custom File Path**/)
```
> If you leave the File path as empty, it will take the cache directory of your app.
You can set the quality by using,
```kotlin
setQuality(/**Quality**/)
```
> Quality can be Quality.LOW, Quality.AVERAGE, Quality.MEDIUM, Quality.HIGH
You can also flip the bitmap by using,
```kotlin
setFlip(/** Flip **/)
```
> Flip can be Flip.VERTICAL, Flip.HORIZONTAL, Flip.NOTHING
and at last, you can also Rotate the bitmap as well by using,
```kotlin
setRotation(/** Rotate **/)
```
> Rotation can be of, Rotate.DEGREE_0, Rotate.DEGREE_90, Rotate.DEGREE_180, Rotate.DEGREE_270
### Found this project useful :heart:
* Support by clicking the :star: button on the upper right of this page. :v:
### Created & Maintained By
[Himanshu Singh](https://github.com/hi-manshu)
License
=======
Copyright 2019 MindorksOpenSource
Licensed 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 at
http://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.