Suleyman
Suleyman

Reputation: 61

Can we upload photos from phone`s camera with HTML5

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

Answers (3)

Fa11enAngel
Fa11enAngel

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

Stephen Gennard
Stephen Gennard

Reputation: 1910

Have tried using the phonegap API's?

http://docs.phonegap.com/phonegap_camera_camera.md.html

Upvotes: 1

Pinchy
Pinchy

Reputation: 1536

Yes you can! Pls look at the link.

W3 Media capture

Cheers

Upvotes: 10

Related Questions