Skip to content

Commit 78e440a

Browse files
committed
Update README.md
1 parent 93e3dc6 commit 78e440a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
AndroidBitmapTransform [![Build Status](https://travis-ci.org/devnied/AndroidBitmapTransform.png?branch=master)](https://travis-ci.org/devnied/AndroidBitmapTransform)
1+
AndroidBitmapTransform [![Build Status](https://travis-ci.org/devnied/AndroidBitmapTransform.png?branch=master)](https://travis-ci.org/devnied/AndroidBitmapTransform) [![Android Arsenal](http://img.shields.io/badge/Android%20Arsenal-Android--BitmapTransform-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/3504)
22
======================
33

44
AndroidBitmapTransform is an useful library to do Bitmap transformation on Android.<br/>
5-
<b>Current version : 1.0.0</b>
5+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.devnied.AndroidBitmapTransform/library/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.github.devnied.AndroidBitmapTransform/library)
66

77
##Simple API
88

99
It is very easy to get started with AndroidBitmapTransform:
1010

11-
* Exemple to Multiply two bitmaps
11+
**Exemple to Multiply two bitmaps**
1212

1313
```java
1414
ImageView view = (ImageView) findViewById(R.id.bitmapResult);
1515
Bitmap bitmap = BitmapTransform.createBitmap(this,R.drawable.dst, R.drawable.src, PorterDuff.Mode.MULTIPLY, true, false);
1616
view.setImageBitmap(bitmap);
1717
```
1818

19-
* Exemple to Add two bitmaps
19+
**Exemple to Add two bitmaps**
2020

2121
```java
2222
ImageView view = (ImageView) findViewById(R.id.bitmapResult);
2323
Bitmap bitmap = BitmapTransform.createBitmap(this,R.drawable.dst, R.drawable.src, PorterDuff.Mode.ADD, true, false);
2424
view.setImageBitmap(bitmap);
2525
```
2626

27-
* List of PorterDuff modes
27+
**List of PorterDuff modes**
2828

2929
![](https://raw.github.com/devnied/AndroidBitmapTransform/master/%20Xfermodes.png)
3030

0 commit comments

Comments
 (0)