Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
ScreenshotFeatures
ModGPL-3.0-or-later

ScreenshotFeatures

QOL for taking screenshots (especially with shaders)

462
Downloads
5
Followers
6 months ago
Updated
📦
3
Versions
utilityfabric
Download Latestv1.6.1View on Modrinth

📖About ScreenshotFeatures

Screenshot Features

mod functionality overview

  • manual dof control without reloading shaders
  • clientside time and weather
  • saves metadata to screenshots
    • shaderpack settings
    • shaderpack hash and git status
    • location, time, fov, etc
  • drag and drop appropriately tagged screenshots into the iris shaderpack list menu to load (the menu where you can see all your shaderpacks, not in the shaderpack settings!)
  • customizable template for screenshot names
  • choose where screenshots are stored
  • view metadata of old screenshots
  • metadata saving compatible with fabrishot
  • modifying orthocamera settings

demo video (in chinese): https://www.bilibili.com/video/BV1MAYqzQEAp/

much of the screenshot tagging code from screenshot settings by fmbellomy, (originally licensed under Apache-2.0, the original license can be found in ORIGINAL_LICENSE)

fork additional features

dof control

weather/precipitation control

adds capability to save more shaderpack info to current screenshots

supports drag and dropping screenshots with the settings metadata and shader metadata stored inside onto shaderpacks screen

saves md5, sha256 and xxh32 hashes for enabled shader, git commit and diffs if it's a git repo

equivalent hashing of the folders in bash

cat $(find shaders -type f | sort) | xxh32sum

zip hashes are just hashes of the zip file for convenience

!!!nothing shaderpack related will work without Iris installed!!!!

support for editing OrthoCamera configuration with hotkeys

readme from the original screenshot settings:

ScreenshotSettings is a mod for Quilt/Fabric that allows you to configure
various things about in-game screenshots.

"Various Things" includes choosing where screenshots are saved to on-disk, as well as how you'd like them to be named.
Relevant information to a screenshot can be optionally embedded into the filename or metadata, such as player position,
rotation, active texture or shader packs, the name of the world or server the screenshot was taken on, and if on
singleplayer, the world seed.

This should allow for convenient sorting/searching through screenshots by relevant metadata, and is also nice just for
making your screenshots more accessible. (Seriously, I hate having to go into my AppData folder when I'm playing on
Windows. It's terribly annoying.)

The mod also adds a new command:

/screenshot <optional-filename>

and an alias that does the same thing:

/ss <optional-filename>

If you use these commands and provide a filename, they will not follow the naming scheme you may have set,
and they do not work with templates.
(This means you can't do something like /ss <world>/cool_screenshot_name)!

Things you can do with the custom File Naming system.

The file naming system is somewhat bare bones at the moment, only supporting 8 templates.

  • <datetime>
    • Minecraft's default screenshot naming format.
  • <world>
    • The name of the world in Single Player, and the name of the server in Multiplayer.
  • <version>
    • The version of Minecraft the screenshot was taken on. (Ex. 1.19.2)
  • <x>, <y>, and <z>
    • The respective coordinates of where the screenshot was taken.
  • <shader>
    • The active Shader pack. (requires Iris Shaders)
  • <player>
    • Your Minecraft username. Useful for if you want to put screenshots from multiple accounts in the same place but
      keep them organized. (Not entirely sure why you would want to do that, but the point of this mod is to give you
      options, damnit!)

Automatically Creating Subdirectories

By including a / in your naming scheme, you can create a directory structure based on the templates above.

You can automatically organize your screenshots into folders according to what world/server they were taken on, or what
shaderpack was in use at the time of the screenshot.

The naming scheme I personally use is <world>/<datetime> because it makes it easier to go through my screenshots based
on where I took them, and still prevents name collisions.

This results in a directory structure like the following

~/Pictures/minecraft
----------------------------------------------------------------
    ├── annier server
    │   ├── 2022-11-29_19.42.52.png
    │   ├── 2022-11-29_19.45.30.png
    │   ├── 2022-11-30_14.08.32.png
    │   ├── 2022-11-30_14.21.56.png
    │   ├── 2022-11-30_17.11.26.png
    │   ├── 2022-11-30_21.07.27.png
    │   ├── 2022-11-30_21.07.53.png
    │   ├── 2022-11-30_21.35.16.png
    │   ├── 2022-11-30_21.39.00.png
    │   ├── 2022-11-30_21.39.20.png
    │   ├── 2022-11-30_21.46.19.png
    │   └── 2022-11-30_23.42.15.png
    ├── Example Server
    │   ├── 2022-11-28_19.42.15.png
    │   └── 2022-11-28_19.30.06.png
    └── Quilt Test
        └── 2022-11-28_18.36.38.png

If you, however, were to have many servers saved as "Minecraft Server" and many singleplayer worlds named "New World",
this wouldn't do much to help you.

A note on PNG Metadata

The Windows Explorer cannot display the metadata included by this mod. You will need to get a dedicated program for
windows to be able to see it.

Viewing Metadata: CLI

If you're comfortable using a command-line tool, you can use ImageMagick'
s identify --verbose command to see it.

ImageMagick has releases for Windows, Mac, and Linux, and if you're on Linux chances are you already have it installed
anyway.

This is the way I'd recommend, because it allows you to set up scripts for searching through or organizing your
screenshots, but if all you're interested in is viewing metadata, perhaps you'd be more interested in a GUI.

This actually works with WSL.

Because Minecraft uses URIs to resolve file paths on Windows, you can actually use the path to an installed WSL
distribution as a valid save location to make manipulating your screenshot collection via WSL more convenient.

Using WSL as a save destination

Viewing Metadata: GUI

If you aren't comfortable using a command-line tool... the best way I've found (on Windows, at least)
is exiftoolgui.

ExifToolGUI in action.

It requires that you have the base exiftool installed, but the "default" installation process
for it isn't very user-friendly.
For installing the base tool, I recommend Oliver
Betz's exiftool for windows.
It comes packaged with a GUI installer and is just generally more convenient.

Once installed, you'll want to navigate to your screenshot and view the All tab to see all of its metadata.
The metadata attached by this mod should appear at the bottom, as it does in the screenshot above.

👥 Team & Contributors

kidofcubes
kidofcubesOwner

⚙️ Compatibility

Environment
💻 Client-side
Loaders
fabric
Minecraft Versions
1.21.10

🔗 Links

Modrinth Page