Renamifier is a tool to preview and rename digital files.
I created Renamifier to more easily organize files with automatically-generated names like scanned documents and digital photos. It is intended to "do one thing and do it well" rather than to replace full-featured dedicated viewers like Acrobat Reader.
Downloads are available on the project's GitHub releases page.
Please be aware that Renamifier is a low-priority personal project; development does not follow a set plan or schedule, and is largely driven by my own needs. Issues and pull requests are therefore closed since I can't promise they'll be responded to in any reasonable amount of time.
Renamifier has built-in support for the following formats:
| Format | Extensions | Notes |
|---|---|---|
| Plain text | Various | Includes files with an explicit .txt extension, as well as other plain-text formats like source code. |
.pdf |
||
| Bitmap image | .bmp |
|
| GIF | .gif |
Animations are not currently supported. |
| JPEG | .jpe, .jpg, .jpeg |
|
| PNG | .png |
|
| Netpbm | .pbm, .pgm, .pnm, .ppm |
|
| X11 bitmap | .xbm |
|
| X11 pixmap | .xpm |
Renamifier can also display these formats if additional software is installed:
| Format | Extensions | Requirements | Notes |
|---|---|---|---|
| Postscript | .ps |
Ghostscript | |
| XPS | .xps |
GhostXPS | OpenXPS has not been tested. |
All other file types are displayed as a hex dump, which may or may not contain anything meaningful, but at least it looks cool.
To build Renamifier from source, you will need:
Basic build instructions:
mkdir /tmp/renamifier-build
cd /tmp/renamifier-build
cmake /path/to/renamifier/sources
make && make test
On Windows, you can use MSYS2. Replace the third line above with:
cmake -G 'MSYS Makefiles' /path/to/renamifier/sources
The Windows installers are built with NSIS. See the comments at the start of winsetup.nsi for details.
