Know an easy way to make multiple images low resolution so people are less likely to steal them?

I am looking for program or site that can take pictures off of my website or from my folders to automate the quality of the image. Basically make them a certain low resolution, so I don't have to do this manually. Thank you for your help. :)
Shannon RaeUX & Product Designer · Asked

2 recommended

1
imgix

Your images, processed on the fly, delivered fast.

Ryan Hoover44Founder, Product Hunt · Written
We use Imgix at Product Hunt to reduce the size and quality of images to improve performance. Once it's up and running, you can request multiple versions of the same image in a different size or with a blur effect by modifying the URL parameters. It's slick. 👍🏼
CommentsTweet
1
ImageMagick

Mark B.Product Manager, CJ Affiliate · Written
Geeky? Yes. Easy? Also yes! The program itself is extremely powerful, but if you are on a *nix based system, it's as easy as 'convert -resize x% -quality yy source.png target.jpg' to scale and set the jpg quality/compression level for an image. The -resize flag also accepts geometry (e.g. 500x500). Batch operations are simple at the command line (e.g. 'for img in *.png; do convert -resize x% -quality yy $img ${img%.png}.jpg}; done')
CommentsTweet