Questions tagged [imagemagick-montage]

39 questions
0
votes
1 answer

Error running 'montage' function in ImageMagick 'too many arguments'?

I'm trying to run the montage function in ImageMagick with a large number of arguments (264) directly through a ruby script. Here is the line that calls the function: montage -mode concatenate -tile #{x_tiles}x#{y_tiles} #{tempfiles.map{|t|…
15Step
  • 101
  • 4
0
votes
1 answer

Why does 'montage' seem to take up all my disk space when I try to montage thousands of images?

I tried to 'montage' 15000 small PNG images (about 10kb each) in order to make them all into one big image, but midway through the process I get a warning that I have no disk space left. I have 30gb left in my SSD. The command I'm running: montage…
Koz
  • 151
  • 2
  • 14
0
votes
1 answer

Powershell with Image Magick Montage reading from text file

I am working on a PowerShell script using Image Magick's montage function. My script works until the source files (.jpgs) volume increases to an ambiguous number of files. Once there are 'too many' files, the script fails due to 'Program…
Garrett
  • 617
  • 12
  • 30
0
votes
3 answers

Overlap multiple images at some pixel level using Imagemagick

For example, I have 4 images with a size of 1000x800. I want to merge all these images into one image. I know there is a command of convert +append image[1-4].jpg output.jpg But I want to merge the second image into the first image by overlapping…
KCS
  • 442
  • 5
  • 20
0
votes
2 answers

Powershell can not call ImageMagick commands - IM Montage

I wrote a script in PowerShell and I am having various success calling Image Magick's montage.exe on different computers. The computer on which I wrote the script has no problem executing the 'montage' command, however on another computer with IM…
Garrett
  • 617
  • 12
  • 30
0
votes
1 answer

Pull images and file owner through PowerShell to ImageMagick 'Montage'

I am trying to build a PowerShell script that will pull jpgs from particular directories recursively and run them through ImageMagick montage to create a Contact Sheet with the filenames as the labels. As of now, my $filename code is broken, as it…
Garrett
  • 617
  • 12
  • 30
0
votes
0 answers

Centre montage on US Letter (300dpi)

I'm wondering how I can update the following command to centre the resulting montage in a US Letter sized pdf. montage -density 300 -tile 3x3 -geometry +20+20 *.png output.pdf
binarymelon
  • 904
  • 2
  • 12
  • 26
0
votes
4 answers

AutoMerge two images files to one

I am using Montage command-line tool to merge the two jpg images. The output jpg contains the common strip present in the input jpgs. Below is the command to merge two jpgs: montage -geometry 500 input1.jpg input2.jpg output.jpg How can I avoid the…
Lilly
  • 11
0
votes
1 answer

For Imagemagick, how can I stop the "montage -tile 3x3" command from cropping the output?

I take an image and chop it into 9 equally size tiles. Each tile is run through a process that increases it's resolution. All 9 tiles slightly overlap each other based on a specific hard-coded value. The issue however is that when the modified…
ProGamerGov
  • 870
  • 1
  • 10
  • 23
1 2
3