Add files via upload
This commit is contained in:
parent
5ac14cbb7c
commit
d08dd38fc9
11
stamp numbers.ps1
Normal file
11
stamp numbers.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user