Questions tagged [image-capture]

374 questions
1
vote
1 answer

Why camera image not saved in Android?

I have a button and when clicking on it, it will start camera and save image that I take, but something not working. This code from here : private void takeAPic() { //camera stuff Intent imageIntent = new…
rome 웃
  • 1,821
  • 3
  • 15
  • 33
1
vote
0 answers

Opening phone's camera capture from browser automatically saves image locally

I am opening the camera of a phone so the user can select and image and upload it to the server. Seems like that on android 4.4.2 and also 'android 4.1.2' when the user clicks on the image capture button - the image capture dialog is open. The user…
Sandman
  • 215
  • 1
  • 10
1
vote
1 answer

what method do you use to capture image with camera in your application?

I am using C# to develop, I want to use a camera to capture a image in my application. As far as I know, there are two choices: WebCam with [DllImport("avicap32.dll", EntryPoint="capCreateCaptureWindowA")] And use this function to capture…
MemoryLeak
  • 7,322
  • 23
  • 90
  • 133
1
vote
0 answers

Accessing each video frame from a webcam in Windows Form C# application

, Hi, everyone. I'm currently experiencing some problems with an image capture application I need to complete in C#. I have a Windows Form C# program that uses the DirectShow .NET library to obtain a constant flow of still images from a webcam at…
sidezr
  • 163
  • 1
  • 12
1
vote
2 answers

Ionic Upload Image to Server

I need to upload captured image and album image to the server in ionic app. Is anyone know how to do that? I am just fresh in developing ionic app
Tss
  • 88
  • 4
  • 13
1
vote
0 answers

Process for capturing image, storing it locally, showing it in table view, uploading to server and downloading on other devices?

I want to know about process for managing images for an iOS app dealing with large images. I have done all the steps separately and everything works properly if performed individually. The flow is as given below: Capture image on iPhone (Full sized…
Mehtab
  • 11
  • 3
1
vote
0 answers

UIGraphicsGetCurrentContext shows EXC_BAD_Access

I am creating a PDF file that consists of multiple screenshot, but I am facing a problem while extracting images from multiple views. I have a mutable Array which consist of views from a view controller named as "pdfViews" var pdfViews :…
Vikas Soni
  • 25
  • 3
1
vote
1 answer

What is the purpose of the LowLag* advanced features in the MediaCapture class?

I don't see a real difference between the LowLag* features (controlled by LowLagPhotoCapture, LowLagPhotoSequenceCapture and LowLagMediaRecording classes) and the more classic CapturePhoto* and StartRecord*/StopRecord* methods of the MediaCapture…
cedrou
  • 2,780
  • 1
  • 18
  • 23
1
vote
2 answers

Setting CaptureElement width to fill parent area at Windows Phone 8.1

Following this post: How can I bind source MediaCapture to CaptureElement using Caliburn.Micro? I tried to build my own photo capture Windows Phone 8.1 WinRT app. But even if I set horizontal and vertical content aligment of ContentControl to…
1
vote
0 answers

Calulate space for photo capture in android

Hi can anyone help me how to find the maximum number of photos that can be captured with the available/remaining storage space in android programatically.
1
vote
0 answers

capturing image cursor returns null in android

In application I am using cursorloader to get captures image file path, it always returns null: Uri file path = file:///storage/emulated/0/Pictures/BBI_Images/BBI_ORIG_20150313_112912.jpg public static int getRotation(Context context, Uri…
1
vote
4 answers

Most efficient way to move an image from a C program to Java and shown on the screen?

Background I am capturing video using the video4linux 2 spec. It is captured using a C program in real-time. I also have a Java frontend that can run both locally and remotely. The remote side was easy, I just compress the images to JPEG and ship…
Ryan Ayers
  • 143
  • 1
  • 2
  • 8
1
vote
3 answers

Write Text over a image in android

In an android app i have photo capture functionality using custom camera view.I am using SurfaceHolder.Callback and able to capture image.But now i want to display some text on that captured image. How to do this. below is my code -…
Ravi Bhandari
  • 4,682
  • 8
  • 40
  • 68
1
vote
1 answer

Camera preview won't close after picture is taken. Android custom camera

I was following the android docs on how to implement a custom camera. Everything works fine, but after I take a picture the preview won't close. In turn the picture is written to disk. I have tried to call when the shutter is pressed but nothing…
Edmond Tamas
  • 3,148
  • 9
  • 44
  • 89
1
vote
1 answer

capture image using android's camera application

Is it possible to write code which not only invokes the default camera application in android but also captures the image (automatically, not with user pressing the capture button). With the help of photobasics tutorial, I want to access built-in…
SaadH
  • 1,158
  • 2
  • 23
  • 38