Add files via upload

This commit is contained in:
Adam R Grey 2021-07-15 03:11:24 -04:00 committed by GitHub
parent 5ac14cbb7c
commit d08dd38fc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
stamp numbers.ps1 Normal file
View File

@ -0,0 +1,11 @@
param(
[int]
$count = 5,
$file
)
for (($i = 1); $i -lt $count; $i++)
{
magick convert $file -gravity NorthWest -pointsize 96 -pointsize 96 -fill white -stroke black -strokewidth 3 -pointsize 96 -draw "text 20,20 '$i'" $file_$i.png
}
magick convert $file -gravity NorthWest -pointsize 96 -pointsize 96 -fill white -stroke black -strokewidth 3 -pointsize 96 -draw "text 20,20 '$count (final)'" $file_$count.png