Questions tagged [capture]

capture is the process of converting a set of pixels on a screen into a bitmap image stored in memory

1457 questions
0
votes
2 answers

how to capture the result of `git status` in a Rails action?

If you run this code in a controller action (notice the backticks) def index … `pwd >> tc.log` `git status >> tc.log` `ls >> tc.log` … end , only the 1st and 3rd command will pipe their output to the tc.log file. I'm trying to get the…
0
votes
1 answer

Android: How to capture button press event for contact create app of device

I want to invoke my application once user creates / updates contact from his device. i.e once user hit "Done" button. is it possible ? If possible please provide sample code or link. Please help and thanks in advance.
0
votes
1 answer

How do I capture desktop screenshot behind full screen form?

I have a full screen form to block all inputs. How to capture screenshot of all desktop behind this form? In other words, how to take a printscreen without appearing this form that is in front of the screen? I'm writing a remote access software. I…
user2786535
0
votes
4 answers

How to make a capture screen app on Android

I want to make an app which can capture device screen without root as: https://play.google.com/store/apps/details?id=com.icecoldapps.screenshotultimate But I can't find the solution. Anyone help me? Thank you very much.
Tommy
  • 1
  • 2
0
votes
2 answers

how to Video capture of the computer on the network?

We have a network in our office. And i want to get video capture of another computer's screen from my computer. Do you know any software for this. Thank you.
namco
  • 6,208
  • 20
  • 59
  • 83
0
votes
1 answer

Android screen capture with root (service or background thread )

There is an app capture screen when shark android phone . 1)when app on active , capture screen without root . 2)when app back to stack , like return HOME, need root permission to capture screen . i want to know the implement the function 2)…
fazhang
  • 485
  • 6
  • 13
0
votes
1 answer

modify captured array c++11 lambda function

I'm writing an Windows phone application with C++/CX. The function tries to copy input array to output array asynchronously: IAsyncAction CopyAsync(const Platform::Array^ input, Platform::WriteOnlyArray^ output) { byte…
quacker
  • 336
  • 4
  • 15
0
votes
1 answer

Capture bitstream into string

I'll need to capture my bitstream into a string and keep concatenating the string. However, I'm not really sure how it's to be done. Any ideas? #include #include #include using namespace std; int main () { int i; …
halluc1nati0n
  • 893
  • 2
  • 13
  • 18
0
votes
1 answer

Background Handle!

I want to make a jing like screen capture but customized for what i need and I'm stuck. i want to take the handle of open windows that are behind my 30 alpha form if that is possible. the handle is taken from cursor.position on global MouseMove so i…
andySF
  • 556
  • 7
  • 30
0
votes
1 answer

How To Capture All Intermediate URL in a Redirect and Export Them Into a CSV File

I have a list of URL using multiple redirection like this: url1=>url1redirect1=>url1redirect2=>url1redirect3= >url1final url2=>url2redirect1=>url2redirect2=>url2final ... The list is in this format: url1 url2 url3 I don't own all the website in the…
0
votes
1 answer

Android ZBar SDK Get Scanned Image

I am using ZBar SDK for Android. It is decoding and returning me QRCode. But it is not returning captured image. I want to show captured QR Image from Camera to my screen. Thanks in Advance..
0
votes
4 answers

What's the best method to capture URLs?

I'm trying to find the best method to gather URLs, I could create my own little crawler but it would take my servers decades to crawl all of the Internet and the bandwidth required would be huge. The other thought would be using Google's Search API…
Dallas Clark
  • 4,064
  • 3
  • 30
  • 36
0
votes
0 answers

Capturing a specific url site in android webview, captured image is duplicated

I want to capture this site in android webview Capture code is webview.setDrawingCacheEnabled(true); Bitmap webBitmap = Bitmap.createBitmap(webview.getDrawingCache()); webview.setDrawingCacheEnabled(false); A captured image is overlapped. I doubt…
0
votes
1 answer

MediaCapture how to use to record audio

I would like to capture the microphone and play it back immediately. I was looking for a solution how to use MediaCapture element under windows 8 to capture only audio data from the microphone but I only found how to capture a webcam. If somebody…
DalekSupreme
  • 1,493
  • 3
  • 19
  • 32
0
votes
2 answers

How can I prevent my PhoneGap webView to refresh content after a native picture capture on Android?

The only previous question I found concerning my problem is this one: Android app reverts back to index page after taking a picture But it doesn't really answer, and my Manifest has this on the main Activity tag :…
Doc Flandersao
  • 87
  • 2
  • 11