• Find something interesting and Exam it

Conver PNG to JPG by Ubuntu

It is a sample way to do this

  1. Install the required package by running below command in terminal
    sudo apt install imagemagick
  2. Convert an .png to .jpg with below command
    sudo convert name.png name.jpg
  3. To convert all PNG files into JPEG file with below command
    sudo mogrify -format jpg *.png

コメントを残す