中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

發布時間:2020-06-05 14:14:46 來源:網絡 閱讀:3514 作者:Jhuster 欄目:移動開發

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


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


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


【特性】


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

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

  3. 支持設置最大的窗口長和寬

  4. 支持剪裁圖片的旋轉

  5. 易于集成和使用


【使用方法】


  1. 修改AndroidManifest.xml文件


需要添加一個Activity標簽:


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


需要添加寫SDcard的權限


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


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


第一種方法,使用庫中封裝的CropIntent來構建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. 獲取剪裁結果


剪裁結束后,如果用戶點擊了“Save”按鈕,則可以通過MediaStore.EXTRA_OUTPUT得到保存的圖片的URL地址;如果用戶點擊了“Cancel”,則Activity的返回值會被設置為 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);
}


【小結】


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


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

勃利县| 当阳市| 邓州市| 双江| 浮山县| 汤原县| 长泰县| 新宁县| 龙海市| 辉南县| 渑池县| 鸡东县| 武川县| 西安市| 三原县| 邵阳市| 石嘴山市| 阿坝县| 霍林郭勒市| 博兴县| 察哈| 沂水县| 开远市| 肇源县| 郓城县| 蒲江县| 冀州市| 抚松县| 山东省| 公安县| 石首市| 宁阳县| 韶山市| 远安县| 资溪县| 井冈山市| 东阳市| 赤峰市| 英超| 那坡县| 肥东县|