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);
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.