Ramasamy Kanna
Ramasamy Kanna

Reputation: 792

Image capture in mobile web application?

We are developing mobile web application(Android,Iphone) using MVC 3,HTML 5,Javascript,Jquery,Jquery mobile.I want to use the camera to capture images.In HTML 5 getUserMedia() is using for the image capture.But it is not supporting in many other browsers.So we cant use this option.Any other option is there to capture the images in mobile web application?

Upvotes: 0

Views: 3292

Answers (1)

Avi Fatal
Avi Fatal

Reputation: 1558

What about this:

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

Upvotes: 1

Related Questions