---
title: "Colorize & Restore Photo"
description: "Free AI photo colorizer and restorer. Upload a black-and-white or damaged photo to add realistic color and repair scratches and fading. No sign-up, no watermark."
keywords:
  - colorize black and white photo
  - photo restoration ai
  - restore old photo
  - colorize photo free
  - fix old photos online
url: "https://pixeltable.com/tools/colorize-photo"
---

# Colorize & Restore Photo

Free AI photo colorizer and restorer. Upload a black-and-white or damaged photo to add realistic color and repair scratches and fading. No sign-up, no watermark.

Free online tool by Pixeltable. Run it at https://pixeltable.com/tools/colorize-photo (interactive, no sign-up).

## Features

- Colorize B&W photos
- Repair scratches and fading
- Custom prompt
- Free

## FAQ

### What photos work best?

Clear black-and-white or faded photos. You can also restore damaged color photos.

### Can I guide the result?

Yes, pick colorize, restore, or enhance, and optionally add a custom prompt.


## Fact sheet

Last updated 2026-09-23.

| Fact | Value |
| --- | --- |
| Modality | Image |
| Inputs | Image or text prompt |
| Outputs | Generated or edited image |
| Computed column | Model call stored as a computed column |
| What updates | A new or changed row recomputes only that row. Unchanged rows stay cached. |
| Canonical doc | [Computed columns](https://docs.pixeltable.com/datastore/computed-columns) |

```python
import pixeltable as pxt

TableModel = pxt.model_base()

class Photos(TableModel, name='photos'):
    image: pxt.Image

    width = image.width
```