| T O P I C R E V I E W |
| JeffWouters |
Posted - 05/01/2012 : 3:37:17 PM For all those people that used to spend hours and hours on converting a picture to ASCI code... here's te easy way with PowerShell: http://ps1.soapyfrog.com/2007/01/07/convert-images-to-text-ascii-art/
Come on... this is just cool  |
| 2 L A T E S T R E P L I E S (Newest First) |
| JeffWouters |
Posted - 05/02/2012 : 11:39:14 AM Darn it, didn't test the script... just came across the post and loved the whole idea :-D |
| Xenophane |
Posted - 05/02/2012 : 10:04:32 AM The script does not seem to work out of the box... It cannot find the system.drawing.dll..
Workaround could be to add, something like this.
$drawfile= Get-ChildItem -Path C:\windows\assembly -Filter *drawing.dll -Recurse $dllpath=(Get-Command $($drawfile.Fullname)).definition
(and replace the existing line that starts with $dllpath
EDIT Spelling |