diff options
| author | Howard Butler <howard@hobu.co> | 2016-09-08 14:13:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-08 14:13:35 -0500 |
| commit | 34aef4f6fa0743d683ce370574d7436163fa9f98 (patch) | |
| tree | fa9eae04aa34b58eb8929d6bebca079d198cae3f /docs/plot/greyscale.sh | |
| parent | 3880c10dab0ec61d5826309edd87a249a689cd82 (diff) | |
| parent | af3a645ea55ebb3ec558f75531ee366bc3654087 (diff) | |
| download | PROJ-34aef4f6fa0743d683ce370574d7436163fa9f98.tar.gz PROJ-34aef4f6fa0743d683ce370574d7436163fa9f98.zip | |
Merge pull request #413 from OSGeo/doc-image-plotting
Implement Kristian's plot generation script
Diffstat (limited to 'docs/plot/greyscale.sh')
| -rwxr-xr-x | docs/plot/greyscale.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/plot/greyscale.sh b/docs/plot/greyscale.sh new file mode 100755 index 00000000..7a6e9b38 --- /dev/null +++ b/docs/plot/greyscale.sh @@ -0,0 +1,7 @@ + + +for f in $(ls *.png) +do + + convert $f -fx '(r+g+b)/3' -colorspace Gray $f +done; |
