Skip to content

An android image compression library.

Notifications You must be signed in to change notification settings

gswqwow/Compressor

 
 

Repository files navigation

v0.0.1

Compressor

Compressor is a lightweight and powerful android image compression library. Compressor will allow you to compress large photos into smaller sized photos with very less or negligible loss in quality of the image.

Gradle

dependencies {
    implementation project(':compressor')
}

Let's compress the image size!

Compress Image File

Compressor compressor = new Compressor();
compressor.compress(getContext(), file, null);

I want custom Compressor!

 ImageSource imageSource = ImageSource.create(file, null);
        Size size = imageSource.getImageInfo().size;
        Compressor compressor = new Compressor();
        Compression compression = new Compression();
        compression.resolution(size.width, size.height);
        compression.quality(80);
        compression.format(CompressFormat.WEBP);
        compression.size(2048, 0, 0);
        compressor.compress(getContext(), file, compression);

License

Copyright (c) 2016 Zetra.

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

An android image compression library.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%