Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
426 views

Montage or Collage with GD Library

I'm trying to create a table of thumbnails for example 100 thumbnails 10x10 with GD Library. I saw that imagemagick has a montage function that would probably be useful but I'm wondering if GD ...
2
votes
1answer
483 views

Imagick PHP Extension — Montage help?

I've been having some trouble generating an image with the Imagick PHP extension. Everything works fine, except my following "montage" has a white background and therefore I cannot overlay it on top ...
2
votes
4answers
1k views

How can I tile videos/create a video montage?

I have four videos that I would like to tile in a 2x2 fashion to make a new video. Is there a way I can do this easily, preferably free and under Linux? I am willing to program a moderate amount, ...
1
vote
1answer
65 views

Using ImageMagick to repeat or “tile” an image

How do I tile an image using ImageMagick? I don't think I can use montage because I want the columns displaced by 50% of the original image height. It's probably easier to show an example of what ...
1
vote
1answer
116 views

How to tile in left-right-bottom-top order in imagemagick montage

I have a several sets of numbered png images (mostly 00-23 but some are different lengths) that I am trying to combine in imagemagick montage, but I need to have them tiled in left-right-bottom-top ...
1
vote
1answer
396 views

ImageMagick and Piping

I have the following commands that create a sprite containing a normal state and a hover state: convert -background none -pointsize 11 -fill white -size 100x -gravity NorthWest caption:'Test' top.png ...
0
votes
0answers
10 views

Ways to create a montage of images in PHP from external servers

I need to create a montage image of up to 18 images and have looked into Imagick Montage and it does look promising but all images are stored on a separate server. I am also unable to use system(); to ...
0
votes
1answer
9 views

How to join 2 images with GD or imagemagic

I need to join 2 images in to the one image, with imagemagic or GD (doesn't mater). With GD I wasn't able to find a solution, and with montage in imagemagic I simple do not have enough knowledge (but ...
0
votes
0answers
67 views

ImageMagick montage overlooks corrupted images

I am using imageMagick montage option to stitch images (jpeg) together, for some reason, some of the images are corrupted, imageMagick just overlook the corrrupted images, and put the next image in ...
0
votes
0answers
37 views

ImageMagick Montage with 2 ranges of filenames

I'm using the montage feature in ImageMagick I noticed that i can put %d in the fileName and a range ([aaa-bbb]) and it will iterate on all of those files I need an option to do this twice, i have ...
0
votes
0answers
37 views

Imagemagick's “scene” command works on computer with Windows and fails Linux?

I noticed a strange behavor of Imagemagick's montage if my script is executed on different OSs. On my Windows machine this script executes and results in a perfectly tiled image. The same script fails ...
0
votes
1answer
146 views

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 ...
0
votes
1answer
153 views

Batch montage of images with paging

I have hundreds of images (png), sorted by name. They all have different sizes, but the same print resolution is to be used. I want to montage them in column, only one per row, possibly centered, and ...