Search found 158 matches

by Rye
2018-10-27T01:09:04-07:00
Forum: Users
Topic: Arrange image to circle
Replies: 10
Views: 11881

Arrange image to circle

Hi,

question,

how could I arrange multiple of these (named 001.png 002.png ... etc)

Image

to something like this:

Image

imgur.com/370e41f0-b0d2-49be-95f0-4672f039b489

using only imagemagick ?

- Thanks in advance.
by Rye
2018-04-28T10:44:58-07:00
Forum: Users
Topic: [SOLVED] Create ferris wheel style animation
Replies: 9
Views: 9803

Re: [SOLVED] Create ferris wheel style animation

Neat :D

Finally a use for all that math xD.
*Bows to IM Team*
by Rye
2018-04-28T10:43:10-07:00
Forum: Users
Topic: No matter what, second parameter of convert always invalid.
Replies: 15
Views: 50257

Re: No matter what, second parameter of convert always invalid.

I know why.
The static built is missing that option.
The others have it.
by Rye
2018-04-28T10:21:48-07:00
Forum: Users
Topic: No matter what, second parameter of convert always invalid.
Replies: 15
Views: 50257

Re: No matter what, second parameter of convert always invalid.

Ah ok, that makes sense.
by Rye
2018-04-28T10:10:15-07:00
Forum: Users
Topic: No matter what, second parameter of convert always invalid.
Replies: 15
Views: 50257

Re: No matter what, second parameter of convert always invalid.

Ok. However, which of these "is" the "legacy checkbox" ?

Image

The problem isn't "convert.exe"... I rely on "mogrify" for many scripts (for which I don't want to change it)...
by Rye
2018-04-28T09:53:41-07:00
Forum: Users
Topic: [SOLVED] Create ferris wheel style animation
Replies: 9
Views: 9803

Re: [SOLVED] Create ferris wheel style animation

Sweet, exactly what I hoped for.

#I especially love how you used all those math functions such as sin and cos and the good ol pi in here. (probably for circlular calculations)
Bet my math teacher would enjoy this aswell :D
by Rye
2018-04-28T09:51:30-07:00
Forum: Users
Topic: No matter what, second parameter of convert always invalid.
Replies: 15
Views: 50257

Re: No matter what, second parameter of convert always invalid.

Sorry for the gravedigging, but as I installed ImageMagick-7.0.7-28-Q16-x64-static today, the "convert" command appears to show similar behaviour as outlined here.

Is there a simple (cmd ?) fix for this ?
by Rye
2018-04-28T09:04:12-07:00
Forum: Users
Topic: [SOLVED] Create ferris wheel style animation
Replies: 9
Views: 9803

Re: Create ferris wheel style animation

Amazing :shock: :mrgreen: Had to update to "ImageMagick-7.0.7-28-Q16-x64-static" to get the command to run, but WOW. smoothest command ever. PS: So I can avoid further questions in this regard: If one wanted to add "more gondolas" so to speak, using your method: how'd one go abou...
by Rye
2018-04-28T04:08:18-07:00
Forum: Users
Topic: [SOLVED] Create ferris wheel style animation
Replies: 9
Views: 9803

Re: Create ferris wheel style animation

I agree, I figured it might be rather complicated. Columns x2 as sometimes the emoji is behind it and sometimes in front - a bug? I "only" want to rotate the images around. I'm not interested in the ferries wheel itself. (Does this help to ease this ?) Something a little bit like this: htt...
by Rye
2018-04-28T02:35:19-07:00
Forum: Users
Topic: [SOLVED] Create ferris wheel style animation
Replies: 9
Views: 9803

[SOLVED] Create ferris wheel style animation

What I'd like to do, is: have multiple images rotate around a anker point that is the center of the picture. Similar to this: http://i717.photobucket.com/albums/ww173/prestonjjrtr/Smileys/SmileyFerrisWheel.gif (obviously, outputting the animation frames from this rotation to individual pictures in -...
by Rye
2018-01-24T13:48:05-07:00
Forum: Users
Topic: Use imagemagick to find recurring patterns in waveform ?
Replies: 5
Views: 5070

Re: Use imagemagick to find recurring patterns in waveform ?

That sounds like a reasonable suggestion.
by Rye
2018-01-22T13:52:48-07:00
Forum: Users
Topic: Use imagemagick to find recurring patterns in waveform ?
Replies: 5
Views: 5070

Re: Use imagemagick to find recurring patterns in waveform ?

I do not know how Imagemagick would help. It is an image processor, not a wave analysis tool. Indeed, but you can see, I'm talking about analysing " a picture of the waveform " to find rough pattern similarities - not the music file itself . While I know this is probably not the best take...
by Rye
2018-01-22T13:43:09-07:00
Forum: Users
Topic: Use imagemagick to find recurring patterns in waveform ?
Replies: 5
Views: 5070

Use imagemagick to find recurring patterns in waveform ?

So... as there are no sufficient tools at hand (that I can find at the current point in time) that allow me to analyze music waveforms for repeating patterns : Would it be possible to use Imagemagick to: 1.) Feed it a Picture of a waveform 2.) Get it to "mark" repeating patterns in such im...
by Rye
2017-06-20T16:38:25-07:00
Forum: Users
Topic: Identify all colours in picture and output to txt ?
Replies: 22
Views: 23830

Re: Identify all colours in picture and output to txt ?

Ah. perfect !
by Rye
2017-06-17T13:47:13-07:00
Forum: Users
Topic: Identify all colours in picture and output to txt ?
Replies: 22
Views: 23830

Re: Identify all colours in picture and output to txt ?

Actually... seems houston is in the house again. For some reason replacing rose: with my own image seems not to work for whatever reason... This works (duh.): for /F "usebackq skip=1 tokens=3" %%C in (`%IM%convert rose: -depth 8 txt:`) do echo %%C >>x.txt findstr # x.txt >> hex.txt However...