How to modify the Bitmap of Android

Source: Internet
Author: User

The Bitmap of Android is similar to that of the Image of j2ec2.
If I want to read an image from the resource, and then draw a bit of information on the image, such as text.

How can I draw a picture on the screen?

In j2s, As long as Image. getGraphic () gets the Graphic object, you can think about draw and draw.

So how can we implement it in Android?

Java code

Copy codeThe Code is as follows: Bitmap img = Bitmap. createBitmap (width, height, Config. ARGB_8888 );

Canvas canvas = new Canvas ();

Canvas. setBitmap (img );

Bitmap img = Bitmap. createBitmap (width, height, Config. ARGB_8888); Canvas canvas = new Canvas (); canvas. setBitmap (img );

After the above code, you can use the draw function of canvas to modify it on Bitmap.

Then, you only need to use the onDraw parameter canvas to drawBitmap in onDraw.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.