All Projects → smallSohoSolo → Mcimage

smallSohoSolo / Mcimage

Licence: apache-2.0
Android Gradle Plugin -- Auto Check big image and compress image in building.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Mcimage

Imageoptim Cli
Make optimisation of images part of your automated build process
Stars: ✭ 3,215 (+268.69%)
Mutual labels:  pngquant, compress
Gradle Defaults
Plugin providing opinionated defaults for Gradle projects.
Stars: ✭ 7 (-99.2%)
Mutual labels:  gradle
Stringfog
一款自动对字节码中的字符串进行加密Android插件工具
Stars: ✭ 733 (-15.94%)
Mutual labels:  gradle
Spring Streaming
SPA on Spring Boot 1.x, WebSockets and React, gradle, nodejs, spring-boot, gradle multi project, spring-mvc, spring-data, gradle dependency update plugin, react-router
Stars: ✭ 6 (-99.31%)
Mutual labels:  gradle
Android Next
Android Next 公共组件库
Stars: ✭ 768 (-11.93%)
Mutual labels:  gradle
Shield
A declarative, efficient, and flexible Native framework for building user interfaces.
Stars: ✭ 901 (+3.33%)
Mutual labels:  gradle
Walle
Android Signature V2 Scheme签名下的新一代渠道包打包神器
Stars: ✭ 6,283 (+620.53%)
Mutual labels:  gradle
Warren
🐇 Kotlin/JVM, tested, IRC v3.2 client state management and observing
Stars: ✭ 8 (-99.08%)
Mutual labels:  gradle
Plantuml Gradle Plugin
Gradle plugin to build PlantUML diagrams from code (for living and up-to-date documentation)
Stars: ✭ 27 (-96.9%)
Mutual labels:  gradle
Maven Min Plugin
📦 Latke application JavaScript and CSS files compression.
Stars: ✭ 5 (-99.43%)
Mutual labels:  compress
Fod
Freedom of Developers
Stars: ✭ 815 (-6.54%)
Mutual labels:  gradle
Light Novel Library wenku8 android
[CASUALLY MAINTAINED] 轻小说文库 (Wenku8.com) 安卓版第三方公益App,始于2014年的Material Design风格、无广告、不盈利、Google Play上安装包最小的轻小说阅读器(light novel reader)。目前除了网站的API以外,还添加了我自己架的Cloudflare Worker 中继节点用来突破网站API的限制 wenku8-relay.mewx.org.
Stars: ✭ 772 (-11.47%)
Mutual labels:  gradle
Android Basic Samples
Google Play game services - Android samples
Stars: ✭ 934 (+7.11%)
Mutual labels:  gradle
Gradle Completion
Gradle tab completion for bash and zsh
Stars: ✭ 748 (-14.22%)
Mutual labels:  gradle
Bestnote
👊 持续更新,Java Android 近几年最全面的技术点以及面试题 供自己学习使用
Stars: ✭ 841 (-3.56%)
Mutual labels:  gradle
Ktlint Gradle
A ktlint gradle plugin
Stars: ✭ 713 (-18.23%)
Mutual labels:  gradle
Image Optimizer
Image optimization / compression library. This library is able to optimize png, jpg and gif files in very easy and handy way. It uses optipng, pngquant, pngcrush, pngout, gifsicle, jpegoptim and jpegtran tools.
Stars: ✭ 785 (-9.98%)
Mutual labels:  pngquant
Libimagequant Rust
libimagequant (pngquant) bindings for the Rust language
Stars: ✭ 17 (-98.05%)
Mutual labels:  pngquant
Jaxws Samples
Small example projects using JAX-WS technologies.
Stars: ✭ 11 (-98.74%)
Mutual labels:  gradle
Refreshversions
Life is too short to google for dependencies and versions
Stars: ✭ 841 (-3.56%)
Mutual labels:  gradle

McImage

Gitter

中文文档

Android优雅的打包时自动化获取全部res资源

McImage is a Non-invasive plugin for compress all res in your project.

Include

  • The img in Jar
  • The img in AAR
  • The img in Module

Used algorithm

Release Success!

The version 1.0.1 now support all build.gradle version!

Feature

  • Compress all png and jpg, every img can save %70 size.
  • As far as possible to convert img to webp (after v0.0.3 support)
  • Auto match the system which you build your project.Include Linux,Mac OS X and Windows (after v0.0.4 support)
  • Use this plugin only need one line code.

Update Log

The user use v0.0.2 update plugin need update your mctools dir together.

  • 1.5.1 : Fix windows support
  • 1.5.0 : Update gradle plugin to 3.5.0 , change the get android resources way,fix not support abbreviation(such as assembleDebug use aD) bug.
  • 1.4.0 : Feature, Support for selecting different optimization types,"ConvertWebp" or "Compress" can be chosen.Default "Compress". "CompressWebp" is a better compression ratio but it don't support api < 18
  • 1.3.0 : Feature, Support multi-thread processing
  • 1.2.0 : Feature, get compress command from system environment prior to local file
  • 1.0.1 : Bug fix, fix maxSize float error
  • 1.0.0 : Support AAPT2 , now don't need to close aapt2 with "android.enableAapt2=false", you can delete this line in gradle.properties.
  • 0.1.4 : Bug fix, add the white list feature, add the img width and height check feature.
  • 0.1.2 : Bug fix(Fix the problem that check image size not work)
  • 0.1.1 : Bug fix(Fix the problem not work for module and fix the problem of enableWhenDebug not work)
  • 0.0.4 : Add auto choose system future.Remove webpQuality config (Set inappropriate will result the img lossless)
  • 0.0.3 : Add webp ! It will auto convert your png (without alpha in min API < 18 and not work in min API < 14) and jpg to webp if it will become more small.
  • 0.0.2 : Improve the log.

Who is using

I can put your icon with one link at here if you use McImage. My email [email protected]

Use

The first, add the plugin in your project root build.gradle.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.smallsoho.mobcase:McImage:1.5.1'
    }
}

Then, apply the plugin in your every module.PS: If you have one more Module, you need apply it in every one.

apply plugin: 'McImage'

Last, put the mctools dir in your project root dir.Download it here

mctools

Config

You can set the config in build.gradle.If you not set this,all config will use default.

McImageConfig {
    isCheckSize true //Whether to detect image size,default true
    optimizeType "Compress" //Optimize Type,"ConvertWebp" or "Compress",default "Compress", "CompressWebp" is a better compression ratio but it don't support api < 18
    maxSize 1*1024*1024 //big image size threshold,default 1MB
    enableWhenDebug false //switch in debug build,default true
    isCheckPixels true // Whether to detect image pixels of width and height,default true
    maxWidth 1000 //default 1000
    maxHeight 1000 //default 1000
    whiteList = [ //do not do any optimization for the images who in the list 
              "icon_launcher.png"
    ]
    mctoolsDir "$rootDir"
    isSupportAlphaWebp false  //Whether support convert the Image with Alpha chanel to Webp,default false, the images with alpha chanels will be compressed.if config true, its need api level >=18 or do some compatible measures 
    multiThread true  //Whether open multi-thread processing,default true
    bigImageWhiteList = [] //do not detect big size or large pixels for the images who in the list
}

Thanks

pngquant

guetzli

cwebp

License

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].