I need to resize a lot of images so I'm wanting to use the imagemagick command line, previously I've just used a website to do it for me (resizeimage.net). Problem is, the resulting image from imagemagick is significantly larger than if I use the site mentioned above:
Code: Select all
magick in.jpg -strip -quality 75 -interlace JPEG -resize x500 out.jpg
This is just one example using the source image (https://steamcdn-a.akamaihd.net/steam/a ... 0x1080.jpg), in other cases the difference can be up to 3 times as large.
I've messed around with -sampling-factor and adding a tiny -gaussian-blur but even then it's still > 59.2kb and at a worse quality than the one the website produces.
Are there extra options I should be passing the imagemagick to reduce the file size further? Thanks in advance.