Questions tagged [cameracapturetask]

30 questions
0
votes
1 answer

Get Photo file Uri using PhotoChooserTask wp8

For my current project, i have an IEnumerable property ImageCollection as follow, public static IEnumerable ImageCollection { get; set; } Which holds a collection of all in-app photos available for user to choose. The feature includes user…
0
votes
1 answer

How to detect photoresult orientation?

in windows phone how can I determine the orientation of the cameracapturetask or Photochoosertask? private void openCameraTask() { CameraCaptureTask cam = new CameraCaptureTask(); cam.Completed += task_Completed; …
Bohrend
  • 1,467
  • 3
  • 17
  • 26
0
votes
1 answer

How to correctly resize photo in CameraCaptureTask?

Im using the following code to take a photo in my app, but when I accept the photo, the image gets stretched, but when I navigate away from that page, and towards it again the image resolution is correct however a part of the image is black. my…
Bohrend
  • 1,467
  • 3
  • 17
  • 26
0
votes
1 answer

Hide/Remove video button from App Bar using CameraCaptureTask

Is there any way to hide or remove the video button from the App Bar on a WP8 application using CameraCaptureTask? Our app only includes taking pictures, no videos. That's why we think it would be better remove the video button if it isn't really a…
CandyKillah
  • 27
  • 1
  • 6
0
votes
1 answer

Programmatically surface CameraRoll image created with CameraCaptureTask

As described in this thread's first answer, for WP8 the Camera Capture Task automatically saves a copy of any images it creates to the Camera Roll. If an image is saved in this way, is it possible to programmatically surface the image in an…
ssmolen
  • 81
  • 7
0
votes
1 answer

How to Determine App Capabilities in Windows Phone 8

According to http://msdn.microsoft.com/en-us/library/windowsphone/develop/gg180730(v=vs.105).aspx#BKMK_wp8apps The Windows Phone SDK 8.0 does not contain tools to detect the capabilities required for apps that target Windows Phone 8. When you submit…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
0 answers

How to Detect Camera Aspect Ratio on Windows Phone

I would like to be able to determine the aspect ratio of a Windows Phone 8 hardware camera. From what I understand there are three device screen sizes now, so I'm not sure if this affects the device camera aspect ratios or if they are standard…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
1 answer

How to Change Size of Image

I am getting an image from the CameraCaptureTask, and I would like to be able to make the image much smaller before saving. The width and height are automatically set to the highest resolution, which is much more than what I need. I have been trying…
Matthew
  • 3,976
  • 15
  • 66
  • 130
0
votes
1 answer

Understanding camera capture rate using opencv

This is probably an open-ended question. I have written an opencv application that captures feed from two external cameras connected to the computer. The capture from both the cameras runs parallely on 2 different threads. This recorder module…
0
votes
2 answers

Camera Capture Task in windows phone 8

I am working on windows phone application in which i need to store a captured image from the camera in isolated storage without saving it in the camera roll. I am able to store the captured image in the isolated storage but a copy of the captured…
master.fake
  • 487
  • 1
  • 6
  • 22
0
votes
0 answers

Windows phone camera hangs

I use CameraCaptureTask to invoke camera in my app. It works well for me most of times but ocassionally it hangs and CameraCaptureTask's show method does not invoke camera. When I checked the log it throws System.InvalidOperationException. Here is…
red devil
  • 113
  • 8
0
votes
1 answer

Windows Phone 7.1 -Saving path of photo taken by cameraCaputreTask

I'm building an app that should- among other things, let the user capture a picture and then save the picture and other info (like location of where this picture was taken -using GPS of the phone and etc...) on a DataBase. Im using a string to save…
nati
  • 91
  • 2
  • 8
0
votes
1 answer

MediaLibrary.SavePicture saves the picture stream in reduced resolution

I build an app that allows the user to capture an image and then save it to both the isolated storage and the phone's Media Library. When I download these two pictures to my PC, I see that the one saved in isolated storage has a resolution of…
Icarus
  • 139
  • 2
  • 13
0
votes
1 answer

MediaLibrary.SavePicture fails when fed with a used stream

I need to save the photo that was captured with the CameraCaptureTask, in the Media Library of the phone, and at the same time I want to show this photo in an Image control. The thing is that I first try to rotate the image by accessing its Exif…
Icarus
  • 139
  • 2
  • 13
-1
votes
2 answers

I use the following code to capture image from camera. But I cant record the video by this

CameraCaptureUI capture = new CameraCaptureUI(); capture.PhotoSettings.Format = CameraCaptureUIPhotoFormat.Jpeg; capture.PhotoSettings.CroppedAspectRatio = new Size(1,…
vikas sharawat
  • 217
  • 1
  • 13
1
2