Android:呼び出しシステムのカメラ写真が圧縮される問題の処理
最近ではIntent呼び出しシステムのカメラ機能を使い、onActivity Resultメソッドのdataで写真のbitmapを得ていますが、取得した写真リソースが圧縮されていて圧縮されていることがわかり、圧縮されていない元の画像をどのように得て自分のニーズに合わせて圧縮するのでしょうか.
ネット上でいくつかの方法を探しました.それはジャンプ時にintentPhoteを追加することです.putExtra(MediaStore.EXTRA_OUTPUT, uri); このプロパティは、撮影した画像をuriというパスに格納するプロセスであり、onActivity Resultはこの写真を表示するだけであり、つまり格納されたパスを事前に特定するプロセスである.次のコード
ネット上でいくつかの方法を探しました.それはジャンプ時にintentPhoteを追加することです.putExtra(MediaStore.EXTRA_OUTPUT, uri); このプロパティは、撮影した画像をuriというパスに格納するプロセスであり、onActivity Resultはこの写真を表示するだけであり、つまり格納されたパスを事前に特定するプロセスである.次のコード
<pre name="code" class="java">import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends Activity {
private Button mButton;
private ImageView mImage;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mButton = (Button) findViewById(R.id.button1);
mImage = (ImageView) findViewById(R.id.image_show);
mButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//
Intent intentPhote = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intentPhote.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
File out = new File(getPhotopath());
Uri uri = Uri.fromFile(out);
// , uri
intentPhote.putExtra(MediaStore.EXTRA_OUTPUT, uri);
// intentPhote.putExtra(MediaStore.Images.Media.ORIENTATION, 180);
startActivityForResult(intentPhote, 2000);
}
});
}
/**
*
* @return
*/
private String getPhotopath() {
//
String fileName = "";
//
String pathUrl = Environment.getExternalStorageDirectory()+"/mymy/";
String imageName = "imageTest.jpg";
File file = new File(pathUrl);
file.mkdirs();//
fileName = pathUrl + imageName;
return fileName;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode == 2000 && resultCode == Activity.RESULT_OK) {
Bitmap bitmap = getBitmapFromUrl(getPhotopath(), 313.5, 462.0);
saveScalePhoto(bitmap);
mImage.setImageBitmap(bitmap);
}
}
/**
* ( )
* @param url
* @param width
* @param height
* @return
*/
private Bitmap getBitmapFromUrl(String url, double width, double height) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true; // false
Bitmap bitmap = BitmapFactory.decodeFile(url);
// OOM
options.inJustDecodeBounds = false;
int mWidth = bitmap.getWidth();
int mHeight = bitmap.getHeight();
Matrix matrix = new Matrix();
float scaleWidth = 1;
float scaleHeight = 1;
// try {
// ExifInterface exif = new ExifInterface(url);
// String model = exif.getAttribute(ExifInterface.TAG_ORIENTATION);
// } catch (IOException e) {
// e.printStackTrace();
// }
//
//
// ,
//
if(mWidth <= mHeight) {
scaleWidth = (float) (width/mWidth);
scaleHeight = (float) (height/mHeight);
} else {
scaleWidth = (float) (height/mWidth);
scaleHeight = (float) (width/mHeight);
}
// matrix.postRotate(90); /* 90 */
//
matrix.postScale(scaleWidth, scaleHeight);
Bitmap newBitmap = Bitmap.createBitmap(bitmap, 0, 0, mWidth, mHeight, matrix, true);
//
bitmap.recycle();
return newBitmap;
}
/**
*
* @param data
*/
private void saveScalePhoto(Bitmap bitmap) {
//
String fileName = "";
//
String pathUrl = Environment.getExternalStorageDirectory().getPath()+"/mymy/";
String imageName = "imageScale.jpg";
FileOutputStream fos = null;
File file = new File(pathUrl);
file.mkdirs();//
fileName = pathUrl + imageName;
try {
fos = new FileOutputStream(fileName);
bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fos);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
try {
fos.flush();
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
布局比较简单
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text=" " /> <ImageView android:id="@+id/image_show" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </LinearLayout>
最後に権限の追加を忘れないでください
これで自分のニーズに合わせて特定の大きさの写真を保存できるようになりました