- Notifications
You must be signed in to change notification settings - Fork100
chenenyu/img-optimizer-gradle-plugin
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A gradle plugin for optimizing PNGs, effectively reducing APK size. Both extreme compression and lossless compression are available.
Tested onmacOS
、windows10
、Ubuntu16.04LTS(amd64)
. If you have any questions, plz open issues.
Add the following Gradle configuration to your build.gradle:
buildscript { repositories { mavenCentral() } dependencies { ... classpath 'com.chenenyu:img-optimizer:latestVersion' }}
Then in your moudle's build.gradle:
apply plugin: 'img-optimizer'
Now you can see the tasks in task tree:
Double click to execute the task.
You can add the following options to custom the task:
optimizerOptions { triggerSize 5 type "lossy" suffix "_opt"}
triggerSize
Used for filtering pictures. Picture whose size is less than this option will be ignored. Defaults to 0.type
Now supports"lossy"
and"lossless"
。"lossy"
means extreme compression(recommend, default, fast, effective),"lossless"
means loseless compression(slow, inefficient)。suffix
The suffix of the picture which has been optimized. If"_opt"
,the optimizer will generate a new pictureorignal_opt.png
fororiginal.png
. Defaults to null.
Original png | Extreme compression(lossy) | Loseless compression(lossless) |
---|---|---|
526K | 195K(reduce 63%) | 473K(reduce 10%) |
![]() | ![]() | ![]() |
If there are multiple modules in your project, please add the optimizer in where you want to execute optimization since each module is independent. The optimizer will generate log file in the root directory of current module.
About
一款用于优化png图片的gradle插件,有效减少APK体积,支持极限压缩和无损压缩。
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.