PNGShot Switch
From GameBrew
More actions
| PNGShot | |
|---|---|
| General | |
| Author | J-D-K |
| Type | Sysmodules |
| Version | 2.5.1 |
| License | Mixed |
| Last Updated | 2025/11/26 |
| Links | |
| Download | |
| Website | |
| Source | |
A sysmodule that can take screenshots and save them as PNG's instead of the system's default JPEG.
Screenshots are exported to sdmc:/Nintendo/Album/PNGs/YYYY/MM/DD/YYYYMMDD_hhmmss.png when the capture button is pressed.
Features
- Captures system screenshots as lossless PNG images.
- Optional compatibility mode to allow both PNG and JPEG captures.
- Simple SD card–based configuration.
- Low-overhead sysmodule design written in pure C.
- Highly stable.
Installation
Download the latest release from the Releases.
Extract the contents of the ZIP archive to the root of your Switch’s SD card.
(Optional) To keep system JPEG captures, create an empty file named sdmc:/config/PNGShot/allow_jpegs
Changelog
v2.5.1
v2.5.0
- All code has been heavily refactored to be cleaner, modular, and easier to maintain.
- Captures are now organized in a cleaner folder structure for easier browsing:
sdmc:/Nintendo/Album/PNGs/YYYY/MM/DD/YYYYMMDD_hhmmss.png
v2.0.0
- Capture event filter, bug fixes, and improved timestamps thanks to @ppkantorski.
- Now includes VI patches to enable debug mode screen capturing thanks to @impeeza.
- Creating a file named
allow_jpegsand placing it insdmc:/conifg/PNGShotwill stop PNGShot from deleting JPEGs that are normally captured by the system.
v1.5.0
- PNGShot now uses
[album directory]/PNGsinstead ofswitch/PNGShotwhen creating screenshots.- PNGShot will try to open the album directory on your SD card first and fall back to NAND if that fails.
- This also means PNGShot no longer uses C stdio functions for file writing, instead using libnx's FS functions directly to get the job done.
- Included in this release is what I call the "experimental" build:
- This build buffers the entire raw capture after the capture button is pressed. This requires a lot more memory to be used. The experimental build uses 6MB vs the normal build's 24KB. YOU HAVE BEEN WARNED. This can cause conflicts and issues, but has the benefit of allowing normal JPEGs and video captures to function again because the capture stream is released almost immediately.
v1.0.2
- Time service is exited after libnx time is initialized and it's no longer needed anymore.
v1.0.1
- Uses new naming scheme for output.
- Updated code.
v1.0
- First Release.
Credits
Thanks to:
- HookedBehemoth for bitmap-printer and its patches.
- Impeeza for enhancing the makefile and readme to be more descriptive and easier to use. Thank you.