Questions tagged [montage]

The technique of selecting, editing, and piecing together separate sections of film to form a continuous whole.

The technique of selecting, editing, and piecing together separate sections of film to form a continuous whole.

58 questions
1
vote
1 answer

How should three images be tiled using ImageMagick montage?

I want to tile three images into a rectangle. Two of the images are to be on the left, on top of each other and set to the same width, and the remaining image is to be on the right. --------- | 1 | | |---| 3 | | 2 | | --------- I know that four…
d3pd
  • 7,935
  • 24
  • 76
  • 127
1
vote
3 answers

Numbering/Labeling images (eg 1,2,3 or A,B,C) with ImageMagick montage

I'm using montage *.tif output.tif to combine several images to one. I would now like them to be numbered (sometimes 1,2,3 …; somtimes A,B,C …) What possibilities are there to label the single images in the combined? Is there an option to put the…
Mojo Dodo
  • 67
  • 10
1
vote
1 answer

How do I "read" from an existing image object instead of a file path with PerlMagick?

The following code generates a 300x100 image using a 100x100 tile as a source image: for (my $i = 0; $i < 3; $i++) { $image->Read("filepath/100x100.png"); } $result = $image->Montage(geometry=>'100x100',tile=>'3x1'); How do I reach the same…
Dustin Paluch
  • 93
  • 1
  • 8
1
vote
3 answers

ImageMagick: combine multiple 'montage' commands into one to gain performance

I have a script that takes 4 pictures and duplicates them to produce 8 small pictures in one. The script also adds a background to the output. Here is what I expect: http://img11.hostingpics.net/pics/831624stack.png I have a code that works well.…
MrChristo
  • 21
  • 1
  • 4
1
vote
1 answer

How to remove white space between ImageMagick's montage tiles?

I current have code that build a montage using ImageMagick. This is my line of code: montage -mode Concatenate -tile ${tile} -geometry ${geometry}+0+0 ${input} ${output} I'm using -label ${label} to name my labels (in my input var). This gets me a…
David Gourde
  • 3,709
  • 2
  • 31
  • 65
1
vote
5 answers

ImageMagick: How to combine 200 images in pairs of 2 side-by-side (book layout)

I have 200 jpgs that are the same size. I need to combine them in pairs, putting them side-by-side. So 1.jpg 2.jpg 3.jpg 4.jpg Should make 2 new jpgs, one containing 1 and 2, and the other containing 3 and 4. Side by side. Think of each image as a…
empz
  • 11,509
  • 16
  • 65
  • 106
1
vote
2 answers

Using imagick montageImage PHP

I'd like to use imagemagick to make a montage from existing photos on my server. I am having a terrible time getting any code to work properly. I've tried using the few examples I've found by searching, but it's not working.…
Solid I
  • 580
  • 5
  • 13
  • 34
0
votes
0 answers

What is this directional glow effect called?

I am planning to make similar logo animation and wondering how to search for a tutorial for that glow effect glow The effect is from this video: https://youtu.be/-S5Qo84D_NA It appears on 2nd minute of the video I prefer working in DaVinci Resolve,…
0
votes
1 answer

clean video glitches once imported into after effects

So I edited a video in premiere pro and I now want to add some effects in after effects. It mostly works well, but sometimes, there is a small glitch at a random place in the video that I important and I don't know why since the source video does…
LaForet
  • 11
  • 1
0
votes
0 answers

IMAGEMAGICK - proof sheet, reverse date order (recent first), labeled with date of image

I have about 3 dozen images that I'd like to put on a set of proof sheets, in reverse chronological order, labeled (under each image) with the date of the image. Does anyone know how to do this in imagemagick? Cheers, -Bruce
0
votes
0 answers

Poor quality output after merging multiple image into one using Montage of ImageMagick

I tried to merge multiple jpg images files into one jpg using magick montage -border 0 -tile 4x3 *.jpg outputfile.jpg but the image is very very poor quality. How do I enhance the high-quality image or same quality image after merging all files…
Lalantra
  • 67
  • 1
  • 11
0
votes
0 answers

Concatenating a Images in a matrix with other matrix images in MatLab

I want concatenate some matrix, the elements in the matrix are images. I want to concatenate thos matriz to draw a long image. A matrix is: Matrix: Image 1 And if i concatenate it I obtain: Matrix: Image 2 Instead of something like : Matrix: Image…
0
votes
0 answers

Getting error "montage.exe: unable to create temporary file '-': No such file or directory @ error/pdf.c/ReadPDFImage/476.;"

I'm using ImageMagick-7.0.7-Q8 and ghostscript(gs9.20) to create thumbnails of a pdf file. Upon calling "ProcessTask pt = montage.getProcessTask(op, (tag!=null)? (tag+":-") : "-" , "png:-");" I'm always getting error [Thumbnails] Process failed for…
Mrityunjay
  • 154
  • 2
  • 9
0
votes
1 answer

Avoiding tilt in imagemagic montage

I use this command to generate montage: montage *.jpg -thumbnail 600x600 -set caption %t -background grey40 -pointsize 16 -density 188x188 +polaroid -resize 50% -background white -geometry +1+1 -tile 4x4 -title "My Collection"…
nixnotwin
  • 2,343
  • 8
  • 30
  • 46
0
votes
0 answers

Creating a mosaic with montage wrapper

I'm having trouble using montage wrapper to create a mosaic in Python. I am trying to create a 3 x 3 mosaic of M33 and have all 59 photos in a folder 'M33' as shown in my code. There are about 4 photos for each tile and also darks and lights in the…
Bobby Stiller
  • 137
  • 1
  • 1
  • 9