繁体   English   中英

位图到uri转换android

[英]Bitmap to uri conversion android

从图库中选择裁剪图像后如何从位图获取uri

我尝试了这个

public Uri getImageUri(Context inContext, Bitmap inImage) {
    ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    inImage.compress(Bitmap.CompressFormat.PNG, 100, bytes);
    String path = MediaStore.Images.Media.insertImage(inContext.getContentResolver(), inImage, "Title", null);
    return Uri.parse(path);
}

但是uri = null

我想从中得到尿

if (resultCode == Activity.RESULT_OK && requestCode == PICK_IMAGE_REQUEST) {
            Uri imageUri = data.getData();
            performCrop(imageUri);
            Log.e(TAG, "image before crop:" + imageUri);

        }else if(resultCode == Activity.RESULT_OK && requestCode == PIC_CROP ){
            // get the returned data
            Bundle extras = data.getExtras();
            // get the cropped bitmap
            Bitmap selectedBitmap = extras.getParcelable("data");
            getImageUri(this,selectedBitmap);
            Uri ImageUri = data.getData();
            Log.e(TAG, "image before crop:" + ImageUri);

作物=空之前的日志图像

----更新裁剪----

   private void performCrop(Uri picUri) {
try {
    Intent cropIntent = new Intent("com.android.camera.action.CROP");
    // indicate image type and Uri
    cropIntent.setDataAndType(picUri, "image/*");
    // set crop properties here
    cropIntent.putExtra("crop", true);
    // indicate aspect of desired crop
    cropIntent.putExtra("aspectX", 1);
    cropIntent.putExtra("aspectY", 1);
    // indicate output X and Y
    cropIntent.putExtra("outputX", 128);
    cropIntent.putExtra("outputY", 128);
    // retrieve data on return
    cropIntent.putExtra("return-data", true);
    // start the activity - we handle returning in onActivityResult
    startActivityForResult(cropIntent, PIC_CROP);
}
// respond to users whose devices do not support the crop action
catch (ActivityNotFoundException anfe) {
    // display an error message
    String errorMessage = "Whoops - your device doesn't support the crop action!";
    Toast toast = Toast.makeText(this, errorMessage, Toast.LENGTH_SHORT);
    toast.show();
}

我猜您正在从图库中选择图像。

福利待遇:

  • 清单中的读/写数据权限
  • 验证权限并处理未授予权限的情况
  • 请求代码已声明:

     public static final int PICK_IMAGE = 1050; 

(1)打开图像选择器活动

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);

活动中:

startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE);

在片段中:

fragment.startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE);

(2)从选择中检索图像:

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data){

    if(resultCode == RESULT_OK && data != null && data.getData() != null ){

    switch(requestCode){

        case PICK_IMAGE_REQUEST:
            //get filepath from the result of image selection
            Uri filePath = data.getData();
            //Start activity for result for crop for selected image
            startCropActivity(filePath);
            break;

        case PIC_CROP:
            // get the returned data
            Bundle extras = data.getExtras();
            // get the cropped bitmap
            Bitmap selectedBitmap = extras.getParcelable("data");
            //do whatever with the bitmap of the image
            break;

            }
        }
}

这样开始作物活动:

private void startCropActivity(Uri filePath){
    try {
        Intent cropIntent = new Intent("com.android.camera.action.CROP");
        cropIntent.setDataAndType(filePath, "image/*");
        cropIntent.putExtra("crop", true);
        cropIntent.putExtra("aspectX", 1);
        cropIntent.putExtra("aspectY", 1);
        cropIntent.putExtra("outputX", 128);
        cropIntent.putExtra("outputY", 128);
        cropIntent.putExtra("return-data", true);

        startActivityForResult(cropIntent, PIC_CROP);

    }catch (ActivityNotFoundException anfe) {
        // display an error message
        Toast.makeText(this, "Could not crop", Toast.LENGTH_SHORT).show();

    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM