我的任务是在ImageView中调整图像并保持纵横比。所以我需要裁剪图像以保持ImageView的宽高比。
我的相机尺寸为320x240。 我的屏幕尺寸为480x320(横向模式) 应用程序仅适用于横向模式,但不适用于全屏模式。
ImageView填充父级。布局XML是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/image"
android:layout_height="fill_parent"
android:layout_width="fill_parent" android:keepScreenOn="true" android:scaleType="fitCenter">
</ImageView>
</LinearLayout>
使用image.getWidth()和image.getHeight(),我得到480x270大小。
我的代码:
@Override
public void onPreviewFrame(byte[] data, Camera camera) {
MySize msize = main.imageSize();
//msize.height += 30; <----this fix my problem, but I dont undersand why?
Size size = camera.getParameters().getPreviewSize();
double kw = (double)size.width / (double)msize.width;
double kh = (double)size.height / (double)msize.height;
double k = Math.min(kw, kh);
Log.d("INFO", "msize before" + msize);
msize.width = (int)Math.ceil(msize.width * k);
msize.height = (int)Math.ceil(msize.height * k);
int left = (size.width - msize.width) / 2;
int top = (size.height - msize.height) / 2;
Log.d("INFO", "msize " + msize);
Log.d("INFO", "size " + size.width + "x" + size.height);
YuvImage yuvimage = new YuvImage(data, ImageFormat.NV21, size.width, size.height, null);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
yuvimage.compressToJpeg(new Rect(left, top, msize.width, msize.height), 80, baos);
byte[] jdata = baos.toByteArray();
Bitmap image = BitmapFactory.decodeByteArray(jdata, 0, jdata.length);
main.updateImage(image);
}
其中msize是ImageView大小,大小是相机图片大小。在此之后,相机图像将被折叠为:320x180,结果为:
https://www.dropbox.com/s/9e2xwdc6m88ty34/SC20120705-121813.png
如果我向ImageView高度添加30,我得到了正确的结果。
我的Android是2.3.3。