从SD卡拍摄图像,压缩它,然后将其保存回SD?

时间:2011-09-07 15:12:10

标签: android android-camera android-camera-intent

我试图从相机捕获图像,如果它太大我想压缩位图并将其发送回SD卡。我最初试图将图像直接拉入内部存储器,但显然根据我之前的问题的答案,我可以这样做:android picture from camera being taken at a really small size

我怎样才能将该图像文件带回我的应用内部存储器?

3 个答案:

答案 0 :(得分:0)

您可以使用以下代码重新缩放图像。

Bitmap yourBitmap;
Bitmap resized = Bitmap.createScaledBitmap(yourBitmap, newWidth, newHeight, true);

这会将您的图像压缩到更小的尺寸,您只需要根据您的要求提供新的高度和宽度。

答案 1 :(得分:0)

点击按钮调用方法将图像保存到SD卡:

SaveImage(bitmap);

将图像保存到SdCard:

private void SaveImage(Bitmap finalBitmap) {

  String root = Environment.getExternalStorageDirectory().toString();
  File myDir = new File(root + "/demo_images");    
  myDir.mkdirs();
  Random generator = new Random();
  int n = 10000;
  n = generator.nextInt(n);
  fname = "Image-"+ n +".jpg";
  File file = new File (myDir, fname);
// Below code will give you full path in TextView

> txtPath1.setText(file.getAbsolutePath());

  if (file.exists ()) file.delete (); 
  try {
         FileOutputStream out = new FileOutputStream(file);
         finalBitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
         out.flush();
         out.close();

  } catch (Exception e) {
         e.printStackTrace();
  }
}

从SdCard获取图片:

Bitmap bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
imageview.setImageDrawable(bitmap);

将图像存储到内存:

Saving and Reading Bitmaps/Images from Internal memory in Android

答案 2 :(得分:-2)

您从相机获取的图像已经以jpeg格式压缩。你永远不会从相机中获得原始图像。