Troubleshooting

Why Do Images Lose Quality? How to Prevent It

Understand why images lose quality during conversion and compression. Learn techniques to minimize quality loss when converting between formats.

February 22, 202610 min read

Convert-To Editorial Team

Editorial Policy

You download a product photo from a website, insert it into a presentation, export the presentation as PDF, and email it to a client. The image that looked crisp on the website is now noticeably blurry in the PDF. Nobody changed the image intentionally, yet it lost quality three times during that simple workflow — once during the original web compression, again during PowerPoint's internal re-encoding, and once more during the PDF export. Each step was invisible but destructive, and the damage is cumulative.

Quality loss in images isn't random. It follows predictable patterns based on compression type, format conversion, and resizing operations. Understanding these patterns lets you structure your workflow to minimize damage, or at least know when the damage is happening so you can intervene before it compounds.

The Three Mechanisms of Quality Loss

Image quality degrades through three distinct mechanisms, and they often stack on top of each other.

1. Lossy Compression Artifacts

Lossy formats (JPG, WebP lossy, HEIC) discard image data during saving. The compression algorithm identifies detail that human vision is least sensitive to and removes it permanently. What remains is a mathematically simplified version of the original that looks "close enough" at normal viewing sizes.

The specific artifacts depend on the compression algorithm:

Artifact TypeAppears InVisual EffectCause
Block artifactsJPG, WebP (lossy)8x8 pixel grid visible in smooth areasDCT block boundaries become visible at low quality
Color bandingJPG, WebP, HEICSmooth gradients show visible stepsInsufficient bits to represent subtle color transitions
Mosquito noiseJPGShimmering edges around sharp text/linesHigh-frequency detail near strong edges is poorly encoded
RingingJPG, WebPHalos around high-contrast edgesGibbs phenomenon from frequency-domain compression
SmearingJPG at very low qualityLoss of fine texture detailAggressive quantization eliminates texture information
Color bleedingJPGColor from one area leaks into adjacent areasChroma subsampling reduces color resolution

2. Generation Loss (Re-Compression)

Every time a lossy-compressed image is opened, edited, and saved again, the compression runs another cycle. Each cycle discards more detail. After a single re-save, the loss is minimal. After 5-10 cycles, it's plainly visible. After 20+, the image degrades severely.

In our testing, we took a high-quality photograph (3000x2000, quality 95 JPG, 1.2 MB) and re-saved it at quality 85 repeatedly:

Re-Save CycleFile SizePSNR (Quality Metric)Visible Degradation
Original1,200 KBBaselineNone
1st re-save420 KB42.1 dBImperceptible
3rd re-save395 KB39.8 dBSlight softening visible at 200% zoom
5th re-save388 KB37.2 dBVisible loss in fine textures
10th re-save382 KB33.6 dBObvious artifacts in gradients and edges
20th re-save378 KB29.4 dBSevere blocking, color shifts, text illegible at small sizes

The takeaway: file size stabilizes quickly (the algorithm reaches an equilibrium), but quality continues to degrade with each cycle. A file that's been re-saved 20 times and a file re-saved 3 times can be nearly the same size while looking drastically different.

3. Resolution Loss (Downsampling)

Reducing an image's pixel dimensions (downsampling) permanently removes pixels. An image resized from 4000x3000 to 2000x1500 loses 75% of its pixel data. If you later resize it back to 4000x3000, the missing pixels are interpolated (mathematically estimated) — and the result is a softer image, not a sharper one.

This is irreversible. No software can recreate the original detail from fewer pixels, despite what AI upscaling marketing might suggest. Modern AI upscalers produce impressive results for some image types, but they're generating plausible new detail, not recovering the original data.

Convert-To Tip

Always keep an unmodified copy of your original image before any editing, resizing, or format conversion. Work from a copy, and if the workflow requires multiple saves, use a lossless format (PNG or TIFF) for intermediate steps. Only export to JPG or WebP as the very last step. You can convert between formats using our image conversion tools without additional quality loss when going from lossy to lossless.

Format Conversion: Where Quality Gets Lost

Not all format conversions cause quality loss. Understanding which conversions are destructive helps you plan your workflow.

Lossless Conversions (No Quality Loss)

ConversionWhy It's Safe
PNG → TIFFBoth lossless — pixel data is identical
TIFF → PNGBoth lossless — pixel data is identical
BMP → PNGBMP is uncompressed, PNG is lossless compressed
RAW → TIFF (16-bit)Both preserve full sensor data

Lossy Conversions (Quality Loss Occurs)

ConversionQuality ImpactNotes
PNG → JPGLossy compression appliedIrreversible, severity depends on quality setting
JPG → WebP (lossy)Double lossy compressionFirst JPG encoding + second WebP encoding
HEIC → JPGRe-encoding from one lossy format to anotherModerate loss, usually acceptable
RAW → JPGSignificant data reduction14-bit sensor data compressed to 8-bit
Any format → JPG → PNGJPG artifacts are preserved in the PNGConverting to lossless after lossy doesn't restore quality

The Critical Misconception

Converting a JPG to PNG does not improve quality. The PNG faithfully preserves whatever data the JPG contains — including all its compression artifacts. The file size increases (because PNG doesn't discard data), but the visual quality is identical. Going from JPG to PNG is like photocopying a photocopy in high resolution — the copy is faithful, but the original damage is preserved.

Similarly, "upscaling" a small JPG thumbnail to a larger PNG doesn't add real detail. The interpolation algorithms (bilinear, bicubic, Lanczos) create new pixels by averaging neighboring values, producing a mathematically smooth but perceptually soft result.

Common Workflow Mistakes That Destroy Quality

Mistake 1: Using JPG for Screenshots and Graphics

Screenshots, logos, diagrams, and UI mockups contain sharp edges, solid colors, and small text — exactly the content that JPG compression handles worst. A screenshot saved as JPG at quality 80 shows visible artifacts around every letter, icon, and interface element.

Always use PNG for screenshots and graphics with text. The file is larger, but the quality is perfect. If file size matters, WebP lossless is the better alternative — smaller files than PNG with identical quality.

Mistake 2: Downloading Low-Resolution Images and Upscaling

If a website only offers a 400x300 pixel thumbnail, that's all the data that exists. Downloading it and resizing to 1920x1080 produces a blurry 1920x1080 image. The 400x300 original had 120,000 pixels of information; the upscaled version has 2,073,600 pixels, but 94% of them are interpolated.

Mistake 3: Multiple Rounds of Editing in a Lossy Format

A social media manager edits a product photo in Canva (which exports as JPG), downloads it, uploads it to another tool for cropping (which re-exports as JPG), then adds a text overlay in a third tool (another JPG export). Each tool applies JPG compression independently, and after three rounds, the image has noticeably more artifacts than if the entire workflow happened in a single tool with one JPG export at the end.

Mistake 4: Ignoring Chroma Subsampling

JPG compression uses a technique called chroma subsampling (typically 4:2:0) that reduces color resolution to half the spatial resolution. This is invisible for photographs but causes visible color bleeding around high-contrast edges — particularly red text on white backgrounds or thin colored lines in charts.

For images with important color detail at edges (charts, graphics, red-on-white text), use 4:4:4 chroma subsampling when saving as JPG, or avoid JPG entirely and use PNG.

Measuring Quality Loss: PSNR, SSIM, and Perceived Quality

Engineers use metrics to quantify quality loss objectively:

MetricRangeWhat It MeasuresLimitation
PSNR (Peak Signal-to-Noise Ratio)20-50+ dBMathematical pixel-level differenceDoesn't correlate well with human perception
SSIM (Structural Similarity)0-1Structural pattern similarityBetter correlation with perception than PSNR
VMAF (Video Multi-method Assessment)0-100Perceptual quality (developed by Netflix)Primarily for video, computationally expensive
MOS (Mean Opinion Score)1-5Human subjective ratingsRequires actual human evaluation

For practical purposes: SSIM above 0.95 is generally imperceptible to most viewers. PSNR above 40 dB is considered "very good." Below 30 dB PSNR (or 0.85 SSIM), most people notice degradation without being told to look for it.

How to Minimize Quality Loss in Practice

For Photographers

  1. Shoot RAW (not JPG in camera)
  2. Edit in a RAW processor (Lightroom, Capture One)
  3. Export TIFF or PNG for archiving
  4. Export JPG at quality 90-95 only for final delivery
  5. Never re-edit the exported JPG — go back to the RAW file

For Web Developers

  1. Source highest-quality originals available
  2. Use WebP as primary format (JPG to WebP converter)
  3. Compress once, at the final display size — no re-compression
  4. Use srcset to serve different sizes per device (don't upscale small images)
  5. Set quality 75-85 for photos, use lossless WebP for graphics/screenshots

For Office Workers

  1. Keep original files separate from shared/emailed versions
  2. Compress images before inserting into presentations (PowerPoint re-compresses internally otherwise)
  3. When extracting images from PDFs or presentations, expect reduced quality
  4. Use PNG for any image containing text (charts, diagrams, screenshots)

When Quality Loss Is Acceptable

Not every image needs maximum quality. A 100x100 pixel avatar displayed at thumbnail size doesn't benefit from pristine quality settings. A background texture on a website can tolerate more compression than a hero product shot. The key is matching the quality investment to the visibility and importance of each image.

Privacy Note

Image files contain EXIF metadata that may include GPS coordinates, camera serial numbers, and timestamps. Quality-preserving operations like format conversion maintain this metadata. If you're sharing images publicly and want to remove tracking metadata, use our image compression tool with metadata stripping enabled. Files are processed by CloudConvert, a GDPR-compliant and ISO 27001 certified service, and automatically deleted within 15 minutes after conversion. Convert-To.co does not store your files on its own servers.

Tags

image qualitycompressiontroubleshootingartifacts
Back to Blog
Updated 2/22/2026

Try It Now

Ready to use Resize Image? Convert your files for free with our online tool.

Use Resize Image

Try It Now

Ready to use JPG to WEBP? Convert your files for free with our online tool.

Use JPG to WEBP

Try It Now

Ready to use Compress Image? Convert your files for free with our online tool.

Use Compress Image