Skip to main content

Presets

Browser default - balances quality and performance

Image Rendering

Target Element

Additional Options

Preview Size

Live Preview

image-rendering: auto

Rendering Comparison

auto
smooth
high-quality
pixelated
crisp-edges

Best Use Cases

🎮

pixelated

  • Pixel art games
  • Retro graphics
  • QR codes
  • Barcodes
📊

crisp-edges

  • Screenshots
  • Diagrams
  • UI mockups
  • Text in images
📷

smooth / auto

  • Photographs
  • Gradients
  • Natural images
  • Artwork
Minimal CSS
img {
  image-rendering: auto;
}
With Vendor Prefixes
/* Image Rendering: auto */
/* Browser chooses the best algorithm */

img {
  /* Image rendering quality */
  image-rendering: auto;
}

Rate this tool