Search found 8 matches

by RoadRacer
2018-01-26T10:40:31-07:00
Forum: Users
Topic: how to monitor mogrify progress?
Replies: 4
Views: 16653

Re: how to monitor mogrify progress?

Is there a way to select wich kind of progress I would like to see? I could imagine, to expand the "-monitor" command with further arguments/parmeters. For example, when doing many processes with one big picture: convert Test.png -resize ... -colorize ... -many things ... -monitor Detail r...
by RoadRacer
2018-01-25T13:56:54-07:00
Forum: Users
Topic: merge/average multiple layers weighted by alpha
Replies: 4
Views: 3609

Re: merge/average multiple layers weighted by alpha

Hey Snigbo

That works awesome!
Exactly, what I was looking for.

Thanks a lot! :-)
by RoadRacer
2018-01-23T13:40:24-07:00
Forum: Users
Topic: merge/average multiple layers weighted by alpha
Replies: 4
Views: 3609

Re: merge/average multiple layers weighted by alpha

The combination of "-compose plus" and "-layers merge" is interesting and looks nice with a few layers, as long as the sum of the alphas is not larger than 1.0. But the more the sum of alphas exceeds 1.0 (many layers), the brighter the result becomes. Sorry, but I couldn't arrang...
by RoadRacer
2018-01-20T04:44:10-07:00
Forum: Users
Topic: merge/average multiple layers weighted by alpha
Replies: 4
Views: 3609

merge/average multiple layers weighted by alpha

Hello everybody, hopefully I did not overlook something when browsing the forum. I aim to merge multiple layers weighted by alpha value of each pixel. What doe’s I mean? Let’s say I have 3 layers (same size) with semi transparency (alpha gradient), then the opacity should be the factor for the color...
by RoadRacer
2017-05-20T05:25:02-07:00
Forum: Bugs
Topic: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows
Replies: 22
Views: 20670

Re: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows

The "..." are some Imagemagick commands. Now I tryed the commandline like above in BAT and that works fine! So now I know the problem is to get the pipe-symbol "|" into the IM-commandline using PowerShell. Thank's Snigbo! currently I do it this way: $Pipe = '|' convert.exe ... $P...
by RoadRacer
2017-05-20T04:22:26-07:00
Forum: Bugs
Topic: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows
Replies: 22
Views: 20670

Re: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows

OK, the last sample was strongly simplified, because I don't want to reveal to much about waht I try to develop. The following code shows the real problem. Instead of the "..." I have some process, but just without the "..." it should work, or not? convert.exe Image.png[1000x1000...
by RoadRacer
2017-05-20T04:02:19-07:00
Forum: Bugs
Topic: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows
Replies: 22
Views: 20670

Re: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows

Ah,
stupid :lol:

Code: Select all

convert.exe  @List.txt  -normalize  -evaluate-sequence  mean  Out.png
works
by RoadRacer
2017-05-20T03:52:46-07:00
Forum: Bugs
Topic: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows
Replies: 22
Views: 20670

Re: convert +append from jpg to pdf -> pdf got too high / ImageMagick 7.0.5-0 Q16 x64 Windows

Hy together How does the pipe works in PowerShell? I tryed the following (with a list of images), but it doesn't works: convert.exe @List.txt -normalize miff:- | convert.exe miff:- -evaluate-sequence mean PipeList.png what works is the following, but it takes a lot of time writing all images tempora...