Search found 9 matches

by raabik
2019-05-14T14:38:33-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Re: Join Commands.

Yes this new ones works, thanks. so which one should I use in my application? which one is better? I mean Yours produce two more images, but deletes only 1, mine produces only one final. so i is my better?
by raabik
2019-05-14T11:26:19-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Re: Join Commands.

thanks fmw42, for Your reply, but this is not using "y.png"(Yellow). I mean the result is only black and blue. https://i.ibb.co/r3W0f1f/final4.png For now I have: convert "b.png" "y.png" "p4.png" \ \( -clone 2 -negate \) \ \( -clone 0,2 -compose Multiply -comp...
by raabik
2019-05-14T10:44:55-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Re: Join Commands.

thanks, now it works 100%! Great Forum!

convert "b.png" "y.png" "p4.png" \
\( -clone 2 -negate \) \
\( -clone 0,2 -compose Multiply -composite \) \
\( -clone 1,3 -compose Multiply -composite \) \
\( -clone 4,5 -compose Plus -composite \) \
-delete 0-5 final99.png
by raabik
2019-05-14T10:44:31-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Re: Join Commands.

.
by raabik
2019-05-14T09:45:42-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Re: Join Commands.

there is no more error with "\", thanks.

but it produces 9 images(final33-0 to 9) and none of them is like my wanted result. what can I do now ?
by raabik
2019-05-14T09:14:40-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Re: Join Commands.

https://i.ibb.co/Wc0P92h/B.png <- B image https://i.ibb.co/JvYYkw6/Y.png <- Y image https://i.ibb.co/2t0M5t0/p4.png <- p4 image (grayscale mask) https://i.ibb.co/NTz7jkr/final.png <- Wanted Result I tried changing the order and removed before final "/", but I don't know if I understood it ...
by raabik
2019-05-14T08:58:55-07:00
Forum: Users
Topic: -compose Multiply not wroking with RGBA files
Replies: 3
Views: 6564

Re: -compose Multiply not wroking with RGBA files

thanks for the answer, I somehow fixed that issue by using instead of the RGBA mask only an Grayscale mask, it than multiplies per channel as imo it should always.
by raabik
2019-05-14T08:54:03-07:00
Forum: Users
Topic: Join Commands.
Replies: 13
Views: 7068

Join Commands.

I have this command's: composite -compose Multiply "b.png" "p4.png" "p0.png" composite -compose Multiply "y.png" -negate "p4.png" "p1.png" composite -compose Plus "p0.png" "p1.png" "final.png" used one after on...
by raabik
2019-04-11T13:10:04-07:00
Forum: Users
Topic: -compose Multiply not wroking with RGBA files
Replies: 3
Views: 6564

-compose Multiply not wroking with RGBA files

I was trying to use: magick composite "pattern.png" -compose Multiply "green.png" "mrp3.png" what is wrong for RGB channels, only alpha channel has correct A amount, than I tested if it would work for only grayscale and for only one channel( R ) and it worked, as expect...