I'm using some php software on a site, which only allows me enter Imagemagick commands that are used together with convert.
So if all convert line for cropping thumbnails would look like (example 1):
Code: Select all
convert -thumbnail 250x250 -enhance -filter Blackman -modulate 105,102,100 -sharpen 1x1 -quality 90 -strip
Code: Select all
-enhance -filter Blackman -modulate 105,102,100 -sharpen 1x1 -quality 90 -strip
Is it possible for me with my limitations to use layers to add one layer with 50% enhance on top? If yes, could you please help me with the command line that could be used inside of my example 2 line?
Thanks a lot.