Add script presets
This commit is contained in:
commit
45354b7c85
7 changed files with 41 additions and 0 deletions
3
config.cfg
Normal file
3
config.cfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
loaddir::
|
||||
imagemagick::
|
||||
scriptpreset::default
|
BIN
grauverlauf_filmtest.png
Normal file
BIN
grauverlauf_filmtest.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
2
presets/default/post.cmd
Normal file
2
presets/default/post.cmd
Normal file
|
@ -0,0 +1,2 @@
|
|||
)
|
||||
pause
|
5
presets/default/post.sh
Normal file
5
presets/default/post.sh
Normal 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
8
presets/default/pre.cmd
Normal 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
23
presets/default/pre.sh
Normal 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
BIN
scaninverter.jar
Normal file
Binary file not shown.
Loading…
Reference in a new issue