Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start the camera directly from a web page in android

Im trying to make a webapp for Android in which i can upload pictures. I have a web page with a fileupload field. When I push the button I can choose which app i would like to use to choose the file to upload. Is it posible (and how) to have the camera app in this list? Or do I maybe need a special app for this?

Thanks in advance!

like image 793
Bartje Avatar asked Mar 14 '11 09:03

Bartje


1 Answers

Here is the code to get access to the new camera api's in android 3+ and iOS 6.

<input type="file" accept="image/*" capture="camera">

This will allow you to take a new picture or select one from the device library and then upload it to a web app.

like image 189
osuthorpe Avatar answered Nov 20 '22 00:11

osuthorpe