Search found 158 matches

by Rye
2014-08-24T19:56:44-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 ?

Would this script require extra functions not included in IMGMagick ?

If not... what functions should be used ?
by Rye
2014-08-24T14:34:41-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 ?

Another possibility: Rye wants the resulting pages to have a small overlap, with the image continuing into the overlap, so the pages can be pasted to a wall with a slight overlap and it doesn't matter which pages go on top. Exactly ! I guess for snipping the images this might work ? convert -crop 6...
by Rye
2014-08-24T12:30:39-07:00
Forum: Users
Topic: converting image to multiple a4's with glue edge ?
Replies: 13
Views: 10049

converting image to multiple a4's with glue edge ?

So. I'm currently trying to print out a huge picture over multiple images and then glue them together. There already exists software for such task, such as PosteRazor and such. However they all have one huge flaw: They require using a Scissor and have sometimes inconsistencies applying the glue line...
by Rye
2014-08-23T02:25:40-07:00
Forum: Users
Topic: Append background to all images ?
Replies: 8
Views: 5989

Re: Append background to all images ?

Hmm... when I use your commands I get this: C:\Users\Pascal\Desktop\close_z>append.bat C:\Users\Pascal\Desktop\close_z>cd C:\Users\Pascal\Desktop\close_z C:\Users\Pascal\Desktop\close_z>mogrify -path ../test2 -format png -alpha off -n egate -alpha on -draw 'image DstOver 0,0 0,0 "../background....
by Rye
2014-08-22T14:01:00-07:00
Forum: Users
Topic: Append background to all images ?
Replies: 8
Views: 5989

Re: Append background to all images ?

Here you go: https://dl.dropboxusercontent.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/close_z/089.GIF https://dl.dropboxusercontent.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/close_z/090.GIF https://dl.dropboxusercontent.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/...
by Rye
2014-08-22T11:00:46-07:00
Forum: Users
Topic: Append background to all images ?
Replies: 8
Views: 5989

Re: Append background to all images ?

What platform? Windows Are the foreground images transparent? Are they the same size as the background image? yes and yes The simplest way is to use mogrify to put the background image under the other images. see http://www.imagemagick.org/Usage/basics/#mogrify http://www.imagemagick.org/Usage/basi...
by Rye
2014-08-22T04:26:40-07:00
Forum: Users
Topic: Append background to all images ?
Replies: 8
Views: 5989

Append background to all images ?

I have these images in a folder: 089.GIF 090.GIF 091.GIF 092.GIF 093.GIF 094.GIF 095.GIF 096.GIF 097.GIF 098.GIF 099.GIF 100.GIF 101.GIF 102.GIF 102_2.GIF 103.GIF 105.GIF 106.GIF and want to apply this as a background to all of them (as straightforward as possible): background.png Thanks in advance ...
by Rye
2014-08-08T05:12:06-07:00
Forum: Users
Topic: Append image to all images as background
Replies: 5
Views: 5030

Re: Append image to all images as background

Ok, sorry that I reopened this.

But this script *should* technically work:

Code: Select all

@echo off
set app=background.png
timeout 1 > nul
for %%n in (*.gif) do convert -page +0+0  %app%   -page +0+0 %%n -flatten %%n
but doesn't.... it is STUCK on the first image... any idea ?
by Rye
2014-08-08T04:27:46-07:00
Forum: Users
Topic: Crashing command line (Imagemagick script)
Replies: 0
Views: 2951

Crashing command line (Imagemagick script)

I have got a REALLY weird problem... I have a script... once a manual version and once a automatic one. The manual version: @echo off echo Make sure the images that have the background appended to have transparency SET /P app=Drag and drop the image to be appended (as background): for %%n in (*.gif)...
by Rye
2014-08-06T18:30:25-07:00
Forum: Users
Topic: Append image to all images as background
Replies: 5
Views: 5030

Re: Append image to all images as background

Neat :)

Works like a charm:

Code: Select all

for %%x in (*gif) do convert background.png %%x -composite %%~nx.png


EDIT... thats what I thought at least...
for %%x in (*gif) do convert background.png %%x -composite %%~nx.png will now crash the cmd....
It worked like a charm before... ideas ?
by Rye
2014-08-06T17:17:20-07:00
Forum: Users
Topic: Append image to all images as background
Replies: 5
Views: 5030

Re: Append image to all images as background

windows

the first suggestion sounds good.
by Rye
2014-08-06T14:49:16-07:00
Forum: Users
Topic: Append image to all images as background
Replies: 5
Views: 5030

Append image to all images as background

I have the following files (they all [obviously] have transparency) 089.GIF 090.GIF 091.GIF 092.GIF 093.GIF 094.GIF 095.GIF 096.GIF 097.GIF 098.GIF 099.GIF 100.GIF 101.GIF 102.GIF 102_2.GIF 103.GIF 105.GIF 106.GIF and one file that shall be appended as background to each of them background.gif I wan...
by Rye
2014-07-20T01:51:03-07:00
Forum: Users
Topic: Repeat command for each line in text file
Replies: 10
Views: 7754

Re: Repeat command for each line in text file

Ok, I got it... this one works, it extracts the correct values: @echo off SET /P image=Drag and drop the image file you want to remove the background from: convert %image% -crop 64x64+0+0 crop.png set repl="C:\Users\Pascal\Dropbox\Public\00_MyDosStuff\00DOS_Tools\Rename_FILES\repl.bat" for...
by Rye
2014-07-19T14:14:43-07:00
Forum: Users
Topic: Repeat command for each line in text file
Replies: 10
Views: 7754

Re: Repeat command for each line in text file

EDIT: OK... it looks like this is odd: I manually used a software to hand pick some hex codes in the image: The script I posted works. It replaces them with transparency... The problem now however is: Why does imagemagick not extract the proper colors by itself ? The hex codes I extracted by hand ar...
by Rye
2014-07-19T11:12:17-07:00
Forum: Users
Topic: Repeat command for each line in text file
Replies: 10
Views: 7754

Re: Repeat command for each line in text file

Here you go: C:\Users\Pascal\Desktop\EXE4_Remove_Background>echo #FEFFFC 1>>x.txt C:\Users\Pascal\Desktop\EXE4_Remove_Background>echo #FEFFFA 1>>x.txt C:\Users\Pascal\Desktop\EXE4_Remove_Background>echo #FEFEFC 1>>x.txt C:\Users\Pascal\Desktop\EXE4_Remove_Background>echo #FEFEFC 1>>x.txt C:\Users\Pa...