Skip to content

IEEE Figure Resolution Too Low: Fixing Guide

IEEE requires that all figures and images in your paper meet strict resolution standards to ensure high-quality printing and digital rendering. The standard requirement is typically 300 DPI (dots per inch) for photographs and 600 DPI for line art and text-heavy figures.

Why Resolution Matters in IEEE Submissions

Low-resolution images (often 72 or 96 DPI, common for web use) appear "pixelated" or "blurry" when printed in the conference proceedings or viewed on high-resolution screens. IEEE's automated validator will flag any image that falls below the threshold to maintain the professional standard of their publications.

Common Causes of Low Resolution

  1. Web Images: Copy-pasting images from websites or social media.
  2. Screenshots: Standard screenshots are usually 72–144 DPI, which is insufficient.
  3. Improper Export: Exporting from MATLAB, Python (Matplotlib), or Excel using default "low quality" settings.
  4. Resizing: Taking a small image and "stretching" it to fill a column.

How to Fix Figure Resolution in LaTeX

LaTeX itself doesn't change image resolution; it simply includes the file you provide. The fix must happen at the source image level.

1. Vector Graphics are Better

Whenever possible, use vector formats like PDF or EPS. These have "infinite" resolution because they are based on mathematical paths rather than pixels. IEEE strongly prefers these for line art and plots.

2. Exporting from Python/Matplotlib

import matplotlib.pyplot as plt
plt.plot(x, y)
plt.savefig('figure.pdf') # Vector format
# OR for raster:
plt.savefig('figure.png', dpi=300) 

3. Exporting from MATLAB

Use the exportgraphics function (available in newer MATLAB versions):

plot(x, y);
exportgraphics(gca, 'figure.pdf', 'ContentType', 'vector');
% OR for raster:
exportgraphics(gca, 'figure.png', 'Resolution', 300);

How to Fix Figure Resolution in Microsoft Word

Word often compresses images to save file space, which can lower their resolution.

  1. Disable Image Compression: Go to File > Options > Advanced. Under "Image Size and Quality," check Do not compress images in file and set "Default resolution" to 321ppi or higher.
  2. Insert, Don't Paste: Use Insert > Pictures instead of Copy-Paste. Pasting often uses the system clipboard's lower resolution.
  3. Use High-Quality PDF Export: When saving as PDF, ensure "Optimize for: Standard (publishing online and printing)" is selected.

Checking Resolution Before Submission

Before uploading to PDF eXpress, you can check an image's DPI: - Windows: Right-click image > Properties > Details > Horizontal/Vertical Resolution. - Mac: Open in Preview > Tools > Show Inspector. - Adobe Acrobat: Use the "Preflight" tool to find images below 300 DPI.


Back to: IEEE Submission Hub


Back to: Academic Hub