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
[ | |
{ | |
"Name": "login", | |
"Usages": [ | |
"login client_login_name={username} client_login_password={password} ", | |
"login {username} {password}" | |
], | |
"Examples": [ | |
{ | |
"CommandLine": "login client_login_name=xyz client_login_password=xyz", |
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
class BitmapExtensions | |
{ | |
public static unsafe Bitmap StackBlur(this Bitmap sourceImage, int radius) | |
{ | |
int width = sourceImage.Width; | |
int height = sourceImage.Height; | |
int size = radius << 1; | |
var destinationImage = new Bitmap(width, height); | |
var lockRect = new Rectangle(0, 0, width, height); |
NewerOlder