4

I have multiple screenshots in PNG format to print but cannot get them converted to JPG on my Galaxy S6 phone.

How can I convert multiple PNG screenshots to JPG photos so I can print them on a photo website?

Zanna
  • 70,465

1 Answers1

4

imagemagick

You can use mogrify (or convert) from imagemagick

To install it, use the following command:

sudo apt install imagemagick 

Then go to the folder with the PNGs and:

mogrify -format jpg *.png

Notes

Pablo Bianchi
  • 15,657