我正在尝试使用Android设备的相机拍摄的图像大约为500万像素。不幸的是它只工作一次。之后我得到一个“内存不足”的例外。即使我发布了以前使用的图像,它看起来仍然占据内部图像堆/存储,并以某种方式阻止进一步的旋转操作。是否有任何关于如何处理此问题的好方法(例如,免费图像内存,旋转图像而不需要内存的两倍大小)?
答案 0 :(得分:1)
让相机为您提供已旋转的图像:
public void setCameraDisplayOrientation(int cameraId, android.hardware.Camera camera) {
android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(cameraId, info);
int rotation = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay().getRotation();
int degrees = 0;
switch (rotation) {
case Surface.ROTATION_0:
degrees = 0;
break;
case Surface.ROTATION_90:
degrees = 90;
break;
case Surface.ROTATION_180:
degrees = 180;
break;
case Surface.ROTATION_270:
degrees = 270;
break;
}
int result;
if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
result = (info.orientation + degrees) % 360;
result = (360 - result) % 360; // compensate the mirror
} else { // back-facing
result = (info.orientation - degrees + 360) % 360;
}
// set the right preview orientation
camera.setDisplayOrientation(result);
// make the camera output a rotated image
Camera.Parameters cameraParameters = camera.getParameters();
cameraParameters.setRotation(result);
camera.setParameters(cameraParameters);
}
答案 1 :(得分:0)
你是如何制作动画的? 确保使用位图回收。 看看这篇文章,它应该会有所帮助:
http://mobi-solutions.blogspot.com/2010/08/how-to-if-you-want-to-create-and.html