Give me any example for getting an image from gallery in windows phone 8 -
i new windows phone 8 development 1 can please me in getting image stored camera roll (sdcard). , should retrieve image using path of image have stored in sd card.so kindly provide me example.
thanks in advance..
you can use photochoosertask
for imagepath call
photochoosertask.completed += oncamerataskcompleted; private void oncamerataskcompleted(object sender, photoresult e) { if (e.taskresult == taskresult.ok) { stream imagepath = e.chosenphoto } }
Comments
Post a Comment