1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$Path = "imagen.bmp" $Bitmap=New-Object System.Drawing.Bitmap([System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Width, [System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Height) $Graphics=[System.Drawing.Graphics]::FromImage($Bitmap) $Graphics.CopyFromScreen((New-Object System.Drawing.Point(0,0)), (New-Object System.Drawing.Point(0,0)), $Bitmap.Size) $Graphics.Dispose() $Bitmap.Save($Path,'Bmp') $Bitmap.Dispose() $BitmapT = [System.Drawing.Image]::FromFile($Path) $Thumbnail = $BitmapT.GetThumbnailImage(200, 200, $null, [intptr]::Zero) $Thumbnail.Save("thumbnail" + $Path) $BitmapT.Dispose() $Thumbnail.Dispose() |