Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是关于android中的相机,我想知道我是否可以设置相机预览的方向,我怎么能在android 1.6+版本中设置它。谢谢你的回答。
android 1.6+
编辑:感谢您的回答,现在我想知道如何根据其方向消息保存图像,在我得到字节 [] 后,我想实现应用程序可以保存 jpg。图像适合它的长度和高度。现在我直接在文件中写入字节 [] 并且大小不正确。如果我使用垂直模式,那么图像应该更高,但它没有。有人可以帮我吗?谢谢你
您可以使用:
preview.set("orientation", "portrait"); preview.set("rotation",90);
和
preview.set("orientation", "landscape"); preview.set("rotation", 90);
请参阅此线程以获取更详细的答案:
如何正确设置 Android 相机方向?