←back to thread

2039 points Gadiguibou | 1 comments | | HN request time: 0.257s | source
Show context
reacharavindh ◴[] No.36492795[source]
Is there any easy shortcut to resizing an image by percentage or fitting to a specific size?

Many a times, a website says "file needs to be no bigger than 2 MB", and I need to scramble with Preview app to resize teh app until it falls below that limit. A cli tool for that action would be very handy.

replies(2): >>36492848 #>>36493744 #
1. frankjr ◴[] No.36493744[source]
You can use ImageMagick's `convert`.

  convert original.jpg -define jpeg:extent=2MB output.jpg
The result will be around 2MB in size (in both directions).