1

当我使用我的 android 相机处于肖像模式时,看到的图像是横向的所以我写道:

    Method rotateMethod;
    rotateMethod = android.hardware.Camera.class.getMethod("setDisplayOrientation", int.class);
    rotateMethod.invoke(camera, 90);

有用。然而,当我保存图像时,他的横向图像(宽度大于高度)我可以做些什么来收集我的相机看到的图像(字节 [])?

4

1 回答 1

-2

使用此代码:

Parameters p=camera.getParameters(); 
p.set("orientation", "portrait");    
camera.setParameters(p); 

并开始相机预览

于 2013-02-21T10:52:17.530 回答