BinShredDemo/Import-HelloWorldBitmap.ps1
$r = forensicbinshred .\hello_world.bmp .\bitmap.bst $rows = $r.dibHeader.bitmapHeight $r.pixelData.rows[($rows - 1)..0] | % { -join ($_.Pixels | % { if( $_.Pixel[0] ) { ' ' } else { '*' } }) } |