- March 16, 2023
- 12:42 pm
- No Comments
How to View WebP Images on Ubuntu
WebP is an image format developed by Google that provides superior compression and faster loading times compared to other image formats. However, not all image viewers support WebP images out of the box.
Using Eye of GNOME
To enable support for WebP images on the default image viewer on Ubuntu, which is Eye of GNOME (also known as eog), you can follow these steps:
Step 1: Open Terminal
Open the terminal by pressing Ctrl + Alt + T on your keyboard or by searching for it in the applications menu.
Step 2: Install WebP Plugin
To install the WebP plugin for eog and its dependencies, run:
sudo apt install eog-plugin-webp
Step 3: Restart eog
Restart eog to load the new plugin. You can do this by closing and reopening the application or by running:
eog –quit
eog &
Step 4: Open WebP Image
Open a WebP image with eog. You can do this by right-clicking on the image file and selecting “Open With” -> “Eye of GNOME” from the context menu. Alternatively, you can open eog and use the Open dialog to navigate to the WebP image file.
The WebP image should now be displayed in eog. You can zoom in and out, rotate the image, and perform other actions as you would with any other image format supported by eog.
Using dwebp
dwebp is a command-line tool for decoding WebP images. It is included in the webp package and can be used on Linux and other operating systems. The dwebp tool converts a WebP image into a PNG, PPM or PAM image format, which can be viewed with any image viewer that supports the chosen output format. The name dwebp stands for decode WebP.
The dwebp tool is useful for viewing and converting WebP images on systems that do not have native support for the WebP format. It can also be used to convert WebP images to other formats for compatibility with different software applications.
Step 1: Open Terminal
Open the terminal by pressing Ctrl + Alt + T on your keyboard or by searching for it in the applications menu.
Step 2: Install WebP
To install the webp package along with its dependencies, run:
sudo apt install webp
Step 3: Navigate to WebP Directory
Navigate to the directory where the WebP image is located using the cd command. For example, if the image is located in the Pictures directory, you can navigate to it by running:
cd ~/Pictures
Step 4: View WebP Image
View the WebP image using the dwebp command. For example, to view an image named example.webp, run:
dwebp example.webp -o example.png
This command will convert the WebP image to a PNG format and save it as example.png in the same directory.
Note: You can also use the cwebp command to convert other image formats to WebP format. For example, to convert a PNG image to WebP format, run:
cwebp example.png -o example.webp
Conclusion
By following these steps, you can easily view WebP images on your Ubuntu system by using the WebP plugin for eog or the dwebp command from the webp package.
Please Leave Feedback and Corrections in the Comments
More to Explore
How to Access Google Drive on Ubuntu
Google Drive has become an essential tool for many users, allowing them to store and access files in the cloud and collaborate with others.
10 Linux Terms You Must Know
When getting started with Linux, you’ll encounter a variety of unique terms and concepts that are crucial to understanding the Linux ecosystem.
How to Check Hardware Information on Linux
Getting detailed information about your Linux system’s hardware is essential for troubleshooting, optimizing performance, and upgrading components.
How to Run Android on Ubuntu
Running Android on Linux can be a useful way to access Android apps and games on your Linux machine or test and develop Android applications.
How to Listen to Internet Radio on Linux
Internet radio offers a vast array of music, news, and talk stations from around the world.
How to Recover Deleted Files on Linux
Accidentally deleting important files is a common issue that many users face.
How to Access a Remote Linux Machine From Windows
Accessing a remote Linux machine from a Windows computer can be a useful skill for various tasks.
7 Mistakes New Linux Users Make
Linux is a powerful and versatile operating system that offers a wealth of benefits, including increased security, flexibility, and customization.
How to Change HiDPI Scaling on Linux
HiDPI (High Dots Per Inch) displays have become more common in recent years, offering higher resolution and sharper images.