How to make a great tile

Mosaic tiles are 500 × 500 pixels and 1-bit — every pixel is either pure black or pure white. Here's how to make one that looks good etched in gold.

Short version: send any image to our form and it'll be converted for you. Read on if you want better-than-default results.

Why 1-bit?

The disk is etched: every spot on the surface is either gold or not gold. There is no gray. Each tile ends up about half a millimeter across on the finished disk, so what you submit gets resolved as 500 × 500 hard pixels.

This sounds limiting, and it is — but it's also why some kinds of images come out looking great. The constraint rewards bold, graphic, high-contrast subjects. Anything that survives being printed in a black-and-white zine will work here.

The two paths

1. Send any image, let us convert it.

Our submission form will take any image in any format and convert it to 500 × 500 1-bit using Floyd-Steinberg dithering. You'll see exactly what we'd etch before you commit. There's an "invert colors" button if it comes out the wrong polarity. If you don't like the result, pick a different image — or jump to path 2 for full control.

2. Convert it yourself, send the result.

For best results, prepare your image in your own tool. We'll trust whatever 500 × 500 PNG you send and skip the auto-conversion. Tools below.

What works well

Some subjects thrive in this format:

What's hard

Some subjects don't translate well:

Tips for any approach

Tools for doing it yourself

Online (no install)

Photoshop

  1. Open your image.
  2. Image → Adjustments → Levels — boost contrast.
  3. Image → Image Size — set to 500 × 500 px.
  4. Image → Mode → Grayscale, then Image → Mode → Bitmap.
  5. Pick a method: "50% Threshold" for hard edges and clean text, "Diffusion Dither" for photographic content, "Halftone Screen" for newspaper-style effects.
  6. Export as PNG.

GIMP (free)

  1. Image → Scale Image — 500 × 500.
  2. Image → Mode → Grayscale.
  3. Image → Mode → Indexed with "Use black and white (1-bit) palette" and pick a dithering option (Floyd-Steinberg works well for photos; no dither is best for line art).
  4. Export as PNG.

ImageMagick (command line)

# Simple threshold — best for line art, logos, text:
magick input.jpg -resize "500x500^" -gravity center \
  -extent 500x500 -monochrome out.png

# Floyd-Steinberg dither — what our form does. Best for photos:
magick input.jpg -resize "500x500^" -gravity center \
  -extent 500x500 -colorspace gray \
  -dither FloydSteinberg -monochrome out.png

# Ordered (Bayer) dither — better for gradients and skies:
magick input.jpg -resize "500x500^" -gravity center \
  -extent 500x500 -colorspace gray \
  -ordered-dither 4x4 out.png

A note on dithering vs threshold

If your image is already mostly black and white (line art, logos, comic panels), use a simple threshold — it gives you clean edges and no noise. If your image has lots of midtones (photos, paintings, gradients), use dithering — it spreads the midtones across nearby pixels in a noisy pattern that simulates gray. The two look very different and one usually wins clearly for any given image. If you're not sure, try both.


Back to submit a tile →