jifferon

Results 1 issues of jifferon

Here's a module for compressor ```kotlin @Module class CompressorModule { @Provides @Singleton fun provideCompressor(context: Context) = Resizer(context) .setTargetLength(1000) .setQuality(75) .setOutputFormat("JPEG") .setOutputFilename(UUID.randomUUID().toString()) .setOutputDirPath(context.getExternalFilesDir(Environment.DIRECTORY_PICTURES)!!.absolutePath) } ``` And here's how we use it:...