I'm using the command below to overlay an image (../esrgan/{1}
) with another image ({1}
) that I scale to 400% and then apply lighten composition to.
parallel --bar --xapply convert {1} -filter Lanczos -resize 400% ../esrgan/{1} +swap -compose Lighten -composite ../esrgan/{1} ::: *.png
On top of that, I also want to set the opacity of the top layer ({1}
) to 75%. How do I do that?