Questions tagged [imagemagick-montage]

39 questions
4
votes
2 answers

How do I make the images equidistant using imagemagick/montage?

Currently I'm using this command: montage IMG*.JPG -tile 3x1 -geometry 150x100+40+40 -background '#000000' triptych.jpg And it produces an output like this (red lines added): The problem (as indicated) is that my images have too much space between…
Wayne Werner
  • 49,299
  • 29
  • 200
  • 290
3
votes
1 answer

Trying to make 3 x 3 montage of 9 images using ImageMagick but getting error for command line command

I am trying to make a large montage of 9 images in a grid of 3x3 on my windows 10 laptop. Image size of all 9 images are same. I did a research on Internet and found how to do it either vertically or horizontally but not for a array of images or…
3
votes
1 answer

imagemagick montage - how to align images to bottom

I want to create a montage, using ImageMagick, where all the images are aligned to the bottom. The images have different heights, and -gravity South doesn't behave as I expect. Image 1 is 100px high. Image 2 is 200px high. If I use : montage *.png…
Terence Eden
  • 14,034
  • 3
  • 48
  • 89
3
votes
1 answer

Montage 3 images in a 2x2 grid, first in top center (like "triforce")?

Not sure how to put this question otherwise - but let's assume I have three square images. I'd like to arrange them in a sort of a square 2x2 grid, such that image 2 is bottom left, image 3 is bottom right - and image 1 is top center (so image 1 is…
sdaau
  • 36,975
  • 46
  • 198
  • 278
2
votes
1 answer

Imagemagick crop into equally sized tiles with overlap?

I want to split a large JPG into equally sized PNGs with a certain overlap: convert total.jpg -crop 10x10@+10+10 split_%04d.png This works fine... but unfortunately the output pictures do sometimes differ in size by one if the source image is not…
fhw72
  • 1,066
  • 1
  • 11
  • 19
2
votes
0 answers

Imagemagick no decode delegate for this image format `PNG' Ubuntu 20.04

I am trying to install Imagemagick on ubuntu 20.04 but every time i run the following command: magick montage frame_*.png -mode concatenate -background none -tile x1 -resize 512X512 output.svg getting the following error: montage: no decode…
MR_AMDEV
  • 1,712
  • 2
  • 21
  • 38
2
votes
1 answer

Creating Random Seamless Pattern using Imagemagick

Using imagemagick I am trying to create a similar image like this tile pattern: OUTPÙT From this image: SOURCE I can do simple tile by using: convert table.png -write mpr:tile +delete -size 3000x3000 tile:mpr:tile table.jpg However, is there any way…
2
votes
2 answers

Imagemagick - move/offset images within a tiled montage?

Consider this example (Ubuntu 18.04, ImageMagick 6.9.7-4 Q16 x86_64 20170114): convert -size 300x100 xc:red red.png convert -size 100x100 xc:blue blue.png montage red.png blue.png -frame 5 -geometry '+0+0' -tile 1x redblue.png This gives the…
sdaau
  • 36,975
  • 46
  • 198
  • 278
1
vote
1 answer

Combining ImageMagick import/montage commands into one-liner

Long story short from the command line I need to take a screenshot, crop two areas of that screenshot and join them back together side-by-side. The separate stages which work fine look like this: $> import -window root -crop '1280x400+0+0'…
John U
  • 2,886
  • 3
  • 27
  • 39
1
vote
1 answer

How to pass Imagemagick montage output and image properties to the convert command without using any temporary files?

I have a set of images, and I can use the Imagemagick montage command on them to produce a montage image file with transparent background (let's call this fgimg). Now I have another existing image (let's call this bgimg) that I'd like to use (after…
1
vote
1 answer

How to fit multiple images in a page optimally using ImageMagick

Suppose I have a bunch of images in a folder with different sizes. The goal is to fit images in a number of pages (e.g. A4) in a way that the whitespace is minimal. There shouldn't be any compression or resizing involved. It is acceptable that some…
1
vote
1 answer

ImageMagick: How to combine multiple images from multiple directories with Montage with different arguments?

I have multiple images distributed along different directories. Each folder has different number of headers and side panels. For this reason, the workaround is to execute montage function from imagemagick software with specific arguments for each…
Archymedes
  • 431
  • 4
  • 15
1
vote
0 answers

Tile images of different aspect ratios using ImageMagick without gaps

I want to be able to tile together images of different aspect ratios in a way that looks good and avoids as much whitespace between the images as possible. What I've done so far is rename all the images using a script that changes the image name to…
1
vote
2 answers

ImageMagick montage always includes labels

In the ImageMagick documentation, it says that if you use montage without any fancy options, it should just line up your images without any decoration and with some spacing. That's not happening to me. Here are my two input images: These are two…
Oskar
  • 889
  • 7
  • 20
1
vote
1 answer

Combining Images Vertically with a horizontal offset

@ https://superuser.com/questions/290656/combine-multiple-images-using-imagemagick Reading these posts I was able to join images vertically, however if you see the result ..bottom image needs a slight pixel offset (because its y-axis is 2-figure…
1
2 3