Skip to content

Instantly share code, notes, and snippets.

@matheustguimaraes
Last active January 17, 2019 17:54
Show Gist options
  • Save matheustguimaraes/c5aac049f18145cea4e1b054580389bb to your computer and use it in GitHub Desktop.
Save matheustguimaraes/c5aac049f18145cea4e1b054580389bb to your computer and use it in GitHub Desktop.
Convert .raw image in other image formats

Convert .raw image in other image formats

Install ImageMagick

sudo apt-get update
sudo apt-get install imagemagick

Convert the .raw image in other formats

Using the following command, the-old-image.raw will become the-new-image.jpeg

convert -depth 8 -interlace plane -size 768x576 rgb:the-old-image.raw the-new-image.jpeg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment