91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android如何實現裁剪照片功能

發布時間:2022-03-29 11:43:30 來源:億速云 閱讀:462 作者:小新 欄目:開發技術

這篇文章主要介紹Android如何實現裁剪照片功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1.   從相冊選擇照片進行裁剪
從相冊選擇照片并裁剪:


/**
 * 從相冊選擇照片進行裁剪
 */
private void cropFromGallery() {
    // TODO Auto-generated method stub    
    Intent intent=new Intent();
    intent.setAction(Intent.ACTION_PICK);//Pick an item from the data
    intent.setType("image/*");//從所有圖片中進行選擇
    intent.putExtra("crop", "true");//設置為裁切
    intent.putExtra("aspectX", 1);//裁切的寬比例
    intent.putExtra("aspectY", 1);//裁切的高比例
    intent.putExtra("outputX", 600);//裁切的寬度
    intent.putExtra("outputY", 600);//裁切的高度
    intent.putExtra("scale", true);//支持縮放
    intent.putExtra("return-data", false);
    intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);//將裁切的結果輸出到指定的Uri
    intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());//裁切成的圖片的格式
    intent.putExtra("noFaceDetection", true); // no face detection
    startActivityForResult(intent, SELECT_PIC);   
}


將裁減好的照片顯示在顯示在ImagaView上:


case SELECT_PIC:
    if (resultCode==RESULT_OK) {
        try {
            Bitmap bitmap=BitmapFactory.decodeStream(getContentResolver().
                    openInputStream(imageUri));//將imageUri對象的圖片加載到內存
            imgShow.setImageBitmap(bitmap);
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    break;

程序運行效果圖:

2.   從相機拍取照片進行裁剪
控制相機拍照并將照片保存到指定位置:


/**
 * 從相機拍取照片進行裁剪
 */
private void cropFromTake() {
    // TODO Auto-generated method stub
    Intent intent=new Intent();
    intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE);//設置Action為拍照
    intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);//將拍取的照片保存到指定URI
    startActivityForResult(intent, TAKE_PIC);
}

裁剪已經排好的照片并顯示在ImageView上:


case TAKE_PIC:
    if (resultCode==RESULT_OK) {
        cropImageUri(imageUri, 600, 600, CROP_PIC);
    }
    break;

/**
 * 裁剪指定uri對應的照片
 * @param imageUri:uri對應的照片
 * @param outputX:裁剪寬
 * @param outputY:裁剪高
 * @param requestCode:請求碼
 */
private void cropImageUri(Uri imageUri, int outputX, int outputY, int requestCode){
    Intent intent = new Intent("com.android.camera.action.CROP");
    intent.setDataAndType(imageUri, "image/*");
    intent.putExtra("crop", "true");
    intent.putExtra("aspectX", 1);
    intent.putExtra("aspectY", 1);
    intent.putExtra("outputX", outputX);
    intent.putExtra("outputY", outputY);
    intent.putExtra("scale", true);
    intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
    intent.putExtra("return-data", false);
    intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
    intent.putExtra("noFaceDetection", true); // no face detection
    startActivityForResult(intent, requestCode);
}

程序運行效果圖:

3.完整項目代碼:
 

package com.jph.cp;
 
import java.io.File;
import java.io.FileNotFoundException;
import android.support.v7.app.ActionBarActivity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.view.View;
import android.widget.ImageView;
 
/**
 * 從相冊選擇照片進行裁剪,從相機拍取照片進行裁剪
 * @author JPH
 * Date:2014.10.09
 */
public class MainActivity extends ActionBarActivity {
    private final static int SELECT_PIC=0x123; 
    private final static int TAKE_PIC=0x124; 
    private final static int CROP_PIC=0x125; 
    private Uri imageUri;
    private ImageView imgShow;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化imageUri
        imageUri=Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "test.jpg"));
        imgShow=(ImageView)findViewById(R.id.imgShow);
    }
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // TODO Auto-generated method stub
        switch (requestCode) {
        case SELECT_PIC:
            if (resultCode==RESULT_OK) {
                try {
                    Bitmap bitmap=BitmapFactory.decodeStream(getContentResolver().
                            openInputStream(imageUri));//將imageUri對象的圖片加載到內存
                    imgShow.setImageBitmap(bitmap);
                } catch (FileNotFoundException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
            break;
        case TAKE_PIC:
            if (resultCode==RESULT_OK) {
                cropImageUri(imageUri, 600, 600, CROP_PIC);
            }
            break;
        case CROP_PIC:
            if (resultCode==RESULT_OK) {
                try {
                    Bitmap bitmap=BitmapFactory.decodeStream(getContentResolver().
                            openInputStream(imageUri));//將imageUri對象的圖片加載到內存
                    imgShow.setImageBitmap(bitmap);
                } catch (FileNotFoundException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
            break;
        default:
            break;
        }
        super.onActivityResult(requestCode, resultCode, data);
    }
    /**
     * 裁剪指定uri對應的照片
     * @param imageUri:uri對應的照片
     * @param outputX:裁剪寬
     * @param outputY:裁剪高
     * @param requestCode:請求碼
     */
    private void cropImageUri(Uri imageUri, int outputX, int outputY, int requestCode){
        Intent intent = new Intent("com.android.camera.action.CROP");
        intent.setDataAndType(imageUri, "image/*");
        intent.putExtra("crop", "true");
        intent.putExtra("aspectX", 1);
        intent.putExtra("aspectY", 1);
        intent.putExtra("outputX", outputX);
        intent.putExtra("outputY", outputY);
        intent.putExtra("scale", true);
        intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
        intent.putExtra("return-data", false);
        intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
        intent.putExtra("noFaceDetection", true); // no face detection
        startActivityForResult(intent, requestCode);
    }
 
    public void cropPic(View view) {
        switch (view.getId()) {
        case R.id.btnCropFromGallery://從相冊選擇照片進行裁剪
            cropFromGallery();
            break;
        case R.id.btnCropFromTake://從相機拍取照片進行裁剪
            cropFromTake();
            break;
 
        default:
            break;
        }
    }
    /**
     * 從相機拍取照片進行裁剪
     */
    private void cropFromTake() {
        // TODO Auto-generated method stub
        Intent intent=new Intent();
        intent.setAction(MediaStore.ACTION_IMAGE_CAPTURE);//設置Action為拍照
        intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);//將拍取的照片保存到指定URI
        startActivityForResult(intent, TAKE_PIC);
    }
    /**
     * 從相冊選擇照片進行裁剪
     */
    private void cropFromGallery() {
        // TODO Auto-generated method stub        
        Intent intent=new Intent();
        intent.setAction(Intent.ACTION_PICK);//Pick an item from the data
        intent.setType("image/*");//從所有圖片中進行選擇
        intent.putExtra("crop", "true");//設置為裁切
        intent.putExtra("aspectX", 1);//裁切的寬比例
        intent.putExtra("aspectY", 1);//裁切的高比例
        intent.putExtra("outputX", 600);//裁切的寬度
        intent.putExtra("outputY", 600);//裁切的高度
        intent.putExtra("scale", true);//支持縮放
        intent.putExtra("return-data", false);
        intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);//將裁切的結果輸出到指定的Uri
        intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());//裁切成的圖片的格式
        intent.putExtra("noFaceDetection", true); // no face detection
        startActivityForResult(intent, SELECT_PIC);    
    }
}

以上是“Android如何實現裁剪照片功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

孝昌县| 松滋市| 安龙县| 镇赉县| 扎囊县| 江津市| 绥棱县| 通州市| 永春县| 齐河县| 丰城市| 同江市| 孝义市| 百色市| 青铜峡市| 威海市| 武定县| 台南县| 诏安县| 恩平市| 弥勒县| 榆林市| 务川| 松桃| 晋城| 高台县| 手游| 马公市| 金川县| 剑阁县| 长岛县| 朝阳县| 墨竹工卡县| 丹凤县| 缙云县| 顺义区| 旺苍县| 维西| 万安县| 三原县| 博爱县|