Skip to content

Image Engine

Jiaheng Ge edited this page Apr 18, 2017 · 1 revision

Built-in Image Engines

There are two built-in image engines:

  • GlideEngine
  • PicassoEngine

Use any image engine like this:

Matisse.from(MainActivity.this)
    ...
    .imageEngine(new GlideEngine() | new PicassoEngine());
    .forResult(REQUEST_CODE_CHOOSE);

Proguard rules are listed in the README.

Custom Image Engine

Implement ImageEngine to create your own image engine.

Clone this wiki locally