You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
806 B
30 lines
806 B
#!/bin/sh
|
|
#
|
|
# Copyright 2004 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
|
#
|
|
# This file is part of Magick++, the C++ API for ImageMagick and
|
|
# ImageMagick. Please see the file "COPYING" included with Magick++
|
|
# for usage and copying restrictions.
|
|
#
|
|
subdir=Magick++/demo
|
|
. ./common.shi
|
|
echo "1..24"
|
|
|
|
SRCDIR=${top_srcdir}/${subdir}/
|
|
export SRCDIR
|
|
|
|
cd ${subdir} || exit 1
|
|
|
|
./analyze "$SRCDIR/model.miff" && echo "ok" || echo "not ok"
|
|
|
|
for demo in button demo flip gravity piddle shapes
|
|
do
|
|
./${demo} && echo "ok" || echo "not ok"
|
|
done
|
|
|
|
for filter in bessel blackman box catrom cubic gaussian hamming hanning hermite lanczos mitchell point quadratic sample scale sinc triangle
|
|
do
|
|
./zoom -filter $filter -geometry 600x600 ${SRCDIR}/model.miff zoom_${filter}_out.miff && echo "ok" || echo "not ok"
|
|
done
|
|
:
|