- cross-posted to:
- technology@lemmy.world
- cross-posted to:
- technology@lemmy.world
I’m looking for an application (windows or maybe web) that can be used to combine images vertically and horizontally. I usually go with PhotoScape (screenshot) to for this but that’s not free nor updated anymore. Important features for me are to be able to combine horizontally or vertically, set the number or rows or columns and have the ability to resize the final image.
Thank you.
You must log in or register to comment.
Have you looked into Image Magick yet?
Yes, but it isn’t as practical as PhotoScape.
A simple command with FFmpeg:
ffmpeg -i a1.jpg -i a2.jpg -i a3.jpg -filter_complex hstack=inputs=3 horizontal.jpg ffmpeg -i a1.jpg -i a2.jpg -i a3.jpg -filter_complex vstack=inputs=3 vertical.jpg
References:
- http://ffmpeg.org/ffmpeg-all.html#hstack-1
- http://ffmpeg.org/ffmpeg-all.html#vstack-1
- https://superuser.com/a/625627
- https://stackoverflow.com/questions/11552565/vertically-or-horizontally-stack-mosaic-several-videos-using-ffmpeg/33764934#33764934
The scale filter can be used to scale the image.