L
L
Lam Besis2021-07-14 11:32:22
macOS
Lam Besis, 2021-07-14 11:32:22

Is there an equivalent of FastStone Image Viewer for Mac OS?

To work, it is necessary to glue a lot of images vertically into one long strip.
On Windows, I used FastStone Image Viewer for this, selected a pack of pictures in the right order and they were glued into one canvas. Unfortunately, this program does not have a version for the poppy, but it is very necessary.
Please suggest a program with similar functionality.
Thank you!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey Sokolov, 2021-07-14
@lambesis

Since the question was asked on Habré, here is a solution for those who are not afraid to get dirty in machine oil.
Install ffmpeg - you can download it for mac. It has a vstack filter - which just takes a lot of inputs, as long as they are the same width, and glues them vertically. Let's say there are equal in width

4 pictures of cat
60eead4a5ee83449377300.png

Run the command in Terminal. For example:
ffmpeg \
  -i 320.jpg  -i 180.jpg  -i 360.jpg  -i 540.jpg  \
  -filter_complex vstack=inputs=4 \
  output.jpg
Amazing result
output.jpg60eead7161903111281509.jpeg
It is not convenient that you have to manually write for each input image -i имяфайла. And when selected in the Finder in some desired order and dragged to the Terminal, the order will change to alphabetical.
But it can be run even on a server (ffmpeg is available for Linux, Windows), and it works very quickly.

B
BorLaze, 2021-07-14
@BorLaze

Is Photo Collage Maker - CollageFactory Free good ?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question