I want to use the ‘>’ option for resizing images, but it doesn’t work with PHP.
It should do this: ImageMagick shrink
But it does nothing.
Here’s my code:
exec($P_IMAGEMAGICK."convert input.jpg -resize x500\> output.jpg");
I want my pics always to have an height of 500px but not if they are smaller/equal than 500px. Ya, and the pics should resize proportionally.
OK. I found the solution on my own. it’s not logical but it works now:
WITHOUT THE:
\THX to all.