Copy link to clipboard
Copied
When opening a PDF with the latest version of Acrobat Reader (2025.001.20630),
I encounter display issues with images inside the PDF.
(This problem occurs only with 24-bit images; 8-bit, 4-bit, and 1-bit images are not affected.)
Could this issue be related to a bug introduced in the recent update?
Is there any configuration or workaround that could resolve this problem?
We have had what looks like the same issue in our workplace and its taken up my whole day dealing with it! In the end we have found uninstalling and reinstalling adobe acrobat resolves it
Copy link to clipboard
Copied
Hi @匠佐76143669,
Hope you are doing well. Sorry for your experience with viewing files in Acrobat.
We would like to investigate more on this. Would you mind sharing a few more pieces of information for further investigation?
1. The device OS and its version;
2. Do you see this with every file where there are 24-bit images, or specific to such comparison files?
3. Can you share a sample file with us to try and reproduce the issue in-house?
While you share the information, please check if the checkboxes in Menu > Preferences > Page Display are checked (screenshot shared below for reference):
Let us know how it goes.
Regards,
Souvik.
Copy link to clipboard
Copied
Thank you for your support. Please find my additional information below:
I am viewing the PDF on Windows 11.
1.From our investigation, the issue occurs mostly with the 32-bit version of Acrobat.
(It also occurs in some cases with the 64-bit version.)
2.It is safe to say that this happens with all 24-bit images.
(However, we confirmed that in some cases it does not occur with the 64-bit version of Acrobat.)
3.I am providing a sample PDF file (image.pdf).
Also, all Rendering settings are turned ON. (Turning them OFF did not change the result.)
Copy link to clipboard
Copied
Hi @匠佐76143669,
Thanks for shairng the details.
I have forwarded the issue to the develeopment team for further investigation.
Please allow me some time to get this checked and get back to you.
Regards,
Souvik.
Copy link to clipboard
Copied
Thank you for your support.
I’m very sorry to rush, but this issue is affecting our work, so I would truly appreciate it if you could provide a response as soon as possible.
If it’s difficult to answer right away, even an estimated timeframe for a reply would be very helpful.
Copy link to clipboard
Copied
Hi there,
Hope you are doing well and sorry to keep you waiting, this issue is still under review by our engineering team.
We will share update as soon as we get more information to share.
Thank you for your understanding.
~Amal
Copy link to clipboard
Copied
Simmular issue. Color PDF at 300dpi. Adobe 2025.001.20630 opens to an illegible immage. Adobe 2025.001.20577 and Apple's Preview open clean and clear immage. Attached is origional scanned document and Screen shots comparing image using Adobe ...20630 vs v …20577
Copy link to clipboard
Copied
Thank you for sharing the information.
We will share the details with the team. It will help with the further investigation.
Thanks,
Meenakshi
Copy link to clipboard
Copied
I hope I’m not bothering you by following up again, but since this issue is still impacting our work, I wanted to kindly check if there have been any updates.
I would greatly appreciate any guidance you can share, or even an estimated timeline for when a response might be available.
Copy link to clipboard
Copied
Have you tried uninstalling and re-installing adobe? that has worked for us
Copy link to clipboard
Copied
Uninstalling and re-installing work in 25.001.20630 64bit; but not work when you have 25.001.20643 32bit or 25.001.20630 32 bit
Copy link to clipboard
Copied
Uninstalling and reinstalling worked for 2 days and reverted back to having the issue.
Copy link to clipboard
Copied
We're experiencing the same issue: over 1,200,000 files created from December 2017 to the present (consisting of 24-bit PNG screenshots) are failing to open after the latest update (just like yours). Since there's no solution, we're switching the default PDF viewer to EDGE.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
The code below may not be very elegant, but it worked correctly for a long time (even if the images had resolutions other than 1024, 768)
public static bool SavePDF(string pdfFilePath, List<string> images)
{
if (images.Count == 0)
return false;
iTextSharp.text.Document doc = new Document(new iTextSharp.text.Rectangle(1024, 768), 0, 0, 0, 0);
try
{
PdfWriter wri = PdfWriter.GetInstance(doc, new FileStream(pdfFilePath, FileMode.Create));
doc.Open();
doc.AddTitle(Path.GetFileNameWithoutExtension(pdfFilePath));
for (int i = 0; i < images.Count; i++)
{
iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance(images[i]);
png.ScaleAbsolute(1024, 768);
png.Alignment = Element.ALIGN_CENTER;
png.CompressionLevel = 10;
doc.Add(png);
}
}
catch (DocumentException docEx)
{
return false;
}
catch (IOException ioEx)
{
return false;
}
catch (Exception ex)
{
return false;
}
finally
{
doc.Close();
}
return true;
}
Copy link to clipboard
Copied
We have had what looks like the same issue in our workplace and its taken up my whole day dealing with it! In the end we have found uninstalling and reinstalling adobe acrobat resolves it
Copy link to clipboard
Copied
Apologies for the inconvience. This issue is fixed in the latest update. Release notes - https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/continuous/dccontinuoussep2025sec.....
Please do a "Help -> Check for updates" to update to the latest version and let us know if you still see issues.
Copy link to clipboard
Copied
I’ve verified that the problem is now resolved with the latest release.
I really appreciate the Adobe team and the community for your help and efforts on this issue.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now