I want to share my canvas as image in windows phone 8.1.For this I first convert my canvas to an image then share it. I tried my windows 8.1 code .No errors occur but image
You are passing bitmap to an app which doesn't support bitmaps then the bitmap will be ignored. Sending a bitmap file instead is commonly needed. You can save your file out and then load that StorageFile or you can create an in memory StorageFile. For testing purposes I'd save the file to a StorageFile, make sure that the file can be shown correctly in the app, and then make sure it works correctly when sharing. This sample might be helpful. http://code.msdn.microsoft.com/windowsapps/File-access-sample-d723e597