Adobe In-Design in C# or in Java

911 Views Asked by At

How to make document of Adobe in-design without opening the application in c# or Java.

I am able to create the document but for that, I have instantiated the UI of Adobe in-design

Below is the code I tried which is working but for this application need to be instantiated.

Type type = Type.GetTypeFromProgID("InDesign.Application.CC.2019", true);
dynamic app = System.Activator.CreateInstance(type,true);InDesign.idScriptLanguage.idJavascript, new object[] { "" });
Document document = app.open("D:\\ResumeInDesign.indd", false); 
1

There are 1 best solutions below

1
Cabbage Champion On

You can use InDesign Server to accomplish what you are wanting. The sdk is in c++, so look here for information on how to use the sdk in a .NET application.