Code to Image
Turn code snippets into beautiful images with syntax highlighting and macOS-style window chrome. Choose from themes (Dark, Monokai, GitHub Light), set padding, font size, and language for syntax highlighting. Download as PNG. Perfect for sharing code on social media and documentation.
Code
function fibonacci(n) {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
console.log(fibonacci(10)); // 55