54

GitHub - Muddz/PixelShot: PixelShot is an awsome Android library that can save a...

 5 years ago
source link: https://github.com/Muddz/PixelShot
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

readme.md

PixelShot

APK

PixelShot is an awsome Android library that can save any View or SurfaceView as an image in the formats JPG/PNG/nomedia. The library works on a asynchronous task behind the scenes and handles errors of I/O operations and manages memory allocation for you.

Example of simplest usage:

In this simple case where no attributes is specified the library will just use defaults as such:

Filename will be named to a timestamp when save() is called.
Path will default to /Pictures in the internal storage.
Image format will default to .JPG

   PixelShot.of(view).setResultListener(this).save();

Example of a detailed usage:

    PixelShot.of(view).setResultListener(this)
                      .setFilename("Hello World")
                      .setPath("MySickApp/media/pictures")
                      .toPNG()
                      .save();

Installation

Add the depedency in your build.gradle

dependencies {
    implementation 'com.muddzdev:pixelshot:1.0.0'  
}

License

Copyright 2018 Muddi Walid

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 Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK