All Projects → MindorksOpenSource → screenshot

MindorksOpenSource / screenshot

Licence: other
This library helps to take screenshot dynamically

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to screenshot

Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (+242.19%)
Mutual labels:  android-application, android-app
ClipboardCleaner
Check and clean your clipboard using service, widget, shortcut and quick setting tile.
Stars: ✭ 85 (+32.81%)
Mutual labels:  android-application, android-app
Modern Android Development
Modern Android Development tools & key points
Stars: ✭ 219 (+242.19%)
Mutual labels:  android-application, android-app
Rethink App
DNS over HTTPS / DNS over Tor / DNSCrypt client, firewall, and connection tracker for Android.
Stars: ✭ 188 (+193.75%)
Mutual labels:  android-application, android-app
BatteryTool
Automatically stop apps running in the background. Free, no ads and open source.
Stars: ✭ 48 (-25%)
Mutual labels:  android-application, android-app
Moviehunt
Movie Android App written in Kotlin, MVVM, RxJava, Android Architecture Components.
Stars: ✭ 199 (+210.94%)
Mutual labels:  android-application, android-app
TakingImageOfAView
An example on how to take screenshot of a particular view
Stars: ✭ 15 (-76.56%)
Mutual labels:  screenshot, android-application
Puff Android
Password Manager for Android Using Blowfish Encryption
Stars: ✭ 144 (+125%)
Mutual labels:  android-application, android-app
Floral
Minimal design gallery app for Android.
Stars: ✭ 23 (-64.06%)
Mutual labels:  android-application, android-app
HomeApp
A little smart home app for Philips Hue and other devices
Stars: ✭ 54 (-15.62%)
Mutual labels:  android-application, android-app
Baldphone
A new accessible interface for your smartphone, suitable for seniors
Stars: ✭ 181 (+182.81%)
Mutual labels:  android-application, android-app
Extract-Color-Palette-Api
Create gradient drawable by extracting prominent colors from image⚫⚪
Stars: ✭ 16 (-75%)
Mutual labels:  android-application, android-app
Paginglibrary Sample
An open source app that is refactored to demo Paging Library from Android Jetpack
Stars: ✭ 165 (+157.81%)
Mutual labels:  android-application, android-app
Ionic Starter Template
Reinventing the wheel, again! Sorry Ionic Team... but there are many newbies learning on Youtube!
Stars: ✭ 208 (+225%)
Mutual labels:  android-application, android-app
Posidonlauncher
a one-page homescreen with a news feed
Stars: ✭ 163 (+154.69%)
Mutual labels:  android-application, android-app
Capturable
🚀Jetpack Compose utility library for capturing Composable content and transforming it into Bitmap Image🖼️
Stars: ✭ 365 (+470.31%)
Mutual labels:  screenshot, android-app
Zimlx
Open Source and free launcher for Android
Stars: ✭ 137 (+114.06%)
Mutual labels:  android-application, android-app
App Privacy Policy Generator
A simple web app to generate a generic privacy policy for your Android/iOS apps
Stars: ✭ 2,278 (+3459.38%)
Mutual labels:  android-application, android-app
xkcdViewer
A beautiful xkcd viewer app written with Flutter
Stars: ✭ 60 (-6.25%)
Mutual labels:  android-application, android-app
media-picker
Easy customizable picker for all your needs in Android application
Stars: ✭ 167 (+160.94%)
Mutual labels:  android-application, android-app

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].