Search found 3 matches

by mortgage
2015-06-20T07:48:50-07:00
Forum: Users
Topic: Change opacity for photoshop generated png
Replies: 2
Views: 1744

Re: Change opacity for photoshop generated png

I guess '-evaluate set 75%' is applying only to alpha channel because of '-channel A'. Why not?
How can I 'multiply opacity by 0.75'? Something like this?

Code: Select all

-channel A -evaluate multiply 0.75 +channel
Is it equivalent for 'normal' blend mode of Photoshop? I need such mode.
by mortgage
2015-06-20T07:19:57-07:00
Forum: Users
Topic: Change opacity for photoshop generated png
Replies: 2
Views: 1744

Change opacity for photoshop generated png

I'm trying to compose two images after changing opacity for one of them (created by Photoshop CS 5.5). But result is strange. My file has transparent background. I saved it as 'png-24'. Note appeared white background. Please, help — what am I doing wrong? convert logo: \( water3.png -alpha on - ...
by mortgage
2015-06-16T09:21:40-07:00
Forum: Users
Topic: A substitution in bash script
Replies: 2
Views: 2331

A substitution in bash script

I'm trying to store -draw option into a variable in my bash script. Code: #!/bin/bash # this check is just an example of usage if [ 1 -eq 1 ]; then text="-draw \"fill #ffffff text 0,9 'Hello world!'\"" else text="" fi echo $text echo '= = =' convert logo: $text -verbose result.png echo ...