The Nautilus image converter was a handy tool for Fedora users, allowing quick image resizing and format conversion directly within the Nautilus file manager. However, as technology evolves, some tools are retired. If you're upgrading from Fedora 36 to Fedora 37 or later, you might be looking for a replacement. Don't worry; there are several excellent alternatives to fill the void. This guide explores some options.
Nautilus image converter provided a convenient way to:
Losing this functionality can disrupt your workflow. Thankfully, robust alternatives exist.
Here are a few recommended replacements, catering to different user needs:
ImageMagick: This command-line tool is a powerhouse for image manipulation. While it lacks a graphical interface, its power and flexibility are unmatched.
sudo dnf install ImageMagick
convert input.jpg -resize 50% output.jpg
. This resizes input.jpg
to 50% of its original size and saves it as output.jpg
. For more advanced options, refer to the ImageMagick documentation.GIMP (GNU Image Manipulation Program): A full-fledged image editor, GIMP offers resizing and format conversion capabilities, and much more. While it's more comprehensive than the Nautilus extension, it is a solid option for users looking for advanced features.
sudo dnf install gimp
Image > Scale Image
to resize, and then File > Export As
to convert to different formats. GIMP supports a wide array of formats, including JPEG, PNG, GIF, TIFF, and more.Converseen: Is a batch image converter and resizer with a graphical user interface. It supports more than 100 image formats and can resize, rotate, and rename images in batches.
sudo dnf install converseen
XnConvert: Another excellent batch image processor with a user-friendly interface. It supports various operations, including resizing, converting, adding watermarks, and applying filters.
sudo dnf install xnconvert
While Nautilus image converter offered right-click integration, you can achieve similar convenience with these alternatives:
Nautilus Scripts: Create custom scripts that use ImageMagick or other tools and add them to your Nautilus right-click menu. This requires some scripting knowledge but offers a seamless integration.
Command-Line Aliases: For ImageMagick, create aliases for frequently used commands. Add them to your .bashrc
or .zshrc
file.
Dedicated Applications: GIMP, Converseen, and XnConvert are standalone applications. Pin them to your dock or desktop for quick access.
Although the nautilus-image-converter is no longer available, Fedora users have access to a range of powerful and flexible image manipulation tools. Whether you prefer the command-line prowess of ImageMagick, the comprehensive features of GIMP, or the simplicity of Converseen or XnConvert, you'll find a suitable replacement to maintain your image processing workflow. Take some time to experiment with the alternatives and discover which best suits your needs.