Skip to content

Instantly share code, notes, and snippets.

@obeninteractive
Last active March 10, 2020 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obeninteractive/f93ea66b69d93bd5b55402d8b4c68585 to your computer and use it in GitHub Desktop.
Save obeninteractive/f93ea66b69d93bd5b55402d8b4c68585 to your computer and use it in GitHub Desktop.
convert png to jpg (alpha remove)
//please open terminal (Ctl + Alt + T) & put this command line
convert file.png -background white -alpha remove file.jpg
@obeninteractive
Copy link
Author

// compress file
jpegoptim --size=850k file.jpg

@obeninteractive
Copy link
Author

// convert .jpg to .png file
mogrify -format file.jpg file.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment