Questions tagged [image-capture]
374 questions
2
votes
1 answer
Capture Both image And Video Using same Intent In Android
I am trying to capture still Image and Video using same intent like default camera app. Don't want to Create custom camera.
Android allows me to either take picture or Capture video.
Is it possible and How.If not why?

Jogendra Gouda
- 405
- 4
- 17
2
votes
0 answers
Chrome for Android data storage grows when using the HTML Media Capture API
We have a mobile HTML5 application where one important aspect of it is that users can take photos that ultimately end up being sent to a web server. To capture the images in Chrome for Android, we use the HTML Media Capture API:

Robin Blondon
- 21
- 3
2
votes
0 answers
Android NO Image written on the specified MediaStore.EXTRA_OUTPUT URI
In my application ImageTakerActivity creates MediaStore.ACTION_IMAGE_CAPTURE intent to capture image.
I specified the following URI as MediaStore.EXTRA_OUTPUT. So its expected that ACTION_IMAGE_CAPTURE will write the taken photo to the…

Obaida.Opu
- 444
- 1
- 4
- 18
2
votes
1 answer
Headless HTML rendering to image on CentOS 5.4
I have a project requirement to render HTML and capture the rendered image as a file on a headless CentOS 5.4 server. My specific requirements are:
1) Input will be a URL to the page to render (or file:// URL to a local HTML file), output will be…

Jim Tough
- 14,843
- 23
- 75
- 96
2
votes
0 answers
Android save Bitmap with high quality or improve Bitmap quality
this is my code:
public void onActivityResult(int reqCode, int resCode, Intent data) {
if (reqCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE && resCode == RESULT_OK) {
if (data.getData() == null) {
Bitmap bm = (Bitmap)
…

Murad Garibzada
- 73
- 1
- 1
- 11
2
votes
0 answers
Issue with Capturing photo using AVFoundation without flash and with Flash
I'm trying to capture image using avfoundation framework without Flash and with Flash but i could not capture original image instead gives me black colour image while capturing it without Flash.
With the same code i can capture an image with…

Nirav Patadiya
- 97
- 10
2
votes
1 answer
Windows Phone 8.1 app MediaCapture under exposed
I am trying to capture pictures directly from the camera in my Windows Phone 8.1 Store App.
I have succeeded in initializing a MediaCapture for the device and it take photographs but they are always black or way way under exposed.
Can someone point…

Richard
- 21,728
- 13
- 62
- 101
2
votes
1 answer
Failure delivering result ResultInfo when launching camera on android
I'm trying to use external android camera to put an image inside an ImageView, but I get a "Failure delivering result ResultInfo" error. Here is my code:
Clicking the button to launch the camera app
public void takePhoto(View v) {
Intent…

Jacob
- 156
- 1
- 7
2
votes
1 answer
Photo capture in portrait mode but photo automatic convert in landscape I want to photo in portrait mode Android?
in my Android app I capture the photo in portrait mode but when photo is saved is convert in landscape mode but I want to save photo in portrait mode
CaptureActivity.java
public class CaptureActivity extends Activity
{
// Activity…

Mahesh
- 1,559
- 6
- 27
- 57
2
votes
2 answers
Can I set the color depth while capturing the webcam image using OpenCV?
I am capturing the image using OpenCV in C++
firstFrame = cvQueryFrame(capture);
it is easy to set the width and height properties by
cvSetCaptureProperty( capture, CV_CAP_PROP_FRAME_WIDTH, WIDTH );
cvSetCaptureProperty( capture,…

beebee
- 280
- 3
- 18
2
votes
0 answers
Executable Failing When Called From ProcessBuilder, But Not From Command-Line
I'm trying to run a simple image-capture script using PhantomJS from within my Java program. The end goal is to automate the process of taking screenshots of specific webpages.
My problem is that when I run the following code, the program exits with…

Christopher Sheaf
- 185
- 1
- 3
- 13
2
votes
2 answers
ios xcode GPUimage video recording and still image capture
The app I am working on allows the user to record video with the selected effect. It is based on the GPUIamge FilterShowcase example.
I have just added the option to capture a still image of the current video effect that is selected.
Capturing the…

learning-ios
- 61
- 1
- 9
2
votes
1 answer
DirectShow USB webcam changing video source
Hey all i am trying to find the setting to change my video source to "composite" on my webcam. Seems that if i unplug the USB and then plug it back in and fire up the code, its just got a blank screen. But once i change the video source (in another…

StealthRT
- 10,108
- 40
- 183
- 342
2
votes
0 answers
Capture stylus signature android
I am having a security app requirement where i capture the user signature using the stylus and i want to save that as an image and proceed further. Can anyone please let us know how to create a edittext which takes the strokes we give and saves as…

bharath
- 953
- 4
- 17
- 30
2
votes
1 answer
Setting the image capture view in AVCaptureStillImageOutput class
I am using AVCaptureConnection and AVCaptureStillImageOutput class to create a overlay screen and capturing the image.In the view,I have a custom tab bar with some custom controls like capture button,flash button etc.
The problem is that the camera…

dead_soldier
- 429
- 1
- 5
- 18