demo script - hash first frame
All checks were successful
/ tests (push) Successful in 45s
/ clippy (push) Successful in 13s
/ check (aarch64-unknown-linux-musl) (push) Successful in 7s
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 7s
/ check (x86_64-unknown-linux-musl) (push) Successful in 6s

This commit is contained in:
asonix 2024-03-06 13:28:59 -06:00
parent e5efa1e4f8
commit 45f5238f45

View file

@ -7,12 +7,12 @@ if ! [ -f "$1" ]; then
exit 1; exit 1;
fi fi
json=$(magick convert "$1" JSON:-) json=$(magick convert "$1[0]" JSON:-)
width=$(echo $json | jq '.[0].image.geometry.width') width=$(echo $json | jq '.[0].image.geometry.width')
height=$(echo $json | jq '.[0].image.geometry.height') height=$(echo $json | jq '.[0].image.geometry.height')
magick convert "$1" RGBA:- | \ magick convert "$1[0]" RGBA:- | \
cargo r --example stdin --release -- \ cargo r --example stdin --release -- \
--width $width \ --width $width \
--height $height --height $height