Image Night Vision
Turn photos into green night vision scenes — 100% in your browser.
Source
Перетащите изображение сюда
или нажмите для выбора
Options
What is the night vision effect?
The night vision effect is a visual filter that re-colors an image to look as if it were seen through a night vision device. The original colors are discarded and replaced by a monochrome green tint, which is the signature look of military and surveillance night vision goggles. The effect first converts the image to grayscale, then maps the brightness of each pixel onto the green channel while zeroing out the red and blue channels, producing the characteristic bright-green-on-black appearance.
This tool simulates that process entirely in your browser. You upload an image, choose how strong the effect should be with the intensity slider, and the tool walks every pixel, computes its luminance, scales it by the intensity and writes the result into the green channel. Because the whole pipeline runs locally with JavaScript and the Canvas API, nothing is uploaded and the result is ready almost instantly.
Why is night vision green?
Real night vision devices amplify tiny amounts of ambient light and display the result on a phosphor screen. The phosphor used in the most common image-intensifier tubes emits green light, because the human eye is most sensitive to green wavelengths and can distinguish more shades of green than any other color. This means a green display delivers the maximum amount of perceived detail for a given brightness, which is critical when you are trying to see in near-total darkness.
The green phosphor look became so iconic that it is now reproduced digitally in film, games and photography even when no actual night vision hardware is involved. By mapping luminance to the green channel, the digital filter mimics the same perceptual trick: the eye reads the image as brighter and more detailed than a grayscale version would appear, simply because green is where our vision is sharpest.
How the night vision simulator works
Under the hood the tool uses the Canvas 2D API. The source image is drawn onto an off-screen canvas, then getImageData returns the raw pixel buffer. For every pixel the luminance is calculated with the standard 0.299·R + 0.587·G + 0.114·B weighting, which matches how the eye perceives brightness. That luminance value is multiplied by the intensity fraction and written into the green channel, while the red and blue channels are set to zero. The modified buffer is then put back with putImageData and re-encoded as PNG, JPG or WebP.
The intensity slider controls how much of the luminance is retained. At 100% the green channel equals the full luminance, giving the brightest, most readable night vision look. Lower values darken the result, simulating a weaker signal or a dimmer phosphor screen. Because the conversion is a simple per-pixel operation, it is extremely fast even on large images.
When to use the night vision effect
The green night vision look is a popular stylistic choice in many creative and practical contexts. Whether you are building a game, editing a video or just having fun with a photo, the effect instantly communicates "darkness" and "surveillance". Common scenarios include:
- Film and video. Add a night vision overlay to action or horror scenes to suggest the characters are operating in darkness.
- Game art. Create textures or screenshots that look like they came from an in-game scope, drone or security camera.
- Social media. Give portrait or street photos an edgy, military aesthetic that stands out in a feed.
- Design mockups. Use the green monochrome look as a backdrop for tech, security or military themed designs.
- Privacy. The strong recoloring can help disguise identifying details in a screenshot while keeping the overall composition readable.
Whenever you want an image to feel covert, nocturnal or high-tech, the night vision effect is the fastest way to get there.
How to apply a night vision effect to an image
Applying the night vision effect takes only a few seconds and runs completely in your browser — no uploads, no sign-up, no watermark. Follow these steps:
- Upload your image. Click the upload area or drag and drop a JPG, PNG, WebP, GIF or BMP file. The image is decoded and previewed instantly.
- Set the intensity. Use the slider from 0 to 100%. Higher values produce a brighter, more readable green image.
- Choose an output format. Pick PNG for lossless quality, JPG for smaller photos, or WebP for a modern balance of size and quality.
- Click Apply Night Vision. The tool processes the image and shows the original and result file sizes side by side.
- Download the result. Click "Download Night Vision" to save the image. The original file stays untouched on your device.
Because every step runs locally in your browser using JavaScript, your image is never uploaded to a server. This makes the tool completely private, fast and suitable for sensitive images.
Is this night vision tool free?
Yes, completely free with no sign-up, watermarks or limits.
Why is night vision green?
Real night vision tubes use a green phosphor screen because the human eye is most sensitive to green, so a green image appears brighter and shows more detail in low light.
What intensity should I use?
Start at 60% for a balanced look. Increase to 100% for the brightest, most readable result, or lower it for a dimmer, moodier scene.
Are my images uploaded?
No. All processing is local. Your images never leave your browser.