将图像从摄像头上传到Parse服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将图像从摄像头上传到Parse服务器相关的知识,希望对你有一定的参考价值。
我的布局中有一个FloatingActionButton:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="capture"/>
我想在用户点击此按钮时将图像从相机上传到Parse.com服务器。
编辑:
我找到了答案:
答案
对于此解决方法,您需要一台在后台运行的摄像头。在相机上你的所有视图都会调整。当您单击FAB时,您从相机调用捕获,然后您将获得预览。
有很多自定义相机和捕捉图像的例子。
相机示例
- http://www.c-sharpcorner.com/UploadFile/9e8439/how-to-make-a-custom-camera-ion-android/
- http://capycoding.blogspot.in/2012/06/custom-camera-application.html
- http://www.coderzheaven.com/2011/12/28/how-to-create-a-custom-layout-for-your-camera-in-android/
现在将其上传到服务器上。
注意:
- 这会泄漏你的记忆
- 你完成后需要关闭相机。否则你的内置摄像头会告诉用户没有找到相机。
以上是关于将图像从摄像头上传到Parse服务器的主要内容,如果未能解决你的问题,请参考以下文章
将网络摄像头/摄像头视频流上传到服务器的 HTML5 解决方案