I'm looking for a software for mac that I can from one picture generate several versions with predefined sizes:
- max with 300px
- max width 600px
- max width 1200px
Do you know a sw that can do this ?
Thanks
I'm looking for a software for mac that I can from one picture generate several versions with predefined sizes:
Do you know a sw that can do this ?
Thanks
I think you can use OSX's built-in sips
.
Start with a 2048x1536 image, copy it and resize copy to 300px wide
cp input.png 300.png
sips --resampleWidth 300 300.png # ==> 300x225 image
copy and resize the copy to 600ox
cp input.png 600.png
sips --resampleWidth 600 600.png # ==> 600x450 image
copy and resize to 1200px
cp input.png 1200.png
sips --resampleWidth 1200 1200.png # ==> 1200x900 image