screenshot Questions
3
I'm writing a Python program that is basically the Snipping Tool. I'd like to be able to run my program, select the area for my screenshot using my mouse to click and drag, and then have the progra...
Coralline asked 18/4, 2018 at 14:10
12
Solved
I'm trying to add a screenshot to my ExtentReport HTML file, but for some reason, the image is not there even though it DOES exist and the console shows that it's looking at the correct place (href...
Laval asked 29/11, 2017 at 14:50
4
Solved
How do you take a screenshot of the game view without external sources like Snipping Tool or Lightshot, like to take a screenshot with the resolution i configured in my Game View window.
Like i wan...
Hylotheism asked 11/2, 2022 at 15:0
12
Is there a way with Python (maybe with OpenCV or PIL) to continuously grab frames of all or a portion of the screen, at least at 15 fps or more? I've seen it done in other languages, so in theory i...
Narcoma asked 30/1, 2016 at 4:3
3
Solved
If I have this code:
const puppeteer = require('puppeteer');
var test = async () => {
const browser = await puppeteer.launch({args: ["--no-sandbox", "--disable-setuid-sandbox"]});
const page...
Accentual asked 29/9, 2018 at 22:36
8
I am creating a Beta Testers reporting module so they can send in thier comments on my software, but I would like to have the option to include a screenshot with the report. How do I take a screens...
Trebuchet asked 17/5, 2010 at 6:4
6
I'm trying to take a screenshot of an iframe in a webpage.
In my particular case, the iframe contains the Street View of one of my clients' store.
As far as I've searched and read, I didn't find an...
Reeve asked 11/6, 2019 at 12:24
22
I've found this code:
func screenShotMethod() {
//Create the UIImage
UIGraphicsBeginImageContext(view.frame.size)
view.layer.renderInContext(UIGraphicsGetCurrentContext())
let image = UIGraphi...
Obla asked 22/8, 2014 at 14:3
7
Solved
I want to capture the screen in my code to get an image - like using the 'print screen' button on the keyboard .
Does anyone have an idea how to do this? I have no starting point.
Deed asked 12/12, 2008 at 14:57
3
Solved
I have installed a premium theme and changed the screenshot.png and uploaded it via ftp, upon looking at the admin panel it still display the old screenshot.png and the link it was linking was
htt...
Selah asked 2/8, 2014 at 5:15
5
I am doing the screen shots of IE using PrintWindow. The problem is that some times I get images with black areas. It may be a whole html content what is black, some times only certain areas are bl...
Earpiercing asked 14/8, 2009 at 19:56
3
Solved
I want my Xamarin Forms application to disable screenshots. Is there a way to do so?
Note: I found solutions in pure Android and iOS versions, but I need Xamarin solution. If there is a way to emb...
Lawtun asked 22/6, 2016 at 6:33
8
I need to prevent screen capture by users of my app, for security reasons. The contents I display are confidential and should not be copied onto the device. I saw one answer on Stack Overflow, but ...
Bankhead asked 8/9, 2013 at 3:13
2
I am trying to mimic what WhatsApp is doing when taking a screenshot of View Once photos, which is to add an overlay to the content that is sensitive (see image below)
From what I see in the docume...
Tomika asked 2/6, 2023 at 11:41
8
How to take a screenshot of an OpenGL window in C++ and save it to file.
I found the glReadPixels() function,
but I don't know what to do next. Where I can set path to a file, for example?
If not...
Wexford asked 30/4, 2011 at 21:53
9
Solved
What dimensions should be used for IAP screenshots for Mac apps on iTunesconnect?
I have tried uploading PNG screenshots with:
2560 x 1600 px
640 x 920 px
to no avail... but the upload does not...
Chitchat asked 10/2, 2017 at 19:3
4
Solved
I am using RepaintBoundary to take the screenshot of the current widget which is a listView. But it only captures the content which is visible on the screen at the time.
RepaintBoundary(
key: src...
Ataxia asked 6/12, 2018 at 7:40
3
Solved
Hi I would like to know if it is possible to simply take a screenshot with SDL2.
I tried SDL_GetWindowSurface but I get an error saying:
No hardware accelerated renderers available.
I took the...
Crissie asked 11/3, 2014 at 3:38
13
Solved
How to take a screenshot of the entire web page (full-page screenshot), not only partial (top-to-bottom) using Selenium WebDriver?
My code: (Java bindings)
System.setProperty("webdriver.chrome.dr...
Noisome asked 20/5, 2017 at 12:12
3
Solved
I am using ImageMagick to copy a portion of my screen into a temporary file (something.png). I would now like to paste the contents of this file into the clipboard directly from command line.
So f...
Distefano asked 11/6, 2012 at 9:46
25
Solved
Currently I'm trying to capture a screenshot using the Selenium WebDriver. But I can only obtain the whole page screen shot. However, what I wanted is just to capture a part of the page or perhaps ...
Copyboy asked 12/12, 2012 at 3:32
0
Currently I am trying to create screenshot functionality of a Geospatial map
Below I have achieved to get the Geospatial map as a screenshot, where as I need to add few divs from outside the Geospa...
Somnambulate asked 13/11, 2023 at 2:26
2
I am trying to open specific web pages and then take a full page screenshot of the webpage. I know this can be done using the dev tools in Chrome but I have not been able to find a method to do thi...
Retsina asked 28/10, 2023 at 21:5
1
I am trying to capture a screenshot of a windows form application, but when I capture the screenshot I get the taskbar at the top and edges outsides of my application. I just want to capture a scre...
Lilias asked 31/12, 2017 at 10:19
15
When taking a screenshot using Selenium Webdriver on windows with python, the screenshot is saved directly to the path of the program, is there a way to save the .png file to a specific directory?
...
Vagal asked 17/1, 2012 at 18:55
1 Next >
© 2022 - 2024 — McMap. All rights reserved.