D
D
dev4002016-06-13 20:31:58
Windows
dev400, 2016-06-13 20:31:58

Is there an alternative to taking a screenshot from a poppy for Windows?

on a poppy, cmd + f4 seems to save a screen of the selected area on the desktop. And in Windows only fucking scissors

Answer the question

In order to leave comments, you need to log in

5 answer(s)
E
Eugene, 2016-06-13
@dev400

And why didn't you like the scissors?
if it’s hard to do the same functionality, you can get by with a powershell script (just today someone needed a screenshot)

[Reflection.Assembly]::LoadWithPartialName("System.Drawing")
function screenshot([Drawing.Rectangle]$bounds, $path) {
   $bmp = New-Object Drawing.Bitmap $bounds.width, $bounds.height
   $graphics = [Drawing.Graphics]::FromImage($bmp)

   $graphics.CopyFromScreen($bounds.Location, [Drawing.Point]::Empty, $bounds.size)

   $bmp.Save($path)

   $graphics.Dispose()
   $bmp.Dispose()
}

$bounds = [Drawing.Rectangle]::FromLTRB(0, 0, 1920, 1080)
$a=((Get-Date).ToLongTimeString()) -replace ':','-'
screenshot $bounds "D:\screen-$a.png"

In the code, you need to change the screen sizes to yours (I have 1920 * 1080 ), as well as the path to save the screenshot (for example " c:\users\user\desktop\screen-$a.png " ) and save the script under some name , for example c:\users\user\scripts\screen.ps1
then we make a shortcut to powershell.exe on the desktop and after creating it we add the following things:
after powershell.exe in the "object" field -ExecutionPolicy RemoteSigned -file c:\users\ user\scripts\screen.ps1
In the "shortcut" field - the key combination you need. Remember the truth about the standard windows keyboard shortcuts, alt + f4 should not be assigned.
to make it clear: this is a printscreen that automatically throws a file on the desktop: D

A
andwin, 2016-06-13
@romanbel

prtsc button on the keyboard. near delete

L
landergate, 2016-06-13
@landergate

Greenshot : getgreenshot.org
Open source. Autosave any areas of the screen anywhere - to the clipboard, to a file, to the mail, you can do it all at once. A lot of possibilities.

A
Alexander Semchenko, 2016-06-13
@0xcffaedfe

Actually, cmd + shift +3 is the whole screen, cmd + shift + 4 is the area, and + space is the window.
In Windows by default prtsc

Z
zooks, 2016-06-13
@zooks

Monosnap, либо Paint и Alt+PrntScr.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question