Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
|
#!/bin/bash
|
|
|
|
|
|
rm -f *.png
|
|
|
|
|
|
# monochrome
|
|
|
convert ../../topisto_vert.png -monochrome topisto_tmp1.png
|
|
|
composite -compose copy_opacity ../topisto_mask.png topisto_tmp1.png topisto_tmp2.png
|
|
|
rm -f topisto_tmp?.png
|
|
|
|
|
|
# grayscale
|
|
|
convert ../../topisto_vert.png -type Grayscale topisto_tmp1.png
|
|
|
composite -compose copy_opacity ../topisto_mask.png topisto_tmp1.png topisto_tmp2.png
|
|
|
convert topisto_tmp2.png -negate topisto_grayscale.png
|
|
|
rm -f topisto_tmp?.png
|
|
|
|
|
|
exit 0
|