Power Screenshot

Quick rating

Power Screenshot

No reviews yet

Allows you to take high resolution normal/panoramic/skybox/gif screenshots.

No Theme
No Genre
QoL & Tweaks
Client Utility
Mod Loaders
Forge
NeoForge
Minecraft
26.2

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Unsupported

About

Project Details

Type
Mod
License
GNU Lesser General Public License v3.0 or later
Latest Version
PowerScreenshot-Minecraft26.2-NeoForge-1.0.2.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

About

Description

Panoramic Screenshot Demo gif Demo

Panoramic Screenshot

Discord GitHub License

A client mod, allows you to take high resolution normal/panoramic/skybox screenshots.

Use /screenshot to take a specified type of screenshot. Also supports set a shortcut key to take panoramic or skybox screenshots.

Feature Details

/screenshot normal <width> <height>

Take a normal screenshot with the specified resolution. Max to 16384 * 16384.

/screenshot panoramic <mode>

Shoter form of the command below, will use default parameters. This is what the shortcut key actually calls. Default parameters are:

  • height: your current screen height
  • fov: your current FOV
  • yaw_start: 0
  • frame_delay: 0

/screenshot panoramic <mode> <height> <fov> <yaw_start> <frame_delay>

Take a panoramic screenshot that around yourself, like the title image.

Implementation method is to rotate the perspective 360° and take screenshots repeatedly, and stitch them.

To prevent scene changes during filming, the mod will try to pause game client. Bus run /tick freeze before this is still recommended.

Parameters:

  • mode: one of FAST and PRECISE, FAST will take 360 screenshots while PRECISE take one screenshot each column of pixels. FAST mode have some flaws when fov larger than 60°. So PRECISE mode is recommended.
  • height: height of the final screenshot, in pixels, the width will be calculated by height/fov * 360.
  • fov: field of view when taking screenshots, in degrees.
  • yaw_start: the starting yaw when taking screenshots, in degrees. 0 means facing south, 90 means facing west.
  • frame_delay: delay between each screenshot, in frames.

/screenshot skybox <name> <size>

Take a skybox screenshot, which is a 6-face cubemap. Like Minecraft title screen background.

In fact you can custom title screen with those skybox screenshots.

Parameters:

  • name: the file name of screenshots, form <name>_0.png to <name>_5.png.
  • size: the width and height, in pixels.

/screenshot gif <start|end|fix_time> <frame_rate>

Record screen as gif file and save it in screenshots folder.

You can run /screenshot gif directly to record a short gif with default parameters (2 seconds, 10 fps).

Parameters:

  • start: start recording with the given frame rate, and keep recording until run /screenshot gif end.
  • end: finish the recording started by start and save it.
  • fix_time <time_second> <frame_rate>: record for a fixed duration and save automatically.
  • frame_rate: how many frames to capture each second.

Custom Title Screen Background

Custom Title Screen Background Demo

Prue Vanilla Resource Pack

Just put skybox screenshots in minecraft/textures/gui/title/background and name them panorama_0.png to panorama_5.png.

With this mod

This mod allows multiple skyboxes exist, and load one randomly at a time.

Put skybox screenshot in {namespace}/textures/gui/title/background, and create a metadata file named {name}.json in the same folder, with content like this:

{
  "name": "{name}",
  "weight": 1
}

The directory should looks like:

  \{namespace}
    \textures
      \gui
        \title
          \background
            {name}_0.png
            {name}_1.png
            {name}_2.png
            {name}_3.png
            {name}_4.png
            {name}_5.png
            {name}.json

Mod will load all metadata and pick one randomly by the weight each time.

Panoramic Screenshot Demo gif Demo

Panoramic Screenshot

Discord GitHub License

A client mod, allows you to take high resolution normal/panoramic/skybox screenshots.

Use /screenshot to take a specified type of screenshot. Also supports set a shortcut key to take panoramic or skybox screenshots.

Feature Details

/screenshot normal <width> <height>

Take a normal screenshot with the specified resolution. Max to 16384 * 16384.

/screenshot panoramic <mode>

Shoter form of the command below, will use default parameters. This is what the shortcut key actually calls. Default parameters are:

  • height: your current screen height
  • fov: your current FOV
  • yaw_start: 0
  • frame_delay: 0

/screenshot panoramic <mode> <height> <fov> <yaw_start> <frame_delay>

Take a panoramic screenshot that around yourself, like the title image.

Implementation method is to rotate the perspective 360° and take screenshots repeatedly, and stitch them.

To prevent scene changes during filming, the mod will try to pause game client. Bus run /tick freeze before this is still recommended.

Parameters:

  • mode: one of FAST and PRECISE, FAST will take 360 screenshots while PRECISE take one screenshot each column of pixels. FAST mode have some flaws when fov larger than 60°. So PRECISE mode is recommended.
  • height: height of the final screenshot, in pixels, the width will be calculated by height/fov * 360.
  • fov: field of view when taking screenshots, in degrees.
  • yaw_start: the starting yaw when taking screenshots, in degrees. 0 means facing south, 90 means facing west.
  • frame_delay: delay between each screenshot, in frames.

/screenshot skybox <name> <size>

Take a skybox screenshot, which is a 6-face cubemap. Like Minecraft title screen background.

In fact you can custom title screen with those skybox screenshots.

Parameters:

  • name: the file name of screenshots, form <name>_0.png to <name>_5.png.
  • size: the width and height, in pixels.

/screenshot gif <start|end|fix_time> <frame_rate>

Record screen as gif file and save it in screenshots folder.

You can run /screenshot gif directly to record a short gif with default parameters (2 seconds, 10 fps).

Parameters:

  • start: start recording with the given frame rate, and keep recording until run /screenshot gif end.
  • end: finish the recording started by start and save it.
  • fix_time <time_second> <frame_rate>: record for a fixed duration and save automatically.
  • frame_rate: how many frames to capture each second.

Custom Title Screen Background

Custom Title Screen Background Demo

Prue Vanilla Resource Pack

Just put skybox screenshots in minecraft/textures/gui/title/background and name them panorama_0.png to panorama_5.png.

With this mod

This mod allows multiple skyboxes exist, and load one randomly at a time.

Put skybox screenshot in {namespace}/textures/gui/title/background, and create a metadata file named {name}.json in the same folder, with content like this:

{
  "name": "{name}",
  "weight": 1
}

The directory should looks like:

  \{namespace}
    \textures
      \gui
        \title
          \background
            {name}_0.png
            {name}_1.png
            {name}_2.png
            {name}_3.png
            {name}_4.png
            {name}_5.png
            {name}.json

Mod will load all metadata and pick one randomly by the weight each time.

Screenshots

Gallery

  • Custom Title Screen Background Demo
    Custom Title Screen Background Demo
  • gif demo
    gif demo record gif
  • Panoramic Screen Demo
    Panoramic Screen Demo

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~4,000
Total Downloads
CurseForge
~1,000
Modrinth
~2,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works