Reputation: 61
Hi folks can we upload photos from phone`s camera just with pure HTML5? Can we use Spring Mobile to develop html5 applications?
Thank you heaps man!!!
Upvotes: 5
Views: 7715
Reputation: 4810
You can take photos on Android phones and upload them using built in Chrome Browser. I've tested it on Android 2.0 and above. On IOS 3.X, IOS 4.X, IOS 5.X this option is disabled inside the safari browser (thanks for comments on this). On IOS 6.X this is working as expected.
You don't need HTML5. Use a simple file upload form for that:
<input name="picture" type="file" size="50" maxlength="100000" accept="img/*">
Upvotes: 8
Reputation: 1910
Have tried using the phonegap API's?
http://docs.phonegap.com/phonegap_camera_camera.md.html
Upvotes: 1