M BUZZ CRAZE NEWS
// news

Resize image from command line to 1024x576

By Emma Martinez

I need to convert images down to 1024x576 using the command line.

I have Gimp, VLC, and Inkscape, on Ubuntu MATE 18.04.

Thanks.

1 Answer

Imagemagick can do it. Install it with:

sudo apt install imagemagick

Resizing can be done like this:

convert -resize 1024x576 input.png output.png

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy