Skip to main content
Participating Frequently
June 27, 2024
Question

BUG: PNG Import Filter.IndesignPlugin - File could not be opened – Datei kann nicht geöffnet werden

  • June 27, 2024
  • 22 replies
  • 1963 views

Das Problem trat spontan in Indesign 2024 (19.4) auf. Neuinstallation hilft nicht. Jemand eine Idee, wie ich die Datei retten kann?

This topic has been closed for replies.

22 replies

Participating Frequently
June 28, 2024

seems like a corrupted indd file (2024) could not open without this. but i cant find any hint where to get it or where to install it.

 

Community Expert
June 28, 2024

Reinstalling rarely fixes everything - you can do a complete reinstall using the
Creative Cloud Cleaner Tool https://helpx.adobe.com/creative-cloud/kb/cc-cleaner-tool-installation-problems.html

leo.r
Community Expert
Community Expert
June 27, 2024
quote

Das Problem trat spontan in Indesign 2024 (19.4) auf. Neuinstallation hilft nicht. Jemand eine Idee, wie ich die Datei retten kann?


By @agenturimturm

 

Try to export the file to IDML, then open. Normally, it should remove external plugin dependencies. (Unless this error is a new bug similar to the one that caused problems between InDesign 19.2 and 19.3 versions.) Anyway, try IDML and see if it solves the issue.

Participating Frequently
June 28, 2024

the problem occurs when i try to open the indesign file. so no way to export to idml.
i tryed https://ixsavebackgenerator.de/idsb/web/service/index_en.jsp for converting indd to idml online, but this does not work either – because the file is corrupted.

Willi Adelberger
Community Expert
Community Expert
June 28, 2024

There is a way to export an IDML file without opening it:

// blindOpen_and_IDML-Export.jsx 
 
var _file = File.openDialog("InDesign-Datei"); // Auswahl einer Datei 
if(_file != null) 
{ 
	var d = app.open(_file, false); // Öffnen der Datei, ohne sie anzuzeigen 
	d.exportFile(ExportFormat.INDESIGN_MARKUP,  File(_file.fullName.replace(/.indd$/i,'.idml'))); // Export im IDML-Format 
	d.close(SaveOptions.NO); // Schließen ohne zu sichern 
} 

Save this code in a text file and change it ending to .js

Put it there, where your scripts are and let it run and follow the instructions.

 

Did you embed the PNG file or did you link it as external asset? Embedding is the main cause of corrupted file.

Why do you use PNG? I recommend always never to use it in InDesign as itcauses often problems. If it has transparency, use PSD. 

Frans v.d. Geest
Community Expert
Community Expert
June 27, 2024

From your screenshot it looks you are Opening instead of Placing the png file...

Participating Frequently
June 28, 2024

yes, the problem occurs when i try to open the corrupted indesign file.

Participating Frequently
June 27, 2024

Betriebssystem MacOS Monterey