Search found 3 matches
- 2013-08-12T17:49:32-07:00
- Forum: Users
- Topic: Even most basic montage not producing anything usable linux
- Replies: 7
- Views: 4519
Re: Even most basic montage not producing anything usable li
Okay, so I uninstalled ImageMagick, and attempted to install some jpeg delegates and reinstall ImageMagick. I thought I installed 2, but when I run convert -list configure, it only lists ljpeg as a jpeg delegate. The other ones listed are lMagickCore, lm, and lgomp. After doing this, it is now ...
- 2013-08-12T11:39:21-07:00
- Forum: Users
- Topic: Even most basic montage not producing anything usable linux
- Replies: 7
- Views: 4519
Re: Even most basic montage not producing anything usable li
You need to tell montage the -tile arrangement.
montage image1 image2 image3 image4 -tile 4x1 result
will put them all in a row and is the same as doing
convert image1 image2 image3 image4 +append result
if you want them in a vertical column, then use -tile 1x4 or use -append.
If you want ...
montage image1 image2 image3 image4 -tile 4x1 result
will put them all in a row and is the same as doing
convert image1 image2 image3 image4 +append result
if you want them in a vertical column, then use -tile 1x4 or use -append.
If you want ...
- 2013-08-12T10:39:31-07:00
- Forum: Users
- Topic: Even most basic montage not producing anything usable linux
- Replies: 7
- Views: 4519
Even most basic montage not producing anything usable linux
I'm trying to use the montage command for the most basic tasks, but am having troubles getting anything to work right. I've spend a few hours searching online for a possible solution but have come up empty handed and was hoping someone could steer me in the correct direction.
I just want to put (n ...
I just want to put (n ...