Texture Atlas Extractor May 2026
A texture atlas extractor (also called a sprite sheet unpacker) is a tool used to reverse the process of texture packing. It identifies individual sub-images (sprites) within a single large image—the "atlas"—and saves them as separate files. Core Functionality
- JSON or XML: Modern engines (Unity, Unreal, Cocos2d) export a data file alongside the PNG.
- Hardcoded offsets: Retro games often store sprite coordinates directly in the game code or a binary table.
Without an extractor, you have two problems: texture atlas extractor
While a generator packs individual images into a single sheet, a texture atlas extractor does the opposite: it "unpacks" or "rips" those individual sprites back into separate files. This is crucial for: A texture atlas extractor (also called a sprite
While primarily used for creating atlases, it includes features for unpacking and viewing them. JSON or XML: Modern engines (Unity, Unreal, Cocos2d)
Benefits:
- How it works: The software analyzes transparency pixels. It looks for blocks of non-transparent pixels and automatically draws a box around them to guess the sprite boundaries.
- Pros: Works without a data file.
- Cons: It destroys the sprite names (you will get files named
sprite_001.pnginstead ofhero_run.png); it may merge sprites that are too close together or slice them incorrectly.