Layered Enhancing in convert command
Posted: 2012-08-01T06:34:43-07:00
Hello.
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):
What I am allowed to enter into the IM commands field is (example 2):
It is not enough of one -enhance command to use, but two of them is too much.
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.
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.