I don’t know what a .webp file is but I don’t like it. They’re like a filthy prank version of the image/gif you’re looking for. They make you jump through all these hoops to find the original versions of the files that you can actually do anything with.

Edit: honestly I assumed it had something to do with Google protecting themselves from image piracy shit

  • Display Name
    link
    fedilink
    162 years ago

    Magick is way faster to learn than opening gimp once.

    convert in.webp out.png

    • @[email protected]
      link
      fedilink
      1
      edit-2
      2 years ago

      The webp package does it too. You can make a script and add it to your right click “open with” options

      #!/bin/bash
      # Convert .webp to .png
      outfile="${1%.webp}.png"
      dwebp $1 -o $outfile
      

      if you want to use Magick, replace the last line with

      convert $1 $outfile