Search found 158 matches

by Rye
2016-01-31T08:50:24-07:00
Forum: Users
Topic: [Solved ]Rotating image.. won't stay centered
Replies: 9
Views: 7858

[Solved ]Rotating image.. won't stay centered

So, I tried rotating an image today. This is my source: [spoiler] https://dl.dropboxusercontent.com/u/14586156/stuff/0Hardwaresupport/Imagemagick/Rotating_image_(not_centered)/001.gif [/spoiler] and after executing the following command: mogrify file.png -rotate 15 -background transparent file.png c...
by Rye
2016-01-03T13:26:04-07:00
Forum: Users
Topic: Turning Still image into animation (frames) Roll ?
Replies: 9
Views: 8671

Re: Turning Still image into animation (frames) ?

@snibgo:

I assume you are talking about this site of yours ?:
http://im.snibgo.com/animsrt.htm

I tried the samples out...

But failed to produce anything more than a simple copy of my source image.

I think you wrote them for windows, correct ?
by Rye
2016-01-02T16:09:35-07:00
Forum: Users
Topic: Turning Still image into animation (frames) Roll ?
Replies: 9
Views: 8671

Re: Turning Still image into animation (frames) ?

Would a cygwin evironment / linux wrapper make these commands work under windows perhaps ?
by Rye
2016-01-02T15:30:31-07:00
Forum: Users
Topic: Turning Still image into animation (frames) Roll ?
Replies: 9
Views: 8671

Re: Turning Still image into animation (frames) ?

Windows.

That sounds interesting.

Are there examples on how to use roll and crop ?

Also, is it possible to change the scrolling direction ?
by Rye
2016-01-02T15:16:09-07:00
Forum: Users
Topic: Turning Still image into animation (frames) Roll ?
Replies: 9
Views: 8671

Turning Still image into animation (frames) Roll ?

So... I got a rather... unique idea here... Even though I'm not even sure if Imagemagick is my tool of choice for what I have planned I'll ask anyways. To make it simple: I want to go from this: https://dl.dropboxusercontent.com/u/14586156/2_Diaric/1Questions/Software/PC/still.gif to this: https://d...
by Rye
2014-12-19T07:25:23-07:00
Forum: Users
Topic: Recursively resize all images in folder to same resolution ?
Replies: 4
Views: 8194

Re: Recursively resize all images in folder to same resolution ?

Well... Assuming we *were* under unix, how'd the command look here ?
by Rye
2014-12-17T01:12:18-07:00
Forum: Users
Topic: Recursively resize all images in folder to same resolution ?
Replies: 4
Views: 8194

Recursively resize all images in folder to same resolution ?

So, I am under Windows and currently have the following problem. I have a folderstructure like this: FOLDER | ARTS | ORIGINAL | ---- f01 | ----- f02 . . I want to recursively resize all images in that folder to the same resolution . Can this easily be done with imagemagick ? Thanks in advance
by Rye
2014-12-17T01:06:08-07:00
Forum: Users
Topic: Extracting frames from HUGE animated gif
Replies: 7
Views: 13471

Re: Extracting frames from HUGE animated gif

This is odd...

I tried both ways provided, but only one image is extracted...
by Rye
2014-12-13T02:19:39-07:00
Forum: Users
Topic: Extracting frames from HUGE animated gif
Replies: 7
Views: 13471

Re: Extracting frames from HUGE animated gif

This will however only extract the first frame of the gif...

how do I go on about extracting all ?
by Rye
2014-12-12T15:00:59-07:00
Forum: Users
Topic: Extracting frames from HUGE animated gif
Replies: 7
Views: 13471

Extracting frames from HUGE animated gif

So I have this animated gif , with -


don't freak out -

a few thousand frames:

http://tinyurl.com/odk78wu



The usual command:

Code: Select all

convert image.gif  image_%d.gif
will just crash and burn.

Any ideas on this one ?
by Rye
2014-08-28T09:13:37-07:00
Forum: Users
Topic: converting image to multiple a4's with glue edge ?
Replies: 13
Views: 10049

Re: converting image to multiple a4's with glue edge ?

Perfct ! :) So, this is now the finished script to slice a image (+add glue borders) to each image: @echo off SET /P width=Please enter numer of tiles (WIDE): SET /P height=Please enter number of tiles (HEIGHT): convert *.* -crop %width%x%height%+55+55@ +repage +adjoin %d.gif for %%x in (*gif) do co...
by Rye
2014-08-28T08:44:18-07:00
Forum: Users
Topic: converting image to multiple a4's with glue edge ?
Replies: 13
Views: 10049

Re: converting image to multiple a4's with glue edge ?

I guess I wasn't clear... This command: convert d-0.gif -gravity southeast -background Black -splice 55x55+0+0 d-a0.gif will ADD a border of 55x55 on the right and down side. So the image goes from 710x901 to 765x956 I want to add the border while OVERWRITING existing image parts (!) so the size sha...
by Rye
2014-08-28T08:13:08-07:00
Forum: Users
Topic: converting image to multiple a4's with glue edge ?
Replies: 13
Views: 10049

Re: converting image to multiple a4's with glue edge ?

Ok, cutting with offset works fine.

Now. How can I apply a white overlay over each picture (glue space) of 55 pixels on the right side and bottom side of each picture ?

Like so:

Image
by Rye
2014-08-25T06:57:35-07:00
Forum: Users
Topic: converting image to multiple a4's with glue edge ?
Replies: 13
Views: 10049

Re: converting image to multiple a4's with glue edge ?

ok, that overlap seems to be what I'm looking for. Is it possible to afterwards replace the "underlap" (of the right side images) with a white space ? If so, what command would I have to use if I wanted to have 20x20 pixel like this ? ---------------- | SPACE | | P ----------| | A| | | C| ...