Code Screenshot
Turn source code into a syntax-highlighted image on a gradient or solid backdrop.
No watermarkFree & unlimited
Code
Language
Theme
Background
Export
Preview
123456function fibonacci(n) {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
console.log(fibonacci(10));All processing happens in your browser. No data is sent to any server.
About this tool
- 1
Paste code
Enter or paste the code you want to capture.
- 2
Choose language
Select the programming language for syntax highlighting.
- 3
Customize theme
Pick a color theme, font size, and padding.
- 4
Export
Download as a beautiful code image.
- Dark themes (Dracula, One Dark) tend to look best for sharing.
- Keep code snippets short (10-30 lines) for the most readable screenshots.
- Add extra padding for cleaner, more professional-looking images.
- Syntax highlighting
- Multiple themes
- Language detection
- Custom fonts
- PNG export
- Create beautiful code images for social media.
- Share code snippets in presentations.
- Document code examples for blog posts.