All Projects → devnied → AndroidBitmapTransform

devnied / AndroidBitmapTransform

Licence: Apache-2.0 license
AndroidBitmapTransform is an useful library to do Bitmap transformation on Android.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to AndroidBitmapTransform

KGySoft.Drawing
KGy SOFT Drawing is a library for advanced image, icon and graphics handling.
Stars: ✭ 27 (-41.3%)
Mutual labels:  bitmaps
snowb-bmf
Bitmap Font Generator Online
Stars: ✭ 103 (+123.91%)
Mutual labels:  bitmaps

AndroidBitmapTransform Build Status Android Arsenal

AndroidBitmapTransform is an useful library to do Bitmap transformation on Android.
Maven Central

##Simple API

It is very easy to get started with AndroidBitmapTransform:

Exemple to Multiply two bitmaps

ImageView view = (ImageView) findViewById(R.id.bitmapResult);
Bitmap bitmap = BitmapTransform.createBitmap(this,R.drawable.dst, R.drawable.src, PorterDuff.Mode.MULTIPLY, true, false);
view.setImageBitmap(bitmap);

Exemple to Add two bitmaps

ImageView view = (ImageView) findViewById(R.id.bitmapResult);
Bitmap bitmap = BitmapTransform.createBitmap(this,R.drawable.dst, R.drawable.src, PorterDuff.Mode.ADD, true, false);
view.setImageBitmap(bitmap);

List of PorterDuff modes

Maven

<dependency>
  <groupId>com.github.devnied.AndroidBitmapTransform</groupId>
  <artifactId>library</artifactId>
  <version>1.0.0</version>
</dependency>

Bugs

Please report bugs and feature requests to the GitHub issue tracker.
Forks and Pull Requests are also welcome.

Author

Millau Julien

Copyright and license

Copyright 2013 Millau Julien.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or 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].