Questions tagged [screenshot]

For questions about screenshots — digital images that show the contents of a computer display,

4722 questions
2
votes
1 answer

Bloomberg DDE Screenshot Export Automation

I am currently trying to automate screenshot grabs from Bloomberg Terminal using DDE within VBA. Currently I have come up with a way to automatically pull screenshots by 'printing' through the Microsoft XPS Document Writer: Dim ch As Variant Dim…
user3813682
  • 21
  • 1
  • 2
2
votes
0 answers

How to take screenshot with small size in libgdx

In my Full HD Nexus 7 2013, when using this method provided by libgdx: link, the size of the result png screenshot file is 8.35Mb. But if I hold down Volume down + power to capture screen, I get a png with size of only about 200Kb, which is…
Hải Phong
  • 5,094
  • 6
  • 31
  • 49
2
votes
1 answer

How to take a screenshot of a JPanel with robot?

This is how I can make a screenshot of a whole JFrame Rectangle screenRect = cap.getBounds(); File docfile = new File("image"); BufferedImage capture = new Robot().createScreenCapture(screenRect); ImageIO.write(capture, "png", file); with cap being…
Saphire
  • 1,812
  • 1
  • 18
  • 34
2
votes
4 answers

Screenshot method generates black images

After failing to use the control.drawtobitmap in c#, my second option was to take screenshots of the desktop and crop out the desired sections. My hiccup shows up once i switch user accounts, although the program does not crash, once the user is…
Msegling
  • 365
  • 3
  • 12
2
votes
1 answer

cocos2d-x V3.1 save screenshot to album for android

I'm new for cocos2d-x and I'm using v3.1. I wrote an app using cocos2d before and now I want to add an android version by cocos2d-x. After checking online, I use this code for saving my screen image: void Game1::takePhoto(Ref *pSender){ Size size =…
2
votes
0 answers

Automate google earth screenshot

Currently I use google earth to do the following: 1) load a .kml file in google earth 2) zoom/pan in google earth to view particular portion of data from .kml file - this essentially comes down to specifying a latitude range and longitude range…
Stephen
  • 71
  • 5
2
votes
2 answers

OpenGL ReadPixels (Screenshot) Alpha

I'm using a Tile Rendering (using glReadPixels) setup to take screenshots of a scene. My output looks correct: But looking at the alpha channel the pixels are still transparent even if the transparent texture is rendered on top of an opaque…
Meep
  • 254
  • 1
  • 15
2
votes
0 answers

Button on website for taking screenshot

Is there a way to take a screenshot/snip from a website? The screenshot isn't of a website/URL specifically (so other things I've found such as html2canvas wouldn't work). Basically, what would be ideal is pressing a button and having the user be…
cmorganti
  • 31
  • 4
2
votes
2 answers

Automate copying captured pictures from ios/android device to DropBox

I want to copy the screenshot captured images from android/ios devices to dropbox. i have tried shotdrop app in android. By using shotdrop we can save only 100 images to dropbox and after 5 images per day. So is there any tool or program to copy…
Galet
  • 5,853
  • 21
  • 82
  • 148
2
votes
2 answers

Is it possible to intercept taking screenshot event when my app is in the foreground

Is it possible to intercept taking screenshot event (or create a listener for it) when my app is in the foreground? I want to execute some own code when a screenshot is taken by vol down+power key.
Luciano
  • 2,691
  • 4
  • 38
  • 64
2
votes
2 answers

iPhone screenshot

How can I create a iPhone screenshot? When I open Xcode I go to Window>Organizer but there is no Devices tab visible. I have a jail-braken phone with OS 3.1.2.
xpepermint
  • 35,055
  • 30
  • 109
  • 163
2
votes
3 answers

How to make GIF from Android device screen

I can capture Android device screen: adb shell screencap -p | perl -pe 's/\x0D\x0A/\x0A/g' > adb-screenshot-$(date +%Y%m%d-%H%M%S).png How can I squash all those images into single GIF?
ViliusK
  • 11,345
  • 4
  • 67
  • 71
2
votes
1 answer

iOS take "homebutton + powerbutton" screenshot from rotated view is upside down

when a user makes a screenshot with the press of homebutton and powerbutton than is the screenshot upside down. The device does never autorotate. I observe UIDeviceOrientationDidChangeNotification and if it is in landscape, I will show the rotated…
zeiteisen
  • 7,078
  • 5
  • 50
  • 68
2
votes
1 answer

Detecting screen capture in progress

How can I detect when a screen shot selection (cmd-shift-4) is in progress? I have a custom window that I’m trying to make behave like a menu (it comes out of a status item). Part of this behavior is dismissing it when the user clicks on something…
Uncommon
  • 3,323
  • 2
  • 18
  • 36
2
votes
1 answer

Screenshot won't taking 3D content

I'm using vuforia-sdk-ios-2-0-32. I referred below link for taking screenshot (including both camera and 3D content) . https://developer.vuforia.com/forum/ios/vuforia-sdk-how-take-screenshots ,…
user3496826
  • 101
  • 2
  • 14