summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qtcluster/images/convert_premultiplied_alpha.sh
blob: c459a2772c082d6115d251465a7bcb91c61e6345 (plain)
1
2
3
4
5
6
#!/bin/bash

while read -r line || [[ -n "$line" ]]; do
   echo "Text: $line";
   convert $line -write mpr:temp -background black -alpha Remove mpr:temp -compose Copy_Opacity -composite ../images-premultiplied-alpha/$line
done < "$1"