当我使用我的 android 相机处于肖像模式时,看到的图像是横向的所以我写道:
Method rotateMethod;
rotateMethod = android.hardware.Camera.class.getMethod("setDisplayOrientation", int.class);
rotateMethod.invoke(camera, 90);
有用。然而,当我保存图像时,他的横向图像(宽度大于高度)我可以做些什么来收集我的相机看到的图像(字节 [])?