screen-capture

open source, multi-platform, browser-based screen capture extension? [closed]

☆樱花仙子☆ 提交于 2019-12-23 18:36:36
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm considering a project that involves the browser user being able to screen capture the contents of any web page (preferably the whole page, not just the visible portion), do some simple annotation on the image (circles, arrows, underlines, text labels) and send the annotated image to the server. I see that

How to mail a screen captured image using corona SDK

霸气de小男生 提交于 2019-12-23 17:57:46
问题 I am new to corona SDK, but I've managed to capture my app scene using the following code: local function captureArea() local myCaptureImage = display.captureBounds(display.currentStage.contentBounds, true) myCaptureImage:removeSelf() myCaptureImage = nil end bg:addEventListener("tap",captureArea) This works perfectly. Now I need to send the captured image(with a specific name, say: screen_1.png ) to my friend via email. I've used Composing E-mail and SMS for refference, but I fail to

Screen Capture in andengine gives upside down mirror image

纵然是瞬间 提交于 2019-12-21 16:17:08
问题 In my situation i haven't use RenderSurfaceView. I want to take a screen capture of my scene. But when i save the screen shot it shows upside down mirror image. Cant understand what im doing wrong here. Here is my code attachChild(screenCapture); share_clicked = 1; final int viewWidth = (int)camera.getWidth(); final int viewHeight = (int)camera.getHeight(); Log.d("camera width", "View width :" + viewWidth); Log.d("camera height", "View height :" + viewHeight); File direct = new File(

Include mouse cursor in screen capture

99封情书 提交于 2019-12-21 05:44:15
问题 I use CreateDC / BitBlt / GetDIBits etc. to capture the screen, but the cursor is not captured. Is there some simple argument or something to have it included? 回答1: Further to the discussion that occurred in the comments, I had the chance to further investigate the question. As a result, I came up with the following code that will grab the current cursor's HBITMAP and draw it to the screen. Since the cursor is actually an HICON, it comes with a mask. Initially, I just did a simple BitBlt -

Path to screenshots in Android

空扰寡人 提交于 2019-12-21 03:27:32
问题 Is there a way to find out the path used by android to save screenshots? Can I get the path from a code? 回答1: Android's API has no fixed path for screenshots but File pix = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); File screenshots = new File(pix, "Screenshots"); might work. That's what ICS uses as path. 回答2: The "Screenshots" value is part of the private API. Here is link to the source code where the value is set. Since the class is loaded in our

I need to record a demo of our application. Can anyone recommend a good screen recorder? [closed]

浪子不回头ぞ 提交于 2019-12-20 15:29:51
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I need to record a demo of our application. Can anyone recommend a good screen recorder? I have tried CamStudio, but it's throwing errors. Any other good free software I should try? 回答1: try UVScreenCamera, i think it's normal 回答2: Camtasia studio does a great job. In the case the app is cross-platform (java,

In any languages, Can I capture a webpage and save it image file? (no install, no activeX)

╄→尐↘猪︶ㄣ 提交于 2019-12-19 12:53:11
问题 I heard it is possible to capture webpages by using PHP(maybe above 6.0) on windows server. I got some sample code and tested. but there are no code to perform rightly. If you know some right ways to capture webpage save it image file on web applications? Please teach me. 回答1: you could use the browsershots api http://browsershots.org/ with the xml-rpc interface you really could use almost any language to access it. http://api.browsershots.org/xmlrpc/ 回答2: Though you have asked for a PHP

Linux, how to capture screen, and simulate mouse movements

谁说我不能喝 提交于 2019-12-18 10:29:43
问题 I need to capture screen (as print screen) in the way so I can access pixel color data, to do some image recognition, after that I will need to generate mouse events on the screen such as left click, drag and drop (moving mouse while button is pressed, and then release it). Once its done, image will be deleted. Note: I need to capture whole screen everything that user can see, and I need to simulate clicks outside window of my program (if it makes any difference) Spec: Linux ubuntu Language:

Capture screen of Window by handle

泪湿孤枕 提交于 2019-12-18 05:13:10
问题 I'm trying to capture only a specific Window in the desktop but I'm getting a mixed image, part of window and part desktop area. What am I missing? Here's my code: RECT rect = new RECT(); if (!SetForegroundWindow(handle)) throw new Win32Exception(Marshal.GetLastWin32Error()); if (!GetWindowRect(handle, out rect)) throw new Win32Exception(Marshal.GetLastWin32Error()); Thread.Sleep(500); Rectangle windowSize = rect.ToRectangle(); Bitmap target = new Bitmap(windowSize.Width, windowSize.Height);

How to Record Android Screen Video programmatically in KitKat 4.4

假装没事ソ 提交于 2019-12-17 09:30:43
问题 I know this question has been asked so many times and there are so many questions, answers and discussions available. But I don't know what to do and what not to do. I already referred to the links below to get solution with no luck. https://stackoverflow.com/questions/23438767/how-to-record-video-on-kitkat-4-4 https://stackoverflow.com/questions/23185125/i-cannot-screen-record-with-my-kitkat-4-4-moto-x Android KitKat start screenrecord from App screen recorder with kitkat Screen Recording