成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Android開發(fā)實(shí)踐:自己動(dòng)手編寫圖片剪裁應(yīng)用(3)

前面兩篇文章分別介紹了我編寫的開源項(xiàng)目ImageCropper庫,以及如何調(diào)用系統(tǒng)的圖片剪裁模塊,本文則繼續(xù)分析一下開發(fā)Android圖片剪裁應(yīng)用中需要用到的Bitmap操作。

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、虛擬空間、營銷軟件、網(wǎng)站建設(shè)、堯都網(wǎng)站維護(hù)、網(wǎng)站推廣。

在Android系統(tǒng)中,對(duì)圖片的操作主要是通過Bitmap類和Matrix類來完成,本文就介紹一下圖片剪裁應(yīng)用中對(duì)Bitmap的一些操作,包括:打開、保存、剪裁、旋轉(zhuǎn)等,我已經(jīng)將這些操作都封裝到了一個(gè)BitmapHelper.java類中,放到GitHub上了(點(diǎn)擊這里),大家可以方便地集成到自己的項(xiàng)目中。

  1. 打開圖片

圖片的打開主要是把各種格式的圖片轉(zhuǎn)換為Bitmap對(duì)象,Android通過BitmapFactory類提供了一系列的靜態(tài)方法來協(xié)助完成這個(gè)操作,如下所示:

public class BitmapFactory {
    public static Bitmap decodeFile(String pathName, Options opts);
    public static Bitmap decodeFile(String pathName);
    public static Bitmap decodeResourceStream(Resources res, TypedValue value,
            InputStream is, Rect pad, Options opts) ;
    public static Bitmap decodeResource(Resources res, int id, Options opts) ;
    public static Bitmap decodeResource(Resources res, int id);
    public static Bitmap decodeByteArray(byte[] data, int offset, int length, Options opts);
    public static Bitmap decodeByteArray(byte[] data, int offset, int length);
    public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts);
    public static Bitmap decodeStream(InputStream is) ;
    public static Bitmap decodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts);
    public static Bitmap decodeFileDescriptor(FileDescriptor fd) ;
}

通過這些靜態(tài)方法,我們可以方便地從文件、資源、字節(jié)流等各種途徑打開圖片,生成Bitmap對(duì)象。下面給出一個(gè)從文件中打開圖片的函數(shù)封裝:

public static Bitmap load( String filepath ) {

    Bitmap bitmap = null;
    try {
        FileInputStream fin = new FileInputStream(filepath);
        bitmap = BitmapFactory.decodeStream(fin);
        fin.close();
    }
    catch (FileNotFoundException e) {
            
    } 
    catch (IOException e) {
                
    }
    return bitmap;
}


2. 保存圖片


圖片的保存則主要通過Bitmap的compress方法,該方法的原型如下:

/**
  * Write a compressed version of the bitmap to the specified outputstream.    
  * @param format   The format of the compressed p_w_picpath
  * @param quality  Hint to the compressor, 0-100. 0 meaning compress for
  *                 small size, 100 meaning compress for max quality. Some
  *                 formats, like PNG which is lossless, will ignore the
  *                 quality setting
  * @param stream   The outputstream to write the compressed data.
  * @return true if successfully compressed to the specified stream.
  */
public boolean compress(CompressFormat format, int quality, OutputStream stream)

第一個(gè)參數(shù)是圖片格式,只有JPEG、PNG和WEBP三種,第二個(gè)參數(shù)是壓縮質(zhì)量(0~100),數(shù)值越大圖片信息損失越小,第三個(gè)參數(shù)則是文件流對(duì)象。

同樣,這里給出一個(gè)保存圖片的函數(shù)封裝:

public static void save( Bitmap bitmap, String filepath ) {
    try {
        FileOutputStream fos = new FileOutputStream(filepath);
        bitmap.compress(CompressFormat.JPEG, 100, fos);              
        bitmap.recycle();            
        fos.close();            
     }
     catch (FileNotFoundException e) {
           
     } 
     catch (IOException e) {      
            
     }   
 }

3. 剪裁圖片


Android中剪裁圖片主要有2種方法,一種通過Bitmap的createBitmap方法來生成剪裁的圖片,另一種則是通過Canvas對(duì)象來“繪制”新的圖片,這里先給出代碼,再分析:

public static Bitmap crop( Bitmap bitmap, Rect cropRect ) {
    return Bitmap.createBitmap(bitmap,cropRect.left,cropRect.top,cropRect.width(),cropRect.height());
}
    
public static Bitmap cropWithCanvas( Bitmap bitmap, Rect cropRect ) {
    Rect destRect = new Rect(0,0,cropRect.width(),cropRect.height());
    Bitmap cropped = Bitmap.createBitmap(cropRect.width(),cropRect.height(),Bitmap.Config.RGB_565);
    Canvas canvas = new Canvas(cropped);        
    canvas.drawBitmap(bitmap,cropRect,destRect,null);
    return cropped;
}

其實(shí)第一種方法內(nèi)部實(shí)現(xiàn)也是利用了Canvas對(duì)象來“繪制”新的圖片的,Canvas對(duì)象通過一個(gè)Bitmap對(duì)象來構(gòu)建,該Bitmap即為“畫布”,drawBitmap則是將源bitmap對(duì)象“畫”到“畫布”之中,這樣就實(shí)現(xiàn)了數(shù)據(jù)的搬移,實(shí)現(xiàn)了圖片的剪裁。

4. 旋轉(zhuǎn)圖片


Android中旋轉(zhuǎn)圖片同樣是通過Bitmap的createBitmap方法來生成旋轉(zhuǎn)后的圖片,不過圖片的旋轉(zhuǎn)需要借助Matrix對(duì)象來協(xié)助完成,代碼如下:

public static Bitmap rotate( Bitmap bitmap, int degrees  ) {
    Matrix matrix = new Matrix();
    matrix.postRotate(degrees);            
    return Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);
}

當(dāng)然,圖片的旋轉(zhuǎn)也是可以通過Canvas來“繪制”,由于圖片旋轉(zhuǎn)會(huì)導(dǎo)致邊界坐標(biāo)發(fā)生變化,所以需要以圖片中心點(diǎn)坐標(biāo)為中心來旋轉(zhuǎn),具體實(shí)現(xiàn)見如下代碼:

public static Bitmap rotateWithCanvas( Bitmap bitmap, int degrees  ) {
        
    int destWidth,destHeight;
        
    float centerX = bitmap.getWidth()/2;
    float centerY = bitmap.getHeight()/2;        
        
    // We want to do the rotation at origin, but since the bounding
    // rectangle will be changed after rotation, so the delta values
    // are based on old & new width/height respectively.
    Matrix matrix = new Matrix();        
    matrix.preTranslate(-centerX,-centerY);
    matrix.postRotate(degrees);        
    if( degrees/90%2 == 0 ) { 
        destWidth  = bitmap.getWidth();
        destHeight = bitmap.getHeight();
        matrix.postTranslate(centerX,centerY);
    }        
    else {            
        destWidth  = bitmap.getHeight();
        destHeight = bitmap.getWidth();
        matrix.postTranslate(centerY,centerX);            
    }
    Bitmap cropped = Bitmap.createBitmap(destWidth,destHeight,Bitmap.Config.RGB_565);
    Canvas canvas = new Canvas(cropped);       
    canvas.drawBitmap(bitmap, matrix, null);
    return cropped;
}

5. 小結(jié)


關(guān)于Bitmap的相關(guān)操作就介紹到這里了,更多的代碼示例和實(shí)現(xiàn)可以參考我的開源項(xiàng)目ImageCropper,

該項(xiàng)目的GitHub地址:https://github.com/Jhuster/ImageCropper,有任何疑問歡迎留言討論或者來信lujun.hust@gmail.com交流,或者關(guān)注我的新浪微博 @盧_俊 獲取最新的文章和資訊。

名稱欄目:Android開發(fā)實(shí)踐:自己動(dòng)手編寫圖片剪裁應(yīng)用(3)
鏈接地址:http://jinyejixie.com/article28/iicijp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、小程序開發(fā)、移動(dòng)網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作微信公眾號(hào)、做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
东安县| 方城县| 大名县| 罗源县| 黑山县| 咸丰县| 治多县| 襄城县| 琼海市| 冷水江市| 大城县| 崇义县| 公安县| 乐昌市| 安阳县| 大连市| 凤翔县| 麟游县| 隆回县| 门头沟区| 尼勒克县| 历史| 宁明县| 呼伦贝尔市| 惠水县| 蒙阴县| 青海省| 沭阳县| 晴隆县| 锡林郭勒盟| 金昌市| 盐城市| 吴川市| 大新县| 苍溪县| 普定县| 宁强县| 晴隆县| 洛隆县| 巴塘县| 汉源县|