4 lines
No EOL
144 B
Bash
Executable file
4 lines
No EOL
144 B
Bash
Executable file
#!/bin/bash
|
|
# uses imagemagick to resize image to canvas size if bigger
|
|
# usage ./imagefit.sh input.png output.png
|
|
convert -resize ">500x500" $@ |