Skip to content

larrytech7/SiliCompressor

 
 

Repository files navigation

SiliCompressor

A powerful image compression library for Android.

Description

It's usually said that "A picture is worth a thousand words". Images adds flair and beauty to our android apps, but we usaully have problems with these images due to thier large size. With SiliCompressor you can now compress and use your images more smoothly.

Credit

This image compressor project is inspired from Void Canvas blog from which the core part of the compressor was done.

Usage

To effectively use this library, you must make sure you have added the following permission to your project.

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Compress an image and return the file path of the new image

String filePath = SiliCompressor.with(Context).compress(imageUriString);

Compress an image and return the file path of the new image while deleting the source image

String filePath = SiliCompressor.with(Context).compress(imageUriString, true);

Compress an image drawable and return the file path of the new image

String filePath = SiliCompressor.with(Context).compress(R.drawable.icon);

Compress an image and return the bitmap data of the new image

Bitmap imageBitmap = SiliCompressor.with(Context).getCompressBitmap(imageUriString);

Compress an image and return the bitmap data of the new image while deleting the source image

Bitmap imageBitmap = SiliCompressor.with(Context).getCompressBitmap(imageUriString, true);

Download

Gradle

compile 'com.iceteck.silicompressorr:silicompressor:1.1.0'
Maven
<dependency>
  <groupId>com.iceteck.silicompressorr</groupId>
  <artifactId>silicompressor</artifactId>
  <version>1.1.0</version>
  <type>aar</type>
</dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2016 IceTeck

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

A powerful image and video compression library for Android

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%