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
Ryan Hoover44Founder, Product Hunt · Written
CommentsTweet
1
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