Search found 7 matches

by Chemist116
2018-07-12T18:17:18-07:00
Forum: Users
Topic: Why the loop command for making a short animation from images is not displaying correctly?
Replies: 3
Views: 2076

Re: Why the loop command for making a short animation from images is not displaying correctly?

try putting -loop 0 at the end before the output. convert -delay 100 image1.png image2.png image3.png -loop 0 out.gif If that does not work, then post your images to some free hosting service and put the URLs here. Also provide your exact IM 7 version as 7.x.x.x. Concerning to the version I used th...
by Chemist116
2018-07-12T14:48:03-07:00
Forum: Users
Topic: Why the loop command for making a short animation from images is not displaying correctly?
Replies: 3
Views: 2076

Why the loop command for making a short animation from images is not displaying correctly?

Hello. I'm trying to make a gif from a set of three different images and the command I'm using is: convert -loop 0 -delay 100 image1.png image2.png image3.png out.gif However the result does not display correctly as it only shows the first and the last image in the sequence, the second which is in b...
by Chemist116
2017-06-03T04:28:58-07:00
Forum: Users
Topic: Can this image be created with montage?
Replies: 8
Views: 6658

Re: Can this image be created with montage?

Chemist116: If you show your input images, we can more easily show you what you need for your required output. There are many ways of making that output. If you only want it once, why not use Gimp? With ImageMagick, I might do it like this: a single "convert" or "magick", read t...
by Chemist116
2017-06-02T11:32:10-07:00
Forum: Users
Topic: Can this image be created with montage?
Replies: 8
Views: 6658

Re: Can this image be created with montage?

You can set a title for montage, but it will be one pointsize and cannot have the toaster icon added in the top left. I would suggest that you create the simple montage with the black background and use -geometry to add the space you want between images. Then make a larger black image and composite...
by Chemist116
2017-06-02T10:23:55-07:00
Forum: Users
Topic: Can this image be created with montage?
Replies: 8
Views: 6658

Can this image be created with montage?

Hello. I am trying to do this work with imagemagick see below: http://i.imgur.com/5mLjNI7.png However so far i was only able to do this: http://i.imgur.com/0EbJ5qU.jpg by using the code below montage apple_png12455.png prod_1485509212.jpg very_large_array_antenna.jpg -geometry 60x60+2+2 -background ...
by Chemist116
2017-05-31T13:09:30-07:00
Forum: Users
Topic: How to insert a caption below an image?
Replies: 3
Views: 6538

Re: How to insert a caption below an image?

Do you want the text inside the image at or near the bottom or added below the bottom of the image. What is your ImageMagick version and platform/OS, since syntax may differ? Try something like: convert input.suffx -gravity south -undercolor black -fill yellow -font courier -pointsize 18 -annotate ...
by Chemist116
2017-05-31T09:39:48-07:00
Forum: Users
Topic: How to insert a caption below an image?
Replies: 3
Views: 6538

How to insert a caption below an image?

Hello. I am trying to reproduce the effect similar to the example attached. I've already read the tutorial here however the result is not the desired. Can somebody help me with this?. https://i.stack.imgur.com/0cU9u.jpg What i need is that the text to be in courier new typeface and fontcolor to be y...