Click "Add Images" below or drag & drop here
PNG · JPG · GIF · WebP · BMP · Transparency preserved
PNG · JPG · GIF · WebP · BMP · Transparency preserved
combines multiple small images — icons, sprites, tiles, UI elements — into a single optimized PNG called a sprite sheet. This reduces load times and draw calls in games and web apps, since one large image is far faster to fetch and manage than hundreds of small ones.
• MaxRects is almost always more efficient than Guillotine — use Guillotine only when packing thousands of sprites and speed matters more than size.
• Power of Two is recommended for game engine compatibility — most GPUs handle POT textures more efficiently.
• Padding (1–2px) prevents texture bleeding when sprites are rendered at sub-pixel positions or with bilinear filtering.