Search found 158 matches

by Rye
2019-01-20T12:18:42-07:00
Forum: Users
Topic: Arrange animated gifs
Replies: 2
Views: 4282

Re: Arrange animated gifs

Hah, you broke a new speed record :-D. Nice. That is exactly what I was looking for. Looks good, the images both have the same dimensions and frame number. (I wonder. That website, does it use imagemagick aswell ?) EDIT: I get a "-layer" command not recognized error (both with "conver...
by Rye
2019-01-20T12:04:50-07:00
Forum: Users
Topic: Arrange animated gifs
Replies: 2
Views: 4282

Arrange animated gifs

Is what this tool does: https://ezgif.com/combine Possible with imagemagick ? (taking two animated gifs and place them next to each other ) Note: I'm not looking to "put the frames of the gifs next to each other" (as described here: http://www.imagemagick.org/discourse-server/viewtopic.php...
by Rye
2018-11-08T11:19:39-07:00
Forum: Users
Topic: [Solved] Repeat "multiple images" over fixed canvas size
Replies: 10
Views: 11039

Re: Repeat "multiple images" over fixed canvas size

Sweet ! Works like a charm :).

Care to explain what exactly the ??? is standing for ? A place holder ?

Would it be possible to use a for loop instead of it, to avoid always having to use 000 - 0xx naming schemes ?
by Rye
2018-11-07T13:43:27-07:00
Forum: Users
Topic: [Solved] Repeat "multiple images" over fixed canvas size
Replies: 10
Views: 11039

Re: Repeat "multiple images" over fixed canvas size

I wrote the down twice, as they'd be used multiple times in order to fill the canvas.

For example:
*50 images 32x32px each
*filling a 1000x1000 canvas
=> repeating the images till the canvas is filled
by Rye
2018-11-07T12:48:27-07:00
Forum: Users
Topic: [Solved] Repeat "multiple images" over fixed canvas size
Replies: 10
Views: 11039

Re: Repeat "multiple images" over fixed canvas size

As stated, I already had a look at it, but sadly I only managed to get either - not the canvas size I wanted (script stopped when all tiles were used) OR - random canvas size. I want to "fill up" a given size (say for example 560x890) with tiles (just for the sake of argument using 32x32 m...
by Rye
2018-11-07T11:55:22-07:00
Forum: Users
Topic: [Solved] Repeat "multiple images" over fixed canvas size
Replies: 10
Views: 11039

[Solved] Repeat "multiple images" over fixed canvas size

So, since I once did a thread , that repeated a single image. Now for "combining multiple images in the same folder and join them onto a canvas" montage *.png -size 400x400 -geometry 0 -tile %rep%x tiled.png ... doesn't work (it obviously just repeats the same image till filled) for %x in ...
by Rye
2018-11-07T10:18:26-07:00
Forum: Users
Topic: Create photo mosaic from multiple images
Replies: 2
Views: 5187

Re: Create photo mosaic from multiple images

Hmm, ok, that looks like it might be fun to tinker with. Thanks.
by Rye
2018-11-07T09:59:22-07:00
Forum: Users
Topic: Create photo mosaic from multiple images
Replies: 2
Views: 5187

Create photo mosaic from multiple images

Can imagemagick (by itself), do what this one promises:

https://github.com/jbum/photo-mosaics

?

Namely, create "Photomosaics, that (re)create a (given) image out of many smaller ones ?
by Rye
2018-11-07T09:03:32-07:00
Forum: Users
Topic: [Solved] Remove cutout residue (transparent background picture)
Replies: 3
Views: 4967

Re: Remove cutout residue (transparent background picture)

Works perfectly !

The blur variable changes the way the edges are smoothed ?
by Rye
2018-11-06T13:32:27-07:00
Forum: Users
Topic: [Solved] Remove cutout residue (transparent background picture)
Replies: 3
Views: 4967

[Solved] Remove cutout residue (transparent background picture)

So, as so often, when someone uses any app to remove the background (mostly with the magic wand tool), you might end up with this: https://i.imgur.com/VYzNkt6.png As it is plain to see: Around the contours, there is a white "residue", that couldn't be removed with the programs tool. Questi...
by Rye
2018-10-29T06:41:43-07:00
Forum: Users
Topic: Arrange image to circle
Replies: 10
Views: 11809

Re: Arrange image to circle

Sort of is good enough for me here ;)

I doubt I'll ever need to go the reverse anyways.

Thanks. Worked out like a charm!
by Rye
2018-10-29T05:50:20-07:00
Forum: Users
Topic: Arrange image to circle
Replies: 10
Views: 11809

Re: Arrange image to circle

Hmm... for %%x in (*.png) do magick %%x -distort arc 360 %%x_out.png creates a "globe like" sphere, How can I modify its inner part to be empty however ? Also, is there a way to force it to use a predefined canvas size ? (as far a possible) Ok, this seems to be getting better: for %%x in ...
by Rye
2018-10-29T01:17:07-07:00
Forum: Users
Topic: Arrange image to circle
Replies: 10
Views: 11809

Re: Arrange image to circle

One More question (sorry for the double post, but I'm not sure this will be seen else)

Kind of semi related:

If I for example had a horizontal picture and wanted to bend it to a circle, like this:

Image

How'd I go about that ? Transform it ?
by Rye
2018-10-27T10:40:31-07:00
Forum: Users
Topic: Arrange image to circle
Replies: 10
Views: 11809

Re: Arrange image to circle

Ok, that makes sense. Strange though however, upon executing the command I get: magick: invalid list of numbers '-distort' 't*360/nl]' at CLI arg 10 @ error/operation.c/LISimpleOperatorImage/2257 Nevermind, my mistake, your command needs the "%" escaped inside a bat file. Works now. Perfect!
by Rye
2018-10-27T07:47:32-07:00
Forum: Users
Topic: Arrange image to circle
Replies: 10
Views: 11809

Re: Arrange image to circle

Ah nice !
Supposing I'd change from say 12 to maybe 36 or perhaps 48 dashes:
Can your code be simply adapted to that ?
Also, out of curiosity: What is a "virtual pixel" ?