This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PowerShell gif encoding + wrapper around https://www.developerfusion.com/code/4630/capture-a-screen-shot/ | |
| Add-Type -TypeDefinition @' | |
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Drawing; | |
| using System.Drawing.Imaging; | |
| namespace GDI | |
| { | |
| /// <summary> |
OlderNewer