screenshot Questions

3

Solved

Is it possible to disable screen capture from a fragment? I know the below works for an Activity class onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().setFl...
Prospero asked 14/9, 2015 at 20:28

1

I am trying to achieve a 30 fps screen recording (of a QML scene) while also rendering the same QML scene to my display. So far I have followed (http://blog.qt.io/blog/2017/02/21/making-movies-qml/...
Piddock asked 2/8, 2017 at 13:39

1

Solved

So there are these helpful floating previews on the few latest macOS versions. But I can't seem to find any way to increase the duration of a preview (the default is 5 seconds). Is it even possible...
Situs asked 20/10, 2022 at 13:25

26

Solved

How can I take a screenshot of a selected area of phone-screen not by any program but from code?
Gneiss asked 18/4, 2010 at 7:58

8

Solved

In android API 28 view.getDrawingCache() has been deprecated. Is there any newer solution to generate a Bitmap of a particular view in android.
Exeter asked 4/10, 2018 at 8:14

8

Solved

For full screenshots, I use this code: form1.Hide; sleep(500); bmp := TBitmap.Create; bmp.Height := Screen.Height; bmp.Width := Screen.Width; DCDesk := GetWindowDC(GetDesktopWindow); BitBlt(bmp.Ca...
Dispatcher asked 19/3, 2009 at 6:42

2

Not sure how they do it but hulu has found a way to detect if a screenshot is taken or if the screen-record is on, and sets the video background to black. I'm on for mac os. It is all front end tha...
Hager asked 10/6, 2021 at 7:19

1

If I do compare the screen shot with the real time application then it's getting failed. What would be best approach and how to compare the screen shot in Cypress Output: getting error log on cypre...
Patentee asked 8/8, 2022 at 9:41

1

For enhanced security of My Android App, I need to detect the screen mirrioring. I have implemented this below source code: var display : DisplayManager = getSystemService(DISPLAY_SERVICE) as Displ...

3

I am getting this annoying error as I am trying to upload screenshots of my app before submission. The error appears after I upload images for any screen size, and when I try to upload more image...
Hyperdulia asked 11/12, 2021 at 21:29

4

I have tested the cypress-image-snapshot plugin which uses cy.screenshot. It works, but the problem is that fonts sometimes doesn't load in time for the screenshot so we end up with a very unstable...
Barbiturate asked 27/1, 2020 at 12:10

3

Solved

I want the user to go on my app and take a screenshot of the app after pressing a button programmatically in Swift. I know that UIGraphicsGetImageFromCurrentImageContext() takes a screenshot but I ...
Jongjongleur asked 2/9, 2016 at 3:20

7

The idea is that, user should be able to load a video from their local machine and tell the program to take a screenshot from the video every 5sec or 30sec. Is there any library to help me with thi...
Unavoidable asked 4/9, 2019 at 15:5

2

Note: this question is intentionally very general (e.g. both Objective-C and Swift code examples are requested), as it is intended to document how to capture a window screenshot on macOS as accessi...
Signify asked 30/12, 2017 at 1:47

12

Solved

When posting an in-app purchase with Apple they ask for a screenshot to be included before going to review. What kind of screenshots do they want? My in-app purchase unlocks some of the lite vers...
Dejecta asked 26/1, 2011 at 9:9

4

Solved

What's the fastest way to take a screenshot on windows? PIL.ImageGrab is rather slow.. it takes between 4-5 seconds to take 30 screenshots of the same small window. Taking screenshots of the whole ...
Demonstration asked 27/8, 2010 at 16:3

2

Solved

I'm trying to speed up the screenshot function in pyautogui since I only need a small portion of the screen. The region variable is supposedly the way to this a.k.a. pyautogui.screenshot(region=(0,...
Suppuration asked 8/1, 2018 at 4:24

5

On macOs Catalina have problems with making screenshots over cron. When manually run do_screenshot.sh script then all fine. But when it run auto over cron - probs, only menu correct, instead window...
Flodden asked 8/12, 2019 at 20:11

3

Solved

Is there a way to find out the path used by android to save screenshots? Can I get the path from a code?
Trapezium asked 12/3, 2012 at 12:48

1

Solved

I have a simple code here: import mss with mss.mss() as sct: filename = sct.shot(output="result.png") result.png But I want to take a part of screen like this: Thanks for help!
Paralipomena asked 13/3, 2022 at 1:28

2

Solved

I'm using use-react-screenshot to take a screenshot of a specific dom element, but the image gets weird, it looks like it partially renders the dom element I'm using the sample code in create-reac...
Orsa asked 20/2, 2022 at 2:32

2

Solved

The important part is to take the screenshot exactly as the user sees the browser window. This rules out canvas-based questions and answers, which emulate the browser but cannot exactly replicat...
Colmar asked 2/4, 2019 at 11:55

7

Solved

Google's "Report a Bug" or "Feedback Tool" lets you select an area of your browser window to create a screenshot that is submitted with your feedback about a bug. Screenshot by...
Wigwag asked 6/2, 2011 at 6:58

16

Solved

I am wondering how my iPhone app can take a screen shot of a specific UIView as a UIImage. I tried this code but all I get is a blank image. UIGraphicsBeginImageContext(CGSizeMake(320,480)); CGCo...
Animalcule asked 6/2, 2010 at 22:16

4

Solved

I'm using this Swift code to take a screenshot of my app: UIGraphicsBeginImageContextWithOptions(UIScreen.mainScreen().bounds.size, false, 0); self.view.drawViewHierarchyInRect(view.bounds, after...
Handclasp asked 16/1, 2015 at 1:26

© 2022 - 2024 — McMap. All rights reserved.