Hello Team,
Can anyone please let me know how can I use the layers as "DARKEN" and Opacity as 30% for any image from Imagick functions?
NOTE: Need to change the above two effects for a single image only. 
Please see the attached image from photoshop for reference.
			
			
									
						
										
						Darken with Opacity Effects for Single Image
- 
				snibgo
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Darken with Opacity Effects for Single Image
I don't use PS, but it's probably something like this (Windows BAT syntax):
			
			
									
						
							Code: Select all
convert ^
  inA.png ^
  ( inB.png -channel A -evaluate Multiply 0.3 +channel ) ^
  -compose Darken -composite ^
  out.png
snibgo's IM pages: im.snibgo.com