简体   繁体   中英

Share image on social networking site in windows phone 8

我想在社交网络站点上共享编辑的图像,以便在Windows Phone 8中使用C Sharp共享哪个API可以将图像共享到网页上

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM