0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00
penpot/experiments/scripts/process.sh

16 lines
411 B
Bash
Raw Normal View History

2020-06-18 13:08:22 -05:00
#!/usr/bin/env sh
set -ex
SCALE_FACTOR=0.18
OUTPUT=output
for image in $1/*
do
./quantize.sh $image
INPUT_BASE=`basename $image .bmp`
#pamscale ${SCALE_FACTOR} -nomix tmp/${INPUT_BASE}-quant.ppm > tmp/${INPUT_BASE}-quant-scale_${SCALE_FACTOR}.ppm
./trace.sh tmp/${INPUT_BASE}-quant-scale_${SCALE_FACTOR}.ppm
gzip trace-output.svg
mv trace-output.svg.gz ${OUTPUT}/trace-${INPUT_BASE}-${SCALE_FACTOR}.svgz
done