在设置为 ImageView 之前在哪里调用裁剪图像

Posted

技术标签:

【中文标题】在设置为 ImageView 之前在哪里调用裁剪图像【英文标题】:Where to call Crop Image Before Setting to ImageView 【发布时间】:2017-12-05 13:55:56 【问题描述】:

在设置为图像视图之前在哪里调用裁剪图像,因为我没有得到它,因为我的图像没有被裁剪为此活动。因为我想裁剪图像并将裁剪后的图像也发布到服务器

@Override
  protected void onActivityResult(int requestCode, int resultCode, Intent data) 
    super.onActivityResult(requestCode, resultCode, data);
    if (resultCode == RESULT_OK) 
        if (requestCode == 1) 
            File f = new File(Environment.getExternalStorageDirectory().toString());
            for (File temp : f.listFiles()) 
                if (temp.getName().equals("temp.jpg")) 
                    f = temp;
                    break;
                
            
            try 
                Bitmap bitmap;
                BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();
                bitmap = BitmapFactory.decodeFile(f.getAbsolutePath(),
                        bitmapOptions);
                imgNavHeaderPic.setImageBitmap(bitmap);
                String path = android.os.Environment
                        .getExternalStorageDirectory()
                        + File.separator
                        + "Phoenix" + File.separator + "default";
                f.delete();
                OutputStream outFile = null;
                File file = new File(path, String.valueOf(System.currentTimeMillis()) + ".jpg");
                createBitmapAndAssign(Uri.fromFile(file));
                try 
                    outFile = new FileOutputStream(file);
                    bitmap.compress(Bitmap.CompressFormat.JPEG, 85, outFile);
                    outFile.flush();
                    outFile.close();
                 catch (FileNotFoundException e) 
                    e.printStackTrace();
                 catch (IOException e) 
                    e.printStackTrace();
                 catch (Exception e) 
                    e.printStackTrace();
                
             catch (Exception e) 
                e.printStackTrace();
            
         else if (requestCode == 2) 
            Uri selectedImage = data.getData();
            createBitmapAndAssign(data.getData());
            String[] filePath = MediaStore.Images.Media.DATA;
            Cursor c = getContentResolver().query(selectedImage, filePath, null, null, null);
            c.moveToFirst();
            int columnIndex = c.getColumnIndex(filePath[0]);
            String picturePath = c.getString(columnIndex);
            c.close();
            Bitmap thumbnail = (BitmapFactory.decodeFile(picturePath));
            imgNavHeaderPic.setImageBitmap(thumbnail);
            Drawable bitmap = imgNavHeaderPic.getDrawable();

        
    

因为我也很好地压缩了我的图像......

【问题讨论】:

How can I crop a bitmap for ImageView?的可能重复 【参考方案1】:

试试这个

try
    Bitmap bm = BitmapFactory.decodeResource(getResources(), 
    R.drawable.ic_launcher);
    bm = Bitmap.createBitmap(bm, 0, 0, 400, 400);
    your_imageview.setImageBitmap(bm);
catch(Exception e)
      e.printStackTrace();     

【讨论】:

我应该在哪里尝试这个...意味着在代码中的哪里,我没有得到它请帮助我 您必须将图像发送到服务器的位置? 如果您只需要为 imageview 裁剪图像,您可以使用 glide 库的覆盖方法简单地执行此操作,但如果您必须通过网络发送图像,则图像必须在您的存储中。解释一下你的情况。 我想裁剪图像并发送到服务器,并将其设置为 Imageview 作为whatsapp

以上是关于在设置为 ImageView 之前在哪里调用裁剪图像的主要内容,如果未能解决你的问题,请参考以下文章

Android:从位图裁剪位图并设置为 ImageView src

iOS 设置图片imageView圆角——对图片进行裁剪

如何为 UITableViews 裁剪 cell.imageview.image 中的图像?

如何在不创建新位图的情况下拥有圆形、中心裁剪的 imageView?

为啥我裁剪的图像很小?

以另一个 ImageView 的形状裁剪 ImageView