DevTools

Code Image Generator

Turn code into elegant images with syntax highlighting, custom themes and gradient backgrounds. Support for JavaScript, Python, PHP, Java and more languages.

Code Editor
32px
12px
14px
20%
60%
Preview da Imagem
index.js
                                        import React, { useState } from 'react'

const Counter = () => {
  const [count, setCount] = useState(0)

  return (
    <div className="counter">
      <h1>Count: {count}</h1>
      <button onClick={() => setCount(count + 1)}>
        Increment
      </button>
    </div>
  )
}

export default Counter