Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my web app (not native app) for mobiles, I want to take a photo and upload it, but I don't want to use Adobe Flash. Is there any way to do this?

share|improve this question
What hardware and OS? – Dennis Traub Dec 20 '11 at 19:53
"Webpage" means, it should be easily able to accessed from any kind of clients/devices. So, should i set restrictions? – 夏期劇場 Dec 20 '11 at 19:58
I assume, you want to access the hardware camera, right? – Dennis Traub Dec 20 '11 at 20:01
Hmm.. "Camera" of the Mobile Smart Phones / etc.. from the webpage. – 夏期劇場 Dec 20 '11 at 20:05

6 Answers

In iPhone iOS6 and from Android ICS onwards, HTML5 has the following tag which allows you to take pictures from your device:

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

Capture can take values like camera, camcorder and audio.

I think this tag will definitely not work in iOS5, not sure about it.

share|improve this answer
Here's great tutorial: html5rocks.com/en/tutorials/getusermedia/intro – Micah Mar 13 at 19:07
thanks @Micah for posting this link, its great! – marty Mar 20 at 18:41

I don't think you can - there is a W3C draft API to get audio or video, but there is no implementation yet on any of the major mobile OSs.

Second best The only option is to go with Dennis' suggestion to use PhoneGap. This will mean you need to create a native app and add it to the mobile app store/marketplace.

share|improve this answer
sorry to repost - i was looking to see if you got around the NPE exception with jersey client on android. stuck :( – randomstring Dec 20 '11 at 20:42

I don't know of any way to access a mobile phone's camera from the web browser without some additional mechanism (i.e. Flash or some type of container that allows access to the hardware API)

For the latter have a look at PhoneGap: http://docs.phonegap.com/phonegap_camera_camera.md.html

With this you should be able to access the camera at least on iOS and Android-based devices.

share|improve this answer
2  
That still requires that an app be installed on the mobile device, which is what I think the OP wants to avoid. – Michael Petrotta Dec 20 '11 at 20:04
@MichaelPetrotta do you know a better way? – Dennis Traub Dec 20 '11 at 20:09
1  
I don't believe what the OP is asking for is possible. – Michael Petrotta Dec 20 '11 at 20:09
@MichaelPetrotta that's what I think as well. And the best way I can think of would be PhoneGap, since it works on iOS (which Flash doesn't). Still it's native, true, but allows at least a bit of cross-platform access to cameras from a web page. – Dennis Traub Dec 20 '11 at 20:12

AppMobi HTML5 SDK promises access to native device functionality - including the camera - from an HTML5-based app (I haven't tried it myself). Also see the HTML5-based answers in this post.

share|improve this answer
1  
I don't believe Google has any ownership over AppMobi or their products. – u2sonderzug Nov 30 '12 at 1:58
Ah - my mistake, because it's on the Chrome web store - Google reference removed. Here are the real partners: appmobi.com/?page_id=468 – Dave Everitt Dec 2 '12 at 12:03

you could use a free app like picup and integrate it into your web app.

share|improve this answer

well, there's a new HTML5 features for accessing the native device camera - "getUserMedia API"

NOTE: HTML5 can handle photo capture from a web page on Android devices (at least on the latest versions, run by the Honeycomb OS; but it can’t handle it on iPhones but iOS 6 ).

share|improve this answer
And that feature is...? – LittleBobbyTables Dec 6 '12 at 16:47
oh sorry is call setUserMedia API – Liccy Dec 7 '12 at 1:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.