Bulk Maze Generator
Generate print-ready Maze puzzle books instantly. Define your volume, grid size, and format, and the engine will batch-process them directly in your browser.
Algorithmic Standards
Recursive Backtracker
The mazes are generated using a Depth-First Search (DFS) algorithm. This creates "perfect" mazes—meaning there are no closed loops and exactly one path connects the entrance to the exit.
Native SVG Construction
Instead of building heavy DOM grids, the engine mathematically maps the walls and path solutions into a raw SVG string. This ensures the 1080x1080px exports are pixel-perfect and free from rendering glitches.
Breadth-First Solving
When the "Include Solutions" parameter is active, the engine runs a Breadth-First Search (BFS) to discover the absolute shortest path and overlays an opacity-controlled solution line before exporting the final image.