溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

我的開源項目:Android圖片剪裁庫

發(fā)布時間:2020-06-05 14:14:46 來源:網(wǎng)絡(luò) 閱讀:3511 作者:Jhuster 欄目:移動開發(fā)

最近利用一周左右的業(yè)余時間,終于完成了一個Android圖片剪裁庫,核心功能是根據(jù)自己的理解實現(xiàn)的,部分代碼參考了Android源碼的圖片剪裁應(yīng)用?,F(xiàn)在將該代碼開源在Github上以供大家學(xué)習(xí)和使用,地址:https://github.com/Jhuster/ImageCropper,效果如下所示:


    我的開源項目:Android圖片剪裁庫


我的大致計劃是首先介紹一下這個庫的用法,然后再寫幾篇文章介紹一下其中的一些原理和關(guān)鍵技術(shù),希望對Android開發(fā)新手有所幫助。


【特性】


  1. 支持通過手勢移動和縮放剪裁窗口

  2. 支持固定剪裁窗口大小、固定窗口的長寬比率

  3. 支持設(shè)置最大的窗口長和寬

  4. 支持剪裁圖片的旋轉(zhuǎn)

  5. 易于集成和使用


【使用方法】


  1. 修改AndroidManifest.xml文件


需要添加一個Activity標簽:


<activity android:name="com.ticktick.p_w_picpathcropper.CropImageActivity"/>


需要添加寫SDcard的權(quán)限


<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


2. 啟動圖片剪裁界面的方法


第一種方法,使用庫中封裝的CropIntent來構(gòu)建Intent對象:


private void startCropImage() {

    // Create a CropIntent
    CropIntent intent = new CropIntent(); 
    
    // Set the source p_w_picpath filepath/URL and output filepath/URL (Required)
    intent.setImagePath("/sdcard/source.jpg");
    intent.setOutputPath("/sdcard/cropped.jpg");
    
    // Set a fixed crop window size (Optional) 
    intent.setOutputSize(640,480);

    // Set the max crop window size (Optional) 
    intent.setMaxOutputSize(800,600);

    // Set a fixed crop window's width/height aspect (Optional) 
    intent.setAspect(3,2);
    
    // Start ImageCropper activity with certain request code and listen for result
    startActivityForResult(intent.getIntent(this), REQUEST_CODE_CROP_PICTURE);
}


第二種方法,自定義Intent對象:


private void startCropImage() {

    // Create explicit intent
    Intent intent = new Intent(this, CropImageActivity.class);
        
    // Set the source p_w_picpath filepath/URL and output filepath/URL (Required)
    intent.setData(Uri.fromFile(new File("/sdcard/source.jpg")));
    intent.putExtra(MediaStore.EXTRA_OUTPUT,Uri.fromFile(new File("/sdcard/cropped.jpg")));
    
    // Set a fixed crop window size (Optional) 
    intent.putExtra("outputX",640);
    intent.putExtra("outputY",480);

    // Set the max crop window size (Optional) 
    intent.putExtra("maxOutputX",800);
    intent.putExtra("maxOutputY",600);

    // Set a fixed crop window's width/height aspect (Optional) 
    intent.putExtra("aspectX",3);
    intent.putExtra("aspectY",2);
    
    // Start ImageCropper activity with certain request code and listen for result
    startActivityForResult(intent, REQUEST_CODE_CROP_PICTURE);
}


3. 獲取剪裁結(jié)果


剪裁結(jié)束后,如果用戶點擊了“Save”按鈕,則可以通過MediaStore.EXTRA_OUTPUT得到保存的圖片的URL地址;如果用戶點擊了“Cancel”,則Activity的返回值會被設(shè)置為 RESULT_CANCEL


protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    if (resultCode != RESULT_OK) {
        return;
    }

    if (requestCode == REQUEST_CODE_CROP_PICTURE ) {
        Uri croppedUri = data.getExtras().getParcelable(MediaStore.EXTRA_OUTPUT);	
        InputStream in = null;
	try {
            in = getContentResolver().openInputStream(croppedUri);
            Bitmap b = BitmapFactory.decodeStream(in);
            mImageView.setImageBitmap(b);
        } 
	catch (FileNotFoundException e) {
            e.printStackTrace();
        }     
    }
    super.onActivityResult(requestCode, resultCode, data);
}


【小結(jié)】


這個庫就先介紹到這里,有任何疑問歡迎留言或者來信lujun.hust@gmail.com交流,也歡迎大家提出意見和建議,或者為該開源代碼做出自己的貢獻,謝謝。


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI