I use the MediaCapture class to take a picture with the Windows Phone 8.1 Runtime. The code where I take the picture is as follows:
StorageFile photoFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("myFirstPhoto.jpg", CreationCollisionOption.ReplaceExisting);
await captureManager.CapturePhotoToStorageFileAsync(ImageEncodingProperties.CreateJpeg(), photoFile);
The code works very well, since I get a snapshot, but with strange stripes on the left and right:

I am trying to find a solution to this problem, but to no avail. Did I miss something?
EDIT. Photos from the embedded application without stripes, so this is not a hardware problem.
source
share