android中使用Canvas繪製指定位置和寬高度的圖片

來源:互聯網
上載者:User
    /*---------------------------------  
     * 繪製圖片
     * @param x螢幕上的x座標
     * @param y螢幕上的y座標
     * @param w要繪製的圖片的寬度
     * @param h要繪製的圖片的高度
     * @param bx圖片上的x座標
     * @param by圖片上的y座標
     *
     * @return null
------------------------------------*/

public static void drawImage(Canvas canvas, Bitmap blt, int x, int y,
int w, int h, int bx, int by) {
Rect src = new Rect();// 圖片 >>原矩形
Rect dst = new Rect();// 螢幕 >>目標矩形

src.left = bx;
src.top = by;
src.right = bx + w;
src.bottom = by + h;

dst.left = x;
dst.top = y;
dst.right = x + w;
dst.bottom = y + h;
// 畫出指定的位元影像,位元影像將自動--》縮放/自動轉換,以填補目標矩形
// 這個方法的意思就像 將一個位元影像按照需求重畫一遍,畫後的位元影像就是我們需要的了
canvas.drawBitmap(blt, null, dst, null);
src = null;
dst = null;
}

/**
* 繪製一個Bitmap
*
     * @param canvas 畫布
     * @param bitmap 圖片
     * @param x 螢幕上的x座標
     * @param y 螢幕上的y座標
     */

public static void drawImage(Canvas canvas, Bitmap bitmap, int x, int y) {
// 繪製映像 將bitmap對象顯示在座標 x,y上
canvas.drawBitmap(bitmap, x, y, null);
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.