Android image Drawing (ii) zoom in on the canvas to reduce the problem _android

Source: Internet
Author: User

The frame size of the image does not change when the image in Android zooms in on the canvas.

The original artwork is as follows:

Enlarged: The original picture of the border has not changed, the position is still!

So if you want to place the picture position, you need to do the appropriate position to move it!

Use the following code (place the picture in full screen):

Copy Code code as follows:

Matrix matrix = new Matrix ();
Matrix.postscale (Canvas.getwidth () *1.01f/bmpbg.getwidth (), Canvas.getheight () *1.01f/bmpbg.getheight (), Bmpbg.getwidth ()/2, Bmpbg.getheight ()/2);
Matrix.posttranslate ((Canvas.getwidth ()-bmpbg.getwidth ())/2, (Canvas.getheight ()-bmpbg.getheight ())/2);
Canvas.drawbitmap (BMPBG, Matrix, paint);

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.