Reading an old friend's blog, I've seeing some tools he likes and there a particular one very suitable for my own needs. The blueprint CSS framework it uses the git hub. There is also some tips on using it with PHP (my favorite scripting language).
I had to remove transparency from a PNG image file from the command line... and stack overflow came into my help[1]... But I needed it for lots of files... then, adding a "while read line" did the job: ls -1 *.png | cut -d . -f 1 | while read line; do convert -flatten $line.png flatten/$line.png ; done; [1] Replace transparency in PNG images with white background https://stackoverflow.com/questions/2322750/replace-transparency-in-png-images-with-white-background
Comments
Post a Comment