Zurück zum Ranking

zetbaitsu/Compressor

Kotlin

An android image compression library.

compressorphotosandroidandroid-librarycompressionimage-compressioncompress-imageskotlinkotlin-androidkotlin-coroutineskotlin-library
Sterne-Wachstum
Sterne
7.2k
Forks
963
Wochenwachstum
Issues
133
2k4k6k
Juni 2016Okt. 2019März 2023Juli 2026
README

Compressor

Android Arsenal Build Status codecov

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 'id.zelory:compressor:3.0.1'
}

Let's compress the image size!

Compress Image File

val compressedImageFile = Compressor.compress(context, actualImageFile)

Compress Image File to specific destination

val compressedImageFile = Compressor.compress(context, actualImageFile) {
    default()
    destination(myFile)
}

I want custom Compressor!

Using default constraint and custom partial of it

val compressedImageFile = Compressor.compress(context, actualImageFile) {
    default(width = 640, format = Bitmap.CompressFormat.WEBP)
}

Full custom constraint

val compressedImageFile = Compressor.compress(context, actualImageFile) {
    resolution(1280, 720)
    quality(80)
    format(Bitmap.CompressFormat.WEBP)
    size(2_097_152) // 2 MB
}

Using your own custom constraint

class MyLowerCaseNameConstraint: Constraint {
    override fun isSatisfied(imageFile: File): Boolean {
        return imageFile.name.all { it.isLowerCase() }
    }

    override fun satisfy(imageFile: File): File {
        val destination = File(imageFile.parent, imageFile.name.toLowerCase())
        imageFile.renameTo(destination)
        return destination
    }
}

val compressedImageFile = Compressor.compress(context, actualImageFile) {
    constraint(MyLowerCaseNameConstraint()) // your own constraint
    quality(80) // combine with compressor constraint
    format(Bitmap.CompressFormat.WEBP)
}

You can create your own extension too

fun Compression.lowerCaseName() {
    constraint(MyLowerCaseNameConstraint())
}

val compressedImageFile = Compressor.compress(context, actualImageFile) {
    lowerCaseName() // your own extension
    quality(80) // combine with compressor constraint
    format(Bitmap.CompressFormat.WEBP)
}

Compressor now is using Kotlin coroutines!

Calling Compressor should be done from coroutines scope

// e.g calling from activity lifecycle scope
lifecycleScope.launch {
    val compressedImageFile = Compressor.compress(context, actualImageFile)
}

// calling from global scope
GlobalScope.launch {
    val compressedImageFile = Compressor.compress(context, actualImageFile)
}

Run Compressor in main thread

val compressedImageFile = Compressor.compress(context, actualImageFile, Dispatchers.Main)

Old version

Please read this readme

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.
Ähnliche Repositories
aandrew-me/ytDownloader

Desktop App for downloading Videos and Audios from hundreds of sites

JavaScriptnpmGNU General Public License v3.0downloaderelectron
aandrew-me.github.io/ytDownloader-site/
10k891
wwmm/easyeffects

Limiter, compressor, convolver, equalizer and auto volume and many other plugins for PipeWire applications

HTMLGNU General Public License v3.0equalizerreverberation
wwmm.github.io/easyeffects/
9.8k361
terser/terser

🗜 JavaScript parser, mangler and compressor toolkit for ES6+

JavaScriptnpmOtherparsercompressor
terser.org
9.3k461
matthiasmullie/minify

CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.

PHPPackagistMIT Licenseminifyminifier
matthiasmullie.github.io/minify/
2k330
mikeroyal/PipeWire-Guide

PipeWire Guide. Learn about how PipeWire gives your Linux system a Professional Audio/Video Processing workflow.

Shellpipewireaudio
1.5k41
Tourenathan-G5organisation/SiliCompressor

A powerful, flexible and easy to use Video and Image compression library for Android.

JavaMavenApache License 2.0compressorandroid
1.4k293
numandev1/react-native-compressor

🗜️Compress Image, Video, and Audio same like Whatsapp 🚀✨

KotlinMIT Licensecompresscompression
1.3k144
lz4/lz4-java

LZ4 compression for Java

JavaMavenApache License 2.0lz4-compressionjni-bindings
1.2k285
inikep/lzbench

lzbench is an in-memory benchmark of open-source compressors

COthercompressorcompression
1.1k214