I want to share edited image on social netwrking site so which API i use to share image to webpage using c sharp in windows phone 8
Asked
Active
Viewed 1,389 times
1 Answers
0
You should use the ShareMediaTask
:
ShareMediaTask smt = new ShareMediaTask();
smt.FilePath = "image.png";
smt.Show();
The limitation is that for security reasons, the ShareMediaTask
only supports photos from the Media Library (like the Camera Roll or the Saved Pictures folder). See the question here for more info: Usage of ShareMediaTask along with Isolated storage image

Community
- 1
- 1

Olivier Payen
- 15,198
- 7
- 41
- 70