Add script presets

This commit is contained in:
interfisch 2017-06-26 19:03:10 +02:00
commit 45354b7c85
7 changed files with 41 additions and 0 deletions

3
config.cfg Normal file
View File

@ -0,0 +1,3 @@
loaddir::
imagemagick::
scriptpreset::default

BIN
grauverlauf_filmtest.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

2
presets/default/post.cmd Normal file
View File

@ -0,0 +1,2 @@
)
pause

5
presets/default/post.sh Normal file
View File

@ -0,0 +1,5 @@
done
echo "All done. Your converted files can be found here: $OUTDIR , exiting."
read -p "Press Enter" TMP
exit 0

8
presets/default/pre.cmd Normal file
View File

@ -0,0 +1,8 @@
@echo off
setlocal enabledelayedexpansion
mkdir tmp
mkdir out
for %%f in (*.tif) do (
echo resize: %%f
convert %%f -resize 50%% -filter Gaussian ./tmp/_%%f
echo invert

23
presets/default/pre.sh Normal file
View File

@ -0,0 +1,23 @@
#!/bin/bash
# create tempdir
TMPDIR=$(mktemp -d)
# some lines of custom config for fisch:
###############
#CURDIR=$(pwd)
#TMPDIR=$(mktemp -d -p $CURDIR/.tmp)
#mkdir $TMPDIR
###############
# set some vars
OUTDIR="$TMPDIR/out"
# make some dirs
mkdir $OUTDIR > /dev/null
for F in $(ls -A1 | grep ".tif$"); do
echo "resizing $F ..."
convert $F -resize 50% -filter Gaussian $TMPDIR/_$F
echo "inverting $F ..."

BIN
scaninverter.jar Normal file

Binary file not shown.