Java Android摄像头应用程序无法正确显示图像

Java Android摄像头应用程序无法正确显示图像,java,android,memory,bitmap,camera,Java,Android,Memory,Bitmap,Camera,我想制作一个应用程序,用设备的摄像头拍照,将图像保存在内存中,然后在下一个活动中显示该图像。预览效果很好,但当我点击“捕获”按钮时,应用程序进入下一个活动,只显示一个空白的白色屏幕。也许我没有正确地写入或读取文件 以下是主要活动: public class MainActivity extends ActionBarActivity { public final static String EXTRA_MESSAGE = "File_name"; private Camera mCamera;

我想制作一个应用程序,用设备的摄像头拍照,将图像保存在内存中,然后在下一个活动中显示该图像。预览效果很好,但当我点击“捕获”按钮时,应用程序进入下一个活动,只显示一个空白的白色屏幕。也许我没有正确地写入或读取文件

以下是主要活动:

public class MainActivity extends ActionBarActivity {
public final static String EXTRA_MESSAGE = "File_name";
private Camera mCamera;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Create an instance of Camera
    mCamera = getCameraInstance();

    // Create our Preview view and set it as the content of our activity.
    CameraPreview mPreview = new CameraPreview(this, mCamera);
    FrameLayout preview = (FrameLayout) findViewById(R.id.camera_preview);
    preview.addView(mPreview);

    // Add a listener to the Capture button
    Button captureButton = (Button) findViewById(R.id.button_capture);
    captureButton.setOnClickListener(new View.OnClickListener() {
        @Override
              public void onClick(View v) {
                // get an image from the camera
                    mCamera.takePicture(null, null, mPicture);
                         }
              }
    );

}

//////////////////////
public void sendInfo(String pathway) {
    Intent intent = new Intent(this, show_image.class);
    intent.putExtra(EXTRA_MESSAGE,pathway);
    startActivity(intent);
}
/////////////////
private Camera.PictureCallback mPicture = new Camera.PictureCallback() {

    @Override
    public void onPictureTaken(byte[] data , Camera camera) {

        Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);

        ContextWrapper cw = new ContextWrapper(getApplicationContext());
        // path to /data/data/yourapp/app_data/imageDir
        File directory = cw.getDir("imageDir", Context.MODE_PRIVATE);
        // Create imageDir
        File mypath=new File(directory,"pic.jpg");
        FileOutputStream fos = null;

        if (directory == null){
            Log.d("Logtag", "Error creating media file, check storage permissions: ");
            return;
        }

        try {
            fos = new FileOutputStream(mypath);
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
            fos.close();
            String path = directory.getAbsolutePath();
            sendInfo(path);
        } catch (FileNotFoundException e) {
            Log.d("Logtag", "File not found: " + e.getMessage());
        } catch (IOException e) {
            Log.d("Logtag", "Error accessing file: " + e.getMessage());
        }
    }
};

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

/**
 * A safe way to get an instance of the Camera object.
 */
public Camera getCameraInstance() {
    Camera c = null;
    try {
        c = Camera.open(); // attempt to get a Camera instance
    } catch (Exception e) {
        // Camera is not available (in use or does not exist)
        Toast.makeText(getApplicationContext(), "Camera is not available  (in use or does not exist)",
                Toast.LENGTH_LONG).show();
    }
    return c; // returns null if camera is unavailable
}
}
public class ImageDisplayActivity extends FragmentActivity{

    public static final String KEY_PATH = "path";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_image_display);
        final ImageView imageDisplay = (ImageView)findViewById(R.id.image_displayer);
        final Bundle extras = getIntent().getExtras();
        if(extras != null){
            final String path = extras.getString(KEY_PATH);
            File imgFile = new File(path);
            Bitmap bitmap = decodeFile(imgFile);
            imageDisplay.setImageBitmap(bitmap);
        }

    }


    private Bitmap decodeFile(File f){
        Bitmap b = null;
        try {
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;

            FileInputStream fis = new FileInputStream(f);
            BitmapFactory.decodeStream(fis, null, o);
            fis.close();

            int scale = 1;
            if (o.outHeight > 50 || o.outWidth > 50) {
                scale = (int)Math.pow(2, (int) Math.round(Math.log(50 / (double) Math.max(o.outHeight, o.outWidth)) / Math.log(0.5)));
            }

            BitmapFactory.Options o2 = new BitmapFactory.Options();
            o2.inSampleSize = scale;
            fis = new FileInputStream(f);
            b = BitmapFactory.decodeStream(fis, null, o2);
            fis.close();
        } catch (IOException e) {
        }
        return b;
    }

}
下面是第二个活动,用于显示刚刚拍摄的图像:

public class show_image extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Intent intent = getIntent();
    String path = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

    try {
        File f = new File(path, "pic.jpg");
        Bitmap b = BitmapFactory.decodeStream(new FileInputStream(f));
        ImageView img= new ImageView(this);
        img.setImageBitmap(b);
    }
    catch (FileNotFoundException e)
    {
        e.printStackTrace();
    }



}

public static Bitmap decodeFile(File f, final int maxSize) {

    Bitmap b = null;
    // Decode image size
    BitmapFactory.Options o = new BitmapFactory.Options();
    o.inJustDecodeBounds = true;

    FileInputStream fis = null;
    try {
        fis = new FileInputStream(f);
        BitmapFactory.decodeStream(fis, null, o);
        fis.close();

        int scale = 1;
        if (o.outHeight > maxSize || o.outWidth > maxSize) {
            scale = (int) Math.pow(2, (int) Math.round(Math.log(maxSize / (double) Math.max(o.outHeight, o.outWidth)) / Math.log(0.5)));
        }

        // Decode with inSampleSize
        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize = scale;

        fis = new FileInputStream(f);
        b = BitmapFactory.decodeStream(fis, null, o2);

    } catch (Exception e) {
        Log.e("Logtag", "Error processing bitmap", e);
    } finally {
        //FileUtil.closeQuietly(fis);
    }

    return b;
}




@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

Android Studio的LogCat:

02-25 12:32:49.389  17041-17041/edu.ramapo.camer I/System.out﹕ debugger has settled (1496)


02-25 12:32:49.620  17041-17041/edu.ramapo.camer I/dalvikvm﹕ Could not find method android.view.ViewGroup.onNestedScrollAccepted, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.onNestedScrollAccepted


02-25 12:32:49.620  17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY: unable to resolve virtual method 11360: Landroid/view/ViewGroup;.onNestedScrollAccepted (Landroid/view/View;Landroid/view/View;I)V

02-25 12:32:49.620  17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY: replacing opcode 0x6f at 0x0000

02-25 12:32:49.620  17041-17041/edu.ramapo.camer I/dalvikvm﹕ Could not find method android.view.ViewGroup.onStopNestedScroll, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.onStopNestedScroll

02-25 12:32:49.620  17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY: unable to resolve virtual method 11366: Landroid/view/ViewGroup;.onStopNestedScroll (Landroid/view/View;)V

02-25 12:32:49.620  17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY: replacing opcode 0x6f at 0x0000

02-25 12:32:49.630  17041-17041/edu.ramapo.camer I/dalvikvm﹕ Could not find method android.support.v7.internal.widget.ActionBarOverlayLayout.stopNestedScroll, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.setHideOnContentScrollEnabled

02-25 12:32:49.630  17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY: unable to resolve virtual method 9050: Landroid/support/v7/internal/widget/ActionBarOverlayLayout;.stopNestedScroll ()V

02-25 12:32:49.630  17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x000e

02-25 12:32:49.660  17041-17041/edu.ramapo.camer I/dalvikvm﹕ Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method 
android.support.v7.internal.widget.TintTypedArray.getChangingConfigurations

02-25 12:32:49.660  17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY: unable to resolve virtual method 367: Landroid/content/res/TypedArray;.getChangingConfigurations ()I

02-25 12:32:49.660  17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002

02-25 12:32:49.670  17041-17041/edu.ramapo.camer I/dalvikvm﹕ Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.internal.widget.TintTypedArray.getType

02-25 12:32:49.670  17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY: unable to resolve virtual method 389: Landroid/content/res/TypedArray;.getType (I)I

02-25 12:32:49.670  17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002

02-25 12:32:50.611  17041-17041/edu.ramapo.camer D/libEGL﹕ loaded /system/lib/egl/libEGL_adreno200.so

02-25 12:32:50.621  17041-17041/edu.ramapo.camer D/libEGL﹕ loaded /system/lib/egl/libGLESv1_CM_adreno200.so

02-25 12:32:50.621  17041-17041/edu.ramapo.camer D/libEGL﹕ loaded /system/lib/egl/libGLESv2_adreno200.so

02-25 12:32:50.631  17041-17041/edu.ramapo.camer I/Adreno200-EGL﹕ <qeglDrvAPI_eglInitialize:265>: EGL 1.4 QUALCOMM build: HAREESHG_Nondeterministic_AU+PATCH[ES]_msm8960_JB_1.9.6_MR2_CL3219408_release_ENGG (CL3219408)
    Build Date: 09/28/13 Sat
    Local Branch: hhh
    Remote Branch: quic/jb_1.9.6_1
    Local Patches: 8d50ec23e42ef52b570aa6ff1650afac0b503d78 CL3219408: Fix in the Glreadpixels for negative offsets and larger dimensions.
    801859126f6ca69482b39a34ca61447e3f7cded8 rb: fix panel settings to clear undrawn/undefined buffers
    Reconstruct Branch: LOCAL_PATCH[ES]

02-25 12:32:50.991  17041-17041/edu.ramapo.camer D/OpenGLRenderer﹕ Enabling debug mode 0

02-25 12:32:51.552  17041-17041/edu.ramapo.camer I/Choreographer﹕ Skipped 59 frames!  The application may be doing too much work on its main thread.

02-25 12:32:56.037  17041-17047/edu.ramapo.camer D/dalvikvm﹕ Debugger has detached; object registry had 4113 entries

02-25 12:33:18.651  17041-17041/edu.ramapo.camer D/dalvikvm﹕ GC_FOR_ALLOC freed 694K, 38% free 12155K/19420K, paused 29ms, total 32ms

02-25 12:33:18.771  17041-17041/edu.ramapo.camer I/dalvikvm-heap﹕ Grow heap (frag case) to 45.705MB for 31961104-byte allocation

02-25 12:33:24.507  17041-17041/edu.ramapo.camer D/dalvikvm﹕ GC_FOR_ALLOC freed 31627K, 40% free 11825K/19424K, paused 30ms, total 30ms

02-25 12:33:24.587  17041-17041/edu.ramapo.camer I/dalvikvm-heap﹕ Grow heap (frag case) to 45.382MB for 31961104-byte allocation
02-25 12:32:49.389 17041-17041/edu.ramapo.camer I/System.out﹕ 调试器已解决(1496)
02-25 12:32:49.620 17041-17041/edu.ramapo.camer I/dalvikvm﹕ 找不到从方法android.support.v7.internal.widget.ActionBarOverlayLayout.OnTestedScrolAccepted引用的方法android.view.ViewGroup.OnTestedScrolAccepted
02-25 12:32:49.620 17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY:无法解析虚拟方法11360:Landroid/view/ViewGroup;。ONNESTEDSCROLACCEPTED(Landroid/视图/视图;Landroid/视图/视图;I)V
02-25 12:32:49.620 17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY:在0x0000处替换操作码0x6f
02-25 12:32:49.620 17041-17041/edu.ramapo.camer I/dalvikvm﹕ 找不到从方法android.support.v7.internal.widget.ActionBarOverlayLayout.onStopNestedScroll引用的方法android.view.ViewGroup.onStopNestedScroll
02-25 12:32:49.620 17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY:无法解析虚拟方法11366:Landroid/view/ViewGroup;。onStopNestedScroll(Landroid/view/view;)V
02-25 12:32:49.620 17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY:在0x0000处替换操作码0x6f
02-25 12:32:49.63017041-17041/edu.ramapo.camer I/dalvikvm﹕ 找不到方法android.support.v7.internal.widget.ActionBarOverlayLayout.stopNestedScroll,该方法引用自方法android.support.v7.internal.widget.ActionBarOverlayLayout.setHideOnContentScrollEnabled
02-25 12:32:49.63017041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY:无法解析虚拟方法9050:Landroid/support/v7/internal/widget/ActionBarOverlayLayout;。stopNestedScroll()V
02-25 12:32:49.63017041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY:在0x000e处替换操作码0x6e
02-25 12:32:49.660 17041-17041/edu.ramapo.camer I/dalvikvm﹕ 找不到方法android.content.res.TypedArray.getChangingConfigurations,引用自方法
android.support.v7.internal.widget.TintTypedArray.GetChangingConfiguration
02-25 12:32:49.660 17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY:无法解析虚拟方法367:Landroid/content/res/TypedArray;。getChangingConfigurations()I
02-25 12:32:49.660 17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY:在0x0002处替换操作码0x6e
02-25 12:32:49.670 17041-17041/edu.ramapo.camer I/dalvikvm﹕ 找不到从方法android.support.v7.internal.widget.TintTypedArray.getType引用的方法android.content.res.TypedArray.getType
02-25 12:32:49.670 17041-17041/edu.ramapo.camer W/dalvikvm﹕ VFY:无法解析虚拟方法389:Landroid/content/res/TypedArray;。getType(I)I
02-25 12:32:49.670 17041-17041/edu.ramapo.camer D/dalvikvm﹕ VFY:在0x0002处替换操作码0x6e
02-25 12:32:50.611 17041-17041/edu.ramapo.camer D/libEGL﹕ 已加载/system/lib/egl/libEGL_adreno200.so
02-25 12:32:50.6217041-17041/edu.ramapo.camer D/libEGL﹕ loaded/system/lib/egl/libGLESv1_CM_adreno200.so
02-25 12:32:50.6217041-17041/edu.ramapo.camer D/libEGL﹕ loaded/system/lib/egl/libGLESv2_adreno200.so
02-25 12:32:50.6317041-17041/edu.ramapo.camer I/Adreno200 EGL﹕ : EGL 1.4高通公司构建:HAREESHG_非确定性_AU+补丁[ES]_msm8960_JB_1.9.6_MR2_CL3219408_发布_工程(CL3219408)
建造日期:2013年9月28日星期六
本地分行:hhh
远程分支:quic/jb_1.9.6_1
局部修补程序:8d50ec23e42ef52b570aa6ff1650afac0b503d78 CL3219408:在Glreadpixels中修复负偏移和更大尺寸。
801859126f6ca69482b39a34ca61447e3f7cded8 rb:修复面板设置以清除未提取/未定义的缓冲区
重建分支:局部_补丁[ES]
02-25 12:32:50.991 17041-17041/edu.ramapo.camer D/opengl渲染器﹕ 正在启用调试模式0
02-25 12:32:51.552 17041-17041/edu.ramapo.camer I/编舞﹕ 跳过59帧!应用程序可能在其主线程上做了太多工作。
02-25 12:32:56.037 17041-17047/edu.ramapo.camer D/dalvikvm﹕ 调试器已分离;对象注册表有4113个条目
02-25 12:33:18.6517041-17041/edu.ramapo.camer D/dalvikvm﹕ GC_FOR_ALLOC释放694K,38%释放12155K/19420K,暂停29毫秒,总计32毫秒
02-25 12:33:18.771 17041-17041/edu.ramapo.camer I/dalvikvm堆﹕ 为31961104字节分配将堆(frag大小写)增加到45.705MB
02-25 12:33:24.507 17041-17041/edu.ramapo.camer D/dalvikvm﹕ GC_FOR_ALLOC释放31627K,40%释放11825K/19424K,暂停30ms,总计30ms
02-25 12:33:24.587 17041-17041/edu.ramapo.camer I/dalvikvm堆﹕ 对于31961104字节分配,将堆(frag大小写)增加到45.382MB

现在我给你发了一个应用程序的副本,链接已经存在,下面是代码:

public class GlassARTest extends FragmentActivity {

    private static final String TAG = "CameraActivity";

    public static final int MEDIA_TYPE_IMAGE = 1;
    private Camera mCamera;
    private CameraPreview mPreview;
    private Context mContext;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test);

        mContext = this;

        if(checkCameraHardware(mContext)){
            // Create an instance of Camera
            mCamera = getCameraInstance();

            // Create our Preview view and set it as the content of our activity.
            mPreview = new CameraPreview(this, mCamera);
            FrameLayout preview = (FrameLayout) findViewById(R.id.camera_preview);
            preview.addView(mPreview);

         // Add a listener to the Capture button
            Button captureButton = (Button) findViewById(R.id.button_capture);
            captureButton.setOnClickListener(
                new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        // get an image from the camera
                        mCamera.takePicture(null, null, mPicture);
                    }
                }
            );
        }
    }

    private PictureCallback mPicture = new PictureCallback() {

        @Override
        public void onPictureTaken(final byte[] data, Camera camera) {

            new AsyncTask<Void, Void, String>() {

                @Override
                protected String doInBackground(Void... params) {
                    File pictureFile = getOutputMediaFile(MEDIA_TYPE_IMAGE);
                    if (pictureFile == null){
                        Log.d(TAG, "Error creating media file, check storage permissions: ");
                        return null;
                    }

                    try {
                        FileOutputStream fos = new FileOutputStream(pictureFile);
                        fos.write(data);
                        fos.close();
                        return pictureFile.getPath();
                    } catch (FileNotFoundException e) {
                        Log.d(TAG, "File not found: " + e.getMessage());
                        return null;
                    } catch (IOException e) {
                        Log.d(TAG, "Error accessing file: " + e.getMessage());
                        return null;
                    }
                }

                @Override
                protected void onPostExecute(String result) {
                    super.onPostExecute(result);
                    if(result != null){
                        Intent intent = new Intent(mContext, ImageDisplayActivity.class);
                        intent.putExtra(ImageDisplayActivity.KEY_PATH, result);
                        startActivity(intent);
                    }
                }

            }.execute();


        }
    };


    /** A basic Camera preview class */
    public class CameraPreview extends SurfaceView implements SurfaceHolder.Callback {
        private SurfaceHolder mHolder;
        private Camera mCamera;

        public CameraPreview(Context context, Camera camera) {
            super(context);
            mCamera = camera;

            // Install a SurfaceHolder.Callback so we get notified when the
            // underlying surface is created and destroyed.
            mHolder = getHolder();
            mHolder.addCallback(this);
            // deprecated setting, but required on Android versions prior to 3.0
            mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
        }

        public void surfaceCreated(SurfaceHolder holder) {
            // The Surface has been created, now tell the camera where to draw the preview.
            try {
                mCamera.setPreviewDisplay(holder);
                mCamera.startPreview();
            } catch (IOException e) {
                Log.d(TAG, "Error setting camera preview: " + e.getMessage());
            }
        }

        public void surfaceDestroyed(SurfaceHolder holder) {
            // empty. Take care of releasing the Camera preview in your activity.
        }

        public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
            // If your preview can change or rotate, take care of those events here.
            // Make sure to stop the preview before resizing or reformatting it.

            if (mHolder.getSurface() == null){
              // preview surface does not exist
              return;
            }

            // stop preview before making changes
            try {
                mCamera.stopPreview();
            } catch (Exception e){
              // ignore: tried to stop a non-existent preview
            }

            // set preview size and make any resize, rotate or
            // reformatting changes here

            // start preview with new settings
            try {
                mCamera.setPreviewDisplay(mHolder);
                mCamera.startPreview();

            } catch (Exception e){
                Log.d(TAG, "Error starting camera preview: " + e.getMessage());
            }
        }
    }

    /** A safe way to get an instance of the Camera object. */
    public static Camera getCameraInstance(){
        Camera c = null;
        try {
            c = Camera.open(); // attempt to get a Camera instance
        }
        catch (Exception e){
            // Camera is not available (in use or does not exist)
        }
        return c; // returns null if camera is unavailable
    }

    /** Check if this device has a camera */
    private boolean checkCameraHardware(Context context) {
        if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA)){
            // this device has a camera
            return true;
        } else {
            // no camera on this device
            return false;
        }
    }


    /** Create a File for saving an image or video */
    private static File getOutputMediaFile(int type){
        // To be safe, you should check that the SDCard is mounted
        // using Environment.getExternalStorageState() before doing this.

        File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
                  Environment.DIRECTORY_PICTURES), "MyCameraApp");
        // This location works best if you want the created images to be shared
        // between applications and persist after your app has been uninstalled.

        // Create the storage directory if it does not exist
        if (! mediaStorageDir.exists()){
            if (! mediaStorageDir.mkdirs()){
                Log.d("MyCameraApp", "failed to create directory");
                return null;
            }
        }

        // Create a media file name
        String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss", Locale.getDefault()).format(new Date());
        File mediaFile;
        if (type == MEDIA_TYPE_IMAGE){
            mediaFile = new File(mediaStorageDir.getPath() + File.separator +
            "IMG_"+ timeStamp + ".jpg");
        } else {
            return null;
        }

        return mediaFile;
    }

}  private SurfaceHolder mHolder;
    private Camera mCamera;

    public CameraPreview(Context context, Camera camera) {
        super(context);
        mCamera = camera;

        // Install a SurfaceHolder.Callback so we get notified when the
        // underlying surface is created and destroyed.
        mHolder = getHolder();
        mHolder.addCallback(this);
        // deprecated setting, but required on Android versions prior to 3.0
        mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
    }

    public void surfaceCreated(SurfaceHolder holder) {
        // The Surface has been created, now tell the camera where to draw the preview.
        try {
            mCamera.setPreviewDisplay(holder);
            mCamera.startPreview();
        } catch (IOException e) {
            Log.d(TAG, "Error setting camera preview: " + e.getMessage());
        }
    }

    public void surfaceDestroyed(SurfaceHolder holder) {
        // empty. Take care of releasing the Camera preview in your activity.
    }

    public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
        // If your preview can change or rotate, take care of those events here.
        // Make sure to stop the preview before resizing or reformatting it.

        if (mHolder.getSurface() == null){
          // preview surface does not exist
          return;
        }

        // stop preview before making changes
        try {
            mCamera.stopPreview();
        } catch (Exception e){
          // ignore: tried to stop a non-existent preview
        }

        // set preview size and make any resize, rotate or
        // reformatting changes here

        // start preview with new settings
        try {
            mCamera.setPreviewDisplay(mHolder);
            mCamera.startPreview();

        } catch (Exception e){
            Log.d(TAG, "Error starting camera preview: " + e.getMessage());
        }
    }
}

/** A safe way to get an instance of the Camera object. */
public static Camera getCameraInstance(){
    Camera c = null;
    try {
        c = Camera.open(); // attempt to get a Camera instance
    }
    catch (Exception e){
        // Camera is not available (in use or does not exist)
    }
    return c; // returns null if camera is unavailable
}

/** Check if this device has a camera */
private boolean checkCameraHardware(Context context) {
    if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA)){
        // this device has a camera
        return true;
    } else {
        // no camera on this device
        return false;
    }
}


/** Create a File for saving an image or video */
private static File getOutputMediaFile(int type){
    // To be safe, you should check that the SDCard is mounted
    // using Environment.getExternalStorageState() before doing this.

    File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
              Environment.DIRECTORY_PICTURES), "MyCameraApp");
    // This location works best if you want the created images to be shared
    // between applications and persist after your app has been uninstalled.

    // Create the storage directory if it does not exist
    if (! mediaStorageDir.exists()){
        if (! mediaStorageDir.mkdirs()){
            Log.d("MyCameraApp", "failed to create directory");
            return null;
        }
    }

    // Create a media file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss", Locale.getDefault()).format(new Date());
    File mediaFile;
    if (type == MEDIA_TYPE_IMAGE){
        mediaFile = new File(mediaStorageDir.getPath() + File.separator +
        "IMG_"+ timeStamp + ".jpg");
    } else {
        return null;
    }

    return mediaFile;
}

}
这段代码显示了我拍摄的照片的像素化图像(因为我只是出于测试目的对其进行低质量解码)。
我希望这对您有所帮助。

您是否尝试过不创建位图和压缩,而只是写入字节数据?fos=新文件输出流(mypath);写入(数据);fos.close();我想这个链接可能会帮到你,因为它做了你想要的一切:)我试图写入字节数据,但遇到了同样的问题-第二个活动只是一个空白的白色屏幕。很抱歉,你已经给我发送了链接?你是说在我的收件箱里?我没有看到链接。编辑:哦,我看到了。谢谢你,我本来想做教程的,但是在连接点时遇到了麻烦……谢谢你的帮助,我现在就要试试你的代码了。