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
It has been a while since my last post (almost 2 years), even longer since my post on Tufte-style-ish plots... ( On Tuftefying gnuplot ). As I am now more on FlotJs ... I was looking around for the same "Tuftefying" style tutorial, but this time using FlotJs as an example... And right in the first googling, it came out: " Tufte Bar Chart Redesign in jQuery Flot "