372

I would like to know how to resize images in Ubuntu. What is the easiest tool to do so?

karel
  • 114,770
myusuf3
  • 34,189

14 Answers14

424

First, install ImageMagick via:

sudo apt-get install imagemagick

Then, open a terminal and run this command:

convert -resize 20% source.png dest.jpg

It will reduce the size to 20%, not by 20%.
The resulting image will be much smaller, 20% of the former size, and not 20% smaller than before.

You can also specify the size in pixels:

convert -resize 1024X768 source.png dest.jpg

You can also use: mogrify command-line tool from the same package.

aneeshep
  • 30,321
  • 6
    the command reduces the size to 50%, not by 50%. – Matthias Weiler Nov 15 '17 at 17:06
  • @MatthiasWeiler those are identical, not sure what you mean – Alexander Mills Jan 01 '18 at 00:08
  • 13
    They are only identical for the special case of 50%. -resize 10% makes your image 90% smaller. – Matthias Weiler Jan 10 '18 at 15:08
  • if you get an error "no images defined.." it is probably because you did not define destination image... e.g. in the above example, dest.jpg is a must :) – Ramesh Pareek Jan 11 '18 at 03:07
  • you talk about mogrify too; here the differences: https://deparkes.co.uk/2015/03/16/useful-imagemagick-commands/ – mattia.b89 Jan 11 '19 at 18:23
  • I threw together a small script around ImageMagick "convert" to handle the boring stuff about source and target directories in case one wants to convert many images: https://gist.github.com/dtonhofer/6c44186d65d3b15784b64096e60195a0 – David Tonhofer Jul 03 '19 at 16:10
  • re: batch processing (1) https://unix.stackexchange.com/a/516440 (2) http://www.imagemagick.org/Usage/basics/#mogrify_not – michael May 19 '20 at 08:35
  • probably that should be dest.png, to match the format of the source image. – Will Nov 12 '20 at 08:15
  • mogrify overwrites the image whereas convert creates a new file. – Timo Nov 28 '20 at 19:33
  • Better compressed result is with optipng ref – Nam G VU Nov 10 '22 at 08:21
  • Looks like it defaults to 80% compression (precision 8) -- https://stackoverflow.com/questions/2024947/is-it-possible-to-tell-the-quality-level-of-a-jpeg In my opinion, if quality really matters, then you want 90%, but 80% should be enough for most purposes. – PJ Brunet May 17 '23 at 15:20
213

nautilus-image-converter is a nautilus extension to mass resize or rotate images. To install nautilus-image-converter in all currently supported versions of Ubuntu open the terminal and type:

sudo apt install nautilus-image-converter

It adds two context menu items in nautlius so you can right-click and choose "Resize Image". (The other is "Rotate Image").

You can do a whole directory of images in one go if you like and you don't even have to open up an application to do so.

You need to restart your nautilus to see new context menus, run nautilus -q and then click the Home folder icon to reload nautilus with the new plug-in.

karel
  • 114,770
165
sudo apt-get install imagemagick

The command mogrify overwrites the original files with the resized images:

mogrify -resize 50% *.png      # keep image aspect ratio
mogrify -resize 320x240 *.png  # keep image aspect ratio
mogrify -resize 320x240! *.png # don't keep image aspect ratio
mogrify -resize x240 *.png     # don't keep image aspect ratio
mogrify -resize 320x *.png     # don't keep image aspect ratio

Note: You can add -auto-orient to automatically orient converted images.

kenorb
  • 10,347
Eric Johnson
  • 6,235
23

If you're just doing a couple of images, most image editors in Ubuntu (Gimp, F-Spot, etc) will let you do a basic resize.

If you want to edit tens, hundreds or thousands of images, I prefer Phatch. Phatch is a GUI-based batch photo editor that will let you perform a whole load of transformations on images. sudo apt-get install phatch

ImageMagick is good but it's a bit tedious if you don't know the setting names for things. You can very quickly learn Phatch by clicking around.

Oli
  • 293,335
  • F-Spot does resize? Where? – Martin Jul 23 '13 at 11:17
  • While installing phatch my Chrome Browser got closed and I was unable to relaunch it, I had to remove phatch and other packages it installed to get chrome back to working state. – mallaudin Apr 25 '17 at 19:12
17

ImageMagick is the package you want. It contains a number of useful command line tools for this very purpose.

Here's a simple tutorial explaining how to batch resize images:-

mogrify -resize 320x240 *.jpg

After this command is completed, all of the images will be replaced with resized version of themselves. Notice that in an effort to preserve the image aspect ratio, mogrify may not be produce images that are exactly 320x240. To force this to happen, modify the original command to by placing an exclamation point at the end of the desired resolution:

mogrify -resize 320x240! *.jpg
kenorb
  • 10,347
popey
  • 23,667
15

No need to install any new software just do this

convert -resize 50% myfigure.png myfigure.jpg

or

convert myfigure.png -resize 200x100 myfigure.jpg
Pawan
  • 469
11

At the moment nautilus-image-converter does not work in Ubuntu 13.10. Therefore I use imagemagick on the command line, which is very good workaround (at least for me).

sudo apt-get install imagemagick

Keep in mind the difference between these imagemagick tools:

  • Mogrify does processing on the same image, it reads file modify file and writes the output to the same file.
  • Convert is meant to work on separate images, reads file and modify and write to different file/format. You can also use convert command to use output file same as input file.

I often use mogrify to simply resize multiple images and overwrite the original files. I. e. this command would scale down the dimension of all JPG files to 40% of the original dimension:

mogrify -verbose -resize '40%' *.JPG
malisokan
  • 1,007
  • 1
  • 13
  • 23
8

GIMP is probably the easiest way, since it has a fairly simple UI for such common tasks. All you have to do is open up your image and go to Image → Image Size and then change accordingly. There are ways to do batch resizing using the GIMP as well, but I don't know them by heart.

Tommy Brunn
  • 9,751
8

Install gthumb. Simple and easy for basic image handling and editing functions - viewer, resizing, cropping, rotate, flip, grayscale, etc with options to save in JPEG, PNG, TIFF, TGA formats.

To install gthumb:

  • Open your terminal
  • Type sudo apt-get install gthumb
  • Accept the changes
AnotherKiwiGuy
  • 4,370
  • 1
  • 21
  • 38
Parto
  • 15,325
  • 24
  • 86
  • 117
7

You can also use the ubiquitous ffmpeg (or avconv) tool to resize images:

ffmpeg -i image.jpg -s 4096x2048 image-resized.jpg

And if you want really fast JPEG image resizing - try epeg (as mentioned here and there) - which needs to be built from source.

Pierz
  • 3,063
  • 1
  • 25
  • 15
4

For GUI, Phatch "one click is worth thousand photos" is the best for such quick job. It is already in Ubuntu repository. It has plenty of actions and options as imagemagick.

sudo apt-get install phatch

Update:

Phatch project is DISCONTINUED unfortunately, last code commit was on 2011-01-24. It is on LP/Launchpad (Frameworks: Python2/PyGTK2.8)

user.dz
  • 48,105
4

There is a good multiplatform tool called XnConvert. Combine and choose between more than 80 different operations. The installation is simple through deb. file from the official website.

It is free but not opensource, perhaps that's just the beauty of it.

enter image description here

VRR
  • 1,270
1

open the image in ImageMagick.

  1. click on the image command box will be open.
  2. view->resize enter the pixel you want. click on resize button.
  3. File-> save, enter the name. click on Format button choose the format you want and click select button.
  4. click on save button.

another option is select view -> original image and Drag the corners of the image to resize it. select File -> save.

muru
  • 197,895
  • 55
  • 485
  • 740
Deepa
  • 11
1

I use Pimagizer. It works great and it is the easiest application I have used. Tested on Ubuntu 14.04, 15.04, 15.10.

sudo add-apt-repository ppa:vfrico/stable
sudo apt-get update
sudo apt-get install pimagizer

See : https://launchpad.net/pimagizer/ for more infos.

hg8
  • 13,462