Search found 158 matches

by Rye
2013-03-09T12:54:35-07:00
Forum: Users
Topic: Paste image on coordinates outputted previously [SOLVED]
Replies: 30
Views: 27311

Re: Paste image on coordinates outputted previously [SOLVED]

Try it yourself with these two and see for yourself (I had posted the wrong ones): (try it as often as possible... lets say 8 times) https://dl.dropbox.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/02_Replace_pattern%20in%20image/Fail/02blnkCMD.gif https://dl.dropbox.com/u/14586156/stuff/0_...
by Rye
2013-03-09T11:37:31-07:00
Forum: Users
Topic: Paste image on coordinates outputted previously [SOLVED]
Replies: 30
Views: 27311

Re: Paste image on coordinates outputted previously [SOLVED]

Thats funny... Source image: https://dl.dropbox.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/02_Replace_pattern%20in%20image/Fail/01source.gif pattern to replace: https://dl.dropbox.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/02_Replace_pattern%20in%20image/Fail/02blnkCMD.gif re...
by Rye
2013-03-09T09:21:33-07:00
Forum: Users
Topic: Paste image on coordinates outputted previously [SOLVED]
Replies: 30
Views: 27311

Re: Paste image on coordinates outputted previously

Ok you are right.

Last question:

Is it possible to get ImageMagick to output this

Code: Select all

59,19
instead of this:

Code: Select all

2010.26 (0.0306746) @ 59,19
by Rye
2013-03-09T06:50:10-07:00
Forum: Users
Topic: Paste image on coordinates outputted previously [SOLVED]
Replies: 30
Views: 27311

Re: Paste image on coordinates outputted previously

Alright... That is good so far, except for one thing I don't understand... (refering to the other topic): I have this image: https://dl.dropbox.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/02_Replace_pattern%20in%20image/58SetLava.gif and replaced all https://dl.dropbox.com/u/14586156/stuf...
by Rye
2013-03-09T04:40:35-07:00
Forum: Users
Topic: Paste image on coordinates outputted previously [SOLVED]
Replies: 30
Views: 27311

Re: Paste image on coordinates outputted previously

Is there a way to automatically reuse the previous coordinate output instead of having to type it manually each time?
by Rye
2013-03-09T04:16:28-07:00
Forum: Users
Topic: Paste image on coordinates outputted previously [SOLVED]
Replies: 30
Views: 27311

Paste image on coordinates outputted previously [SOLVED]

Well in a previous thread of mine it was possible to get ImageMagic to output these coordinates (http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=22925). 0 (0) @ 39,37 The question now however is: How do I have to proceed from here in order to paste a new image (say new_image.png ...
by Rye
2013-03-08T14:42:06-07:00
Forum: Users
Topic: Replace pattern in image with other one
Replies: 5
Views: 7627

Re: Replace pattern in image with other one

How can I modify the script to actually use these coordinates right now and paste the other images in ?
by Rye
2013-03-08T08:31:21-07:00
Forum: Users
Topic: Replace pattern in image with other one
Replies: 5
Views: 7627

Re: Replace pattern in image with other one

what would have to be added to this script so it will automatically repeat a paste till a match is no longer found ?
by Rye
2013-03-08T06:48:23-07:00
Forum: Users
Topic: Replace pattern in image with other one
Replies: 5
Views: 7627

Re: Replace pattern in image with other one

since I don't actually get the usage of those "bright points".

Mind posting an example ?
by Rye
2013-03-08T05:36:19-07:00
Forum: Users
Topic: Replace pattern in image with other one
Replies: 5
Views: 7627

Replace pattern in image with other one

Well, to make it simple, I want to replace the yellow pattern that have a line over them in this image: https://dl.dropbox.com/u/14586156/Texte%20%2B%20Bilder/Cheats%26GameSaves/gbagamecheats/Megamanbattlenetwork%20Spieltipps/Megaman%20Battlenetwork%203/MMBN3%20Programs/22%20HP%2B200.png => Pattern ...
by Rye
2013-03-08T05:32:35-07:00
Forum: Users
Topic: Stitching image on given canvas size ? [SOLVED]
Replies: 28
Views: 58333

Re: Stitching image on given canvas size using ImageMagic ?

Since this problem is resolved the thread can be closed !

Thank you very much again for your extensive and effective help !
by Rye
2013-03-04T13:54:31-07:00
Forum: Users
Topic: Stitching image on given canvas size ? [SOLVED]
Replies: 28
Views: 58333

Re: Stitching image on given canvas size using ImageMagic ?

ok, that works great !
by Rye
2013-03-04T10:41:00-07:00
Forum: Users
Topic: Stitching image on given canvas size ? [SOLVED]
Replies: 28
Views: 58333

Re: Stitching image on given canvas size using ImageMagic ?

After some fiddling around I got this far: for %%X in (*.png) do "%IMG%convert" ^ -size 612x322 ^ tile:%%X ^ tiled.jpg The problem now however is that I only have one tiled jpg. How can I achieve that the tiled will be automatically numbered so I have it like this: 001tiled.jpg 002tiled.jp...
by Rye
2013-03-03T12:12:06-07:00
Forum: Users
Topic: Stitching image on given canvas size ? [SOLVED]
Replies: 28
Views: 58333

Re: Stitching image on given canvas size using ImageMagic ?

I only need 1 cropped.png for the output file. 1 cropped.png -> tiled.png Well that script aside: The only thing I try is: Process input file (001) - save to outputfile that matches the 001 of the input and add a -output to it Repeat with 002... You could say "lets not care about the script at...
by Rye
2013-03-03T06:59:43-07:00
Forum: Users
Topic: Stitching image on given canvas size ? [SOLVED]
Replies: 28
Views: 58333

Re: Stitching image on given canvas size using ImageMagic ?

I know got this one working: SET /P width=Please enter canvas width: SET /P heigth=Please enter canvas heigth: convert *.gif -crop 128x128+0+0 cropped.png "%IMG%convert" ^ -size %width%x%heigth% ^ tile:cropped.png ^ tiled.png However the problem is that I want this script to process 100+ g...