🔵 Asset Management · The Emergency Room

The Troubleshooting Encyclopedia

No matter how well you plan, images break: one goes blurry, colours don’t match, a file refuses to save right. This is the emergency room — every common problem, grouped by symptom, each with its likely cause, a clear fix, and how to prevent it from ever happening again. Bookmark it.

29 problems solvedCause → fix → preventionBookmark-and-keep

How to Diagnose

Errors are not a sign you did something wrong — they are a normal part of working with digital images. What separates a professional is a method: name the symptom, find the likely cause, apply the fix, then change the habit that caused it. This guide is built exactly that way.

Find your problem by category below. Each entry opens to reveal the cause (why it happened), the fix (what to do now), and the prevention (so it never returns). Read a few even when nothing is broken — knowing the causes is how you stop hitting them.

The Blur Ladder

The most common symptom, cornered by a chain of questions instead of a guess.

“It looks blurry.” Ask, in order:

Only on Retina / hi-DPI screens?
Only after upload to the CMS?
Only in the browser, not the original?
Is the original file sharp?
Is the export sharp?
Is a CDN re-compressing it?
Is CSS scaling it past its pixels?

Each answer halves the suspects — the blur is almost always the original, the export, the CDN or CSS scaling.

Find Your Problem

Four categories. Click any symptom for the cause, the fix and the prevention.

Quality & Appearance

7 fixes

Why an image looks wrong — blur, banding, dull colour, jagged edges.

Why is my image blurry after I resized it?
🟠 Serious
Likely cause

You likely scaled a small, low-resolution raster image up to a larger size. This forces the software to invent pixels, resulting in blurriness.

The fix

There is no perfect fix after the fact. You must start with a source image that is at least as large as your intended final size. When scaling down, ensure 'Resample' is checked in Photoshop's Image Size dialog.

Prevent it next time

Always source the highest resolution image possible. For web, design at the final size or larger. Never scale up a raster image more than 10-15%.

Why does my text look pixelated or jagged in Photoshop?
🟠 Serious
Likely cause

Photoshop is a raster-based editor, and the text's anti-aliasing setting might be set incorrectly. It could be set to 'None', which creates hard, jagged edges.

The fix

Select the Type Tool. In the top options bar, find the anti-aliasing dropdown (aa) and set it to 'Sharp' or 'Strong'. This will smooth the edges of the text.

Prevent it next time

For text-heavy designs, create the layout in Illustrator where text is vector-based and always perfectly crisp. Place it into Photoshop as a Smart Object if needed.

Why do my print colors look dull compared to my screen?
🟠 Serious
Likely cause

Your screen uses the vibrant RGB (light-based) color space, while printers use the more limited CMYK (ink-based) color space. The conversion from RGB to CMYK often results in bright colors becoming less saturated.

The fix

In Photoshop, go to 'View > Proof Setup > Working CMYK' to get a soft-proof preview of how the colors will look when printed. Use Adjustment Layers like Vibrance or Selective Color to boost colors within the CMYK gamut.

Prevent it next time

For all professional print projects, convert your document to the CMYK color profile ('Edit > Convert to Profile') before doing your final color adjustments.

Why does my gradient have ugly bands of color instead of a smooth blend?
🟢 Good to know
Likely cause

This is called 'color banding'. It happens when there aren't enough color tones available to create a smooth transition, especially in 8-bit images with subtle gradients.

The fix

In Photoshop's Gradient tool options, ensure 'Dither' is checked. This adds a small amount of noise to break up the bands. For professional work, convert your image to 16-bit mode (Image > Mode > 16 Bits/Channel) before creating the gradient.

Prevent it next time

Work in 16-bit mode for projects with large, subtle gradients. Always add a small amount of noise (Filter > Noise > Add Noise, ~1%) to gradients to help break up banding.

Why do my sharp lines or logos look soft when I save them as a JPG?
🟢 Good to know
Likely cause

JPG compression is optimized for photographs, not for graphics with sharp lines and flat colors. The compression algorithm creates artifacts and softness around hard edges.

The fix

Re-export your graphic using a format designed for sharp lines, like PNG or SVG. PNG is a lossless raster format, and SVG is a vector format.

Prevent it next time

Use PNG for web graphics with sharp lines, text, or transparency. Use SVG for logos and icons.

My photo looks flat and lacks contrast. How do I fix it?
🟢 Good to know
Likely cause

The photo may have been taken in poor or flat lighting conditions, resulting in a narrow tonal range.

The fix

Use a 'Levels' or 'Curves' Adjustment Layer in Photoshop. In Levels, drag the black and white input sliders inward to meet the edges of the histogram. This remaps the tones to use the full range from pure black to pure white, instantly increasing contrast.

Prevent it next time

When shooting, try to find lighting with a good range of highlights and shadows. Shooting in RAW format provides much more flexibility to correct contrast in post-production.

I removed an object, but the filled-in area looks blurry and smudged.
🟠 Serious
Likely cause

You likely used a tool like the Smudge Tool or a Healing Brush that was too soft. Content-Aware Fill can also sometimes produce a low-texture result.

The fix

Use the Clone Stamp Tool (S) on a new layer. Carefully sample (Alt-click) a nearby area with similar texture and lighting, and manually paint over the smudged area to restore the natural texture.

Prevent it next time

When using Content-Aware Fill, make your selection slightly larger than the object to give Photoshop more data to work with. Always zoom in to inspect the texture after a removal.

Saving & Exporting

8 fixes

Formats, transparency, file size, layers, colour profiles.

I saved my image with a transparent background, but it has a white box on the website.
🔴 Project killer
Likely cause

You saved the image as a JPG. The JPG file format does not support transparency; it automatically fills any transparent areas with white.

The fix

Re-open your master file (e.g., the .PSD), ensure the background is truly transparent (checkerboard pattern), and re-export it using a format that supports transparency, like PNG or WebP.

Prevent it next time

Remember the rule: JPG for photos, PNG for transparency.

Why is my file size so huge?
🟠 Serious
Likely cause

The most common causes are: 1) High, uncompressed resolution (e.g., a 300 DPI image for a small web graphic). 2) Many layers, masks, and Smart Objects in a PSD file. 3) Saving for web with the JPG quality set too high (90-100).

The fix

For web, use 'File > Export > Save for Web (Legacy)' in Photoshop. Set JPG quality to 70-80 or use the WebP format. For print, the files are naturally large; this is normal.

Prevent it next time

Develop a habit of always optimizing images for their final destination. Don't use a 5000px, 300 DPI image for a 500px website icon.

Why can't I find the 'Save for Web' option in Photoshop?
🟢 Good to know
Likely cause

In recent versions of Photoshop, this feature has been moved to a 'Legacy' sub-menu as Adobe encourages users to use the newer 'Export As' panel.

The fix

Go to 'File > Export > Save for Web (Legacy)'. If you use it frequently, you can create a custom keyboard shortcut for it in 'Edit > Keyboard Shortcuts'.

Prevent it next time

Familiarize yourself with the newer 'File > Export > Export As' panel, which offers similar functionality for exporting to PNG, JPG, and GIF.

My animated GIF has terrible quality and a huge file size.
🟠 Serious
Likely cause

GIF is a very old format limited to only 256 colors. When you save a complex photo as a GIF, the color reduction process creates banding and dithering. The file size becomes large if there are many frames or large areas of change between frames.

The fix

For high-quality web animations, use a modern video format like MP4 instead of GIF. If you must use GIF, in the 'Save for Web' dialog, reduce the number of colors (e.g., from 256 to 64) and increase the 'Lossy' setting to reduce file size.

Prevent it next time

Avoid using animated GIFs for anything other than very simple, short animations with flat colors. Use video for everything else.

I saved a file and now all my layers are gone!
🔴 Project killer
Likely cause

You likely saved your file in a format that does not support layers, such as JPG or PNG, and then closed the document. This flattens the image, merging all layers into one.

The fix

If you haven't closed the document, you can use 'Undo' or the History panel to go back. If you have closed it, the layers are gone permanently from that file. You must go back to an earlier saved version.

Prevent it next time

Always, always save your master working file as a .PSD (Photoshop) or .AI (Illustrator) to preserve your layers. Only save copies as JPG or PNG for final delivery.

What does 'embedding a color profile' mean when I save?
🟡 Important
Likely cause

A color profile is a small piece of data that tells a device how to interpret the file's RGB or CMYK values. Embedding it ensures color consistency.

The fix

When saving for web, you should almost always check the box to 'Embed Color Profile' and ensure it's set to sRGB. This is the standard color space for the web and ensures your colors look correct in most browsers.

Prevent it next time

In Photoshop's Color Settings ('Edit > Color Settings'), set your RGB working space to sRGB to avoid conversion issues from the start.

I can't open a HEIC file from my iPhone in Photoshop.
🔴 Project killer
Likely cause

HEIC is a newer, efficient file format that older versions of Photoshop or Windows may not support natively.

The fix

Update your Photoshop to the latest version. You may also need to install a HEIF/HEVC codec from the Microsoft Store on Windows. Alternatively, on your iPhone, you can go to Settings > Camera > Formats and choose 'Most Compatible' to save photos as JPGs by default.

Prevent it next time

For maximum compatibility when sharing files, consider converting HEIC files to JPGs before sending them to clients or colleagues who may not have the latest software.

What is the difference between 'Save As' and 'Save a Copy' in Photoshop?
🟢 Good to know
Likely cause

Adobe changed this workflow, causing confusion. 'Save As' now defaults to saving as a cloud document or a format that preserves layers, while 'Save a Copy' is for exporting flattened formats.

The fix

Use 'Save As' (Ctrl+Shift+S) for your primary layered files (.PSD, .TIFF). Use 'Save a Copy' (Ctrl+Alt+S) when you need to export a flat version like a JPG or PNG for delivery.

Prevent it next time

Learn the new keyboard shortcuts. If you dislike this workflow, you can revert to the old 'Save As' behavior in 'Edit > Preferences > File Handling' by checking 'Enable legacy Save As'.

Tool-Specific

7 fixes

Photoshop, Illustrator and Canva behaving unexpectedly.

Photoshop is running very slowly. How can I speed it up?
🟠 Serious
Likely cause

Photoshop is a resource-intensive program. Slowness is often caused by insufficient RAM, a slow hard drive (scratch disk), or too many large files open.

The fix

Go to 'Edit > Preferences > Performance'. Ensure Photoshop is allowed to use a good amount of RAM (70-80%). Under 'Scratch Disks', make sure your fastest drive (ideally an SSD) is selected and has plenty of free space. Close any documents you are not actively working on.

Prevent it next time

Regularly purge your history and cache ('Edit > Purge > All'). Work with smaller, optimized files when possible and only open what you need.

I can't edit a layer in Photoshop; it has a little lock icon.
🟡 Important
Likely cause

The layer is locked. This can happen for several reasons. The default 'Background' layer is partially locked. Other layers may be fully locked to prevent accidental edits.

The fix

In the Layers panel, select the locked layer. Click the lock icon at the top of the panel to unlock it. If it's the 'Background' layer, you can drag the lock icon to the trash can or double-click the layer to convert it to a regular layer.

Prevent it next time

Get into the habit of duplicating your background layer before you start editing, leaving the original locked and untouched at the bottom of your layer stack.

Why are some of my tools not working in Photoshop? (e.g., brush is greyed out)
🟢 Good to know
Likely cause

You are likely working in an image mode that doesn't support the tool. For example, you cannot use the Brush tool in an Indexed Color mode (common in GIFs).

The fix

Check your image mode by going to 'Image > Mode'. For full functionality, your image should typically be in 'RGB Color' and '8 Bits/Channel'.

Prevent it next time

Always check your document's mode and bit depth before starting a complex editing project.

I used the Magic Eraser in Canva, and it removed part of my subject.
🟢 Good to know
Likely cause

Canva's AI tools are powerful but not perfect. It may have misinterpreted the edges of your subject.

The fix

After using the Magic Eraser, the tool gives you options to 'Erase' or 'Restore'. Select the 'Restore' brush and carefully paint back over the areas of your subject that were accidentally removed.

Prevent it next time

For complex subjects, try to use an image with a simple, high-contrast background to give the AI the best chance of success.

Why can't I find a specific font in Canva?
🟡 Important
Likely cause

Canva has a huge library, but it doesn't include every font in existence. The font you want may not be licensed for use on their platform.

The fix

If you have a Canva Pro account, you can use the 'Brand Kit' feature to upload your own custom fonts. Otherwise, you will need to find a similar-looking font from Canva's extensive library.

Prevent it next time

Establish a brand kit with your approved fonts, colors, and logos to ensure consistency and save time.

How do I get a clean selection around hair or fur?
🟢 Good to know
Likely cause

Hair and fur are notoriously difficult because they are semi-transparent and have thousands of fine edges. Basic selection tools like the Magic Wand will fail.

The fix

In Photoshop, make an initial selection with the 'Object Selection Tool'. Click 'Select and Mask'. Use the 'Refine Edge Brush' tool within this workspace and paint along the edges of the hair. Photoshop's AI will analyze the edges and create a complex, high-quality mask.

Prevent it next time

Always shoot subjects against a plain, contrasting background if you know they will need to be cut out later. This makes the selection process much easier.

What's the difference between Opacity and Flow in Photoshop's brush settings?
🟡 Important
Likely cause

This is a common point of confusion. They seem similar but behave differently.

The fix

Opacity sets the maximum transparency for the entire brush stroke. Flow sets the speed at which the 'paint' is applied. A low flow brush is like a spray can; you can build up color in an area by painting over it multiple times without lifting the mouse. A low opacity brush will never exceed its opacity setting in a single stroke.

Prevent it next time

Use Opacity for overall transparency. Use Flow for shading and blending effects where you need to build up tone gradually.

Workflow & Client

7 fixes

Delivery, organisation, batch work and client confusion.

My client keeps asking me to 'just make the logo bigger' on the website JPG.
🟢 Good to know
Likely cause

The client doesn't understand the difference between raster and vector. They are seeing the logo become pixelated when you scale it up.

The fix

Explain that the logo needs to be placed on the image as a separate, scalable element. The best way is often to provide them with a transparent PNG of the logo, and have their web developer place it on top of the image using HTML/CSS, so it's always sharp.

Prevent it next time

Always supply clients with logo files in a vector format (SVG, AI, EPS) and a high-resolution transparent PNG. Provide a brief explanation of when to use each file type.

How do I keep my files organized for a large project?
🟢 Good to know
Likely cause

A project with hundreds of source images, edits, and exports can quickly become chaotic.

The fix

Use a disciplined folder structure. For example: `Project_Name > 01_Source_Images > 02_Master_Files (.PSD) > 03_Exports_Web > 04_Exports_Print`. Use clear, descriptive filenames like `Homepage_Hero_Banner_v3.psd`.

Prevent it next time

Establish your folder structure at the very beginning of the project and stick to it. It saves countless hours searching for files later.

I'm a beginner. Should I learn Photoshop or Canva first?
🟢 Good to know
Likely cause

This is a common strategic question. The answer depends on your goals.

The fix

Start with Canva. It will teach you the fundamentals of layout, typography, and composition quickly and easily. Once you feel limited by what Canva can do (e.g., you need advanced photo retouching or complex selections), then it's time to graduate to Photoshop.

Prevent it next time

Don't see it as an 'either/or' choice. Many professionals use both: Canva for speed and templates, Photoshop for power and precision.

My client can't open the .AI / .PSD file I sent them.
🔴 Project killer
Likely cause

The client does not have Adobe Illustrator or Photoshop installed on their computer. These are professional source files, not final, viewable images.

The fix

Apologize for the confusion and ask them what file format they need for their specific purpose. For viewing, send a PDF or JPG. If they need it for their website, send a PNG or SVG.

Prevent it next time

Never assume a client has professional design software. Always ask what their final use case is and export the appropriate file format for them. Deliver the source files only if specifically requested.

How do I ensure my brand's colors are consistent everywhere?
🟢 Good to know
Likely cause

Colors can look different on various screens and in print due to unmanaged color profiles and the RGB/CMYK shift.

The fix

Create a brand style guide that specifies the exact color values for every context: HEX codes for web (e.g., #4f46e5), RGB values for digital, and CMYK/Pantone values for print. Use these exact values in all your designs.

Prevent it next time

Use the 'Libraries' feature in Adobe products to save your brand colors, logos, and character styles, ensuring you can access the correct assets in any project.

I need to edit 100 photos the exact same way. Is there a faster way than doing them one by one?
🟢 Good to know
Likely cause

Manually editing a large batch of photos is incredibly time-consuming and prone to inconsistencies.

The fix

In Photoshop, use 'Actions' to record your editing steps on one photo, then use 'File > Automate > Batch' to apply that action to an entire folder. For RAW photos, you can edit one photo in Adobe Lightroom or Camera Raw, then copy and paste those settings to all other photos in the set.

Prevent it next time

When shooting a series of photos that will need similar edits (like event photography), use consistent camera settings (manual mode) to make batch processing much more effective.

My selections are always messy and have hard edges. How do I make them look realistic?
🟠 Serious
Likely cause

Making a good selection is an art. A hard-edged selection will never look natural when composited.

The fix

After making your initial selection in Photoshop, go to 'Select > Select and Mask'. Use the 'Feather' slider to soften the edge slightly (1-2px is often enough). Use the 'Shift Edge' slider to contract the selection inward to avoid background halos. Use the Refine Edge brush on soft areas like hair.

Prevent it next time

Take your time with selections. Zoom in and pay attention to edge details. A perfect selection is 90% of the work in creating a realistic composite.

Troubleshooting Vocabulary

The terms that let you diagnose accurately.

Non-Destructive Editing

Definition
Working with adjustment layers, masks and Smart Objects so edits stay reversible and never harm original pixels.
Why it matters
Every fix in this guide assumes it — it is what makes a mistake recoverable.

Smart Object

Definition
A container layer that preserves an image’s source (raster or vector) for scalable, reversible transforms and filters.
Why it matters
Scale it up and down forever with no cumulative loss.

PPI vs DPI

Definition
PPI (pixels per inch) is screen resolution; DPI (dots per inch) is printer resolution.
Why it matters
Confusing them causes blurry prints or giant web files.

Resampling / Interpolation

Definition
The maths a program uses to invent or discard pixels when you resize.
Why it matters
Upsizing forces interpolation and softens detail.

Bit Depth

Definition
How many tonal values exist per channel (8-bit, 16-bit…).
Why it matters
Higher depth resists banding in gradients.

Alpha Channel

Definition
An extra channel storing transparency.
Why it matters
It is what keeps a PNG’s see-through areas — and JPG has none.

ICC Profile

Definition
Device-specific colour data embedded in a file.
Why it matters
It keeps colour consistent across monitors, printers and software.

Soft Proofing

Definition
Previewing on-screen how colours will print by simulating a profile.
Why it matters
It catches the RGB→CMYK shift before the press does.

Scratch Disk

Definition
Temporary drive space Photoshop uses as virtual memory.
Why it matters
A full or slow disk causes lag and crashes.

Moiré Pattern

Definition
Wavy interference from scanning or resizing fine repetitive textures.
Why it matters
Watch for it on fabrics and screens.

Compression Artifacts

Definition
Blockiness or halos from lossy formats over-compressing data.
Why it matters
Repeated JPG saves make it worse.

Dither / Noise

Definition
A sprinkle of randomness that breaks up banding in gradients.
Why it matters
It buys smoothness in limited-colour images.

Test Your Diagnosis

Ten questions in seven formats, each with layered hints. Served from the bank, never hardcoded.

Loading the question bank…
Question 1 of 10
Multiple choice

Which Is the Right Fix?

Five rounds. Two options each — the right diagnosis, and why.

Round 1 of 5Score 0

Series Complete

That closes the Image Management series. You have gone from what formats are and why they matter (Part 1), through the ten core tasks (Part 2) and real production workflows (Part 3), to diagnosing anything that breaks (here). You are no longer guessing at images — you understand the physics, the perception, the industry practice, and the fix for when it goes wrong.

Copyright © Pawan Nayar · LLOS.ai · 2026 — Original pedagogy, voice, and design — all rights reserved. Image Management · The Troubleshooting Encyclopedia.