MindorksOpenSource / screenshot

This library helps to take screenshot dynamically

Home Page:https://mindorks.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Mindorks Mindorks Community

screenshot

Add Screenshot in your library

Add it in your root build.gradle at the end of repositories:

allprojects {
		repositories {
			
			maven { url 'https://jitpack.io' }
		}
	}

Add the dependency

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

Screenshot.with(activityReference).getScreenshot()

Type 2 : You can customise the screenshot by adding the features like,

Screenshot.with(this)  
    .setView(/** the view **/)  
    .setQuality(Quality.HIGH)  
    .setFlip(Flip.HORIZONTALLY)  
    .getAsBitmap()

Type 3 : You can also get the screenshot as a file,

 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,

setQuality(/**Quality**/)

Quality can be Quality.LOW, Quality.AVERAGE, Quality.MEDIUM, Quality.HIGH

You can also flip the bitmap by using,

setFlip(/** Flip **/)

Flip can be Flip.VERTICAL, Flip.HORIZONTAL, Flip.NOTHING

and at last, you can also Rotate the bitmap as well by using,

setRotation(/** Rotate **/)

Rotation can be of, Rotate.DEGREE_0, Rotate.DEGREE_90, Rotate.DEGREE_180, Rotate.DEGREE_270

Found this project useful ❤️

  • Support by clicking the ⭐ button on the upper right of this page. ✌️

Created & Maintained By

Himanshu Singh

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.

About

This library helps to take screenshot dynamically

https://mindorks.com


Languages

Language:Kotlin 100.0%