UTC date to LocalTIME

This commit is contained in:
2020-07-07 13:13:17 +02:00
parent e709b7a33f
commit f7503916ce
35 changed files with 46 additions and 40 deletions

View File

@@ -0,0 +1,16 @@
#!/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