Click here to Skip to main content
15,867,308 members
Articles / Mobile Apps / Android
Tip/Trick

Change The Image Color in Android

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
22 Mar 2013CPOL 15.3K   3   1
This Artical shows that how we can change the color of any image throw Bitmap

Introduction

In Android Programming Language Graphics provide very powerful functions by the help of which we can do many attractive work we can also design low level game for fun,So in this page we learn how we can change the color of any Image.

Background 

By using this example we can design a application that change the color of image

Using the code

Small line of code given below use to change the color of image,here only single image is use that's name is new2

Java
                         Bitmap b=BitmapFactory.decodeResource(getResources(),R.drawable.new2);
			 can.drawBitmap(b, 10, 10,null);
			 
			 ColorFilter f=new LightingColorFilter(0x00FF00, 0x0000FF);
			 p.setColorFilter(f);
			 can.drawBitmap(b, 100, 100,p);
			 ColorFilter f1=new LightingColorFilter(0x00FF00, 0xFF00FF);
			 p.setColorFilter(f1);
			 can.drawBitmap(b, 0, 200,p);
   

This code should be written within onDraw() method of Graphics.

Points of Interest 

In this code on of the important thing that is interest which is ColorFilter which define which color will display.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
Questionhow to change color of image for multi color ? Pin
Member 115634551-Apr-15 12:14
Member 115634551-Apr-15 12:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.