Albert Domenech
Albert Domenech
Hi @ChandrasekarML, I can see that the file contains a dynamic block and an instance of that one. Dynamic blocks are not yet supported and my guess is that is...
After the version 2.0.1 the image references were added, that may be the cause of the problem. Does ARES provide any kind of log about the error? I can only...
Seems that ARES is complaining about some default values and entries in the root dictionary that are not found. I'll create a branch to fix the ones that appear on...
The issue is the same as dwg, ARES is complaining about the default values. Have you tried to change them as ARES says before saving the document?
Hi @ChandrasekarML, The current branch has changes that should fix some of the errors that Ares is logging. Can you send the log that you get when recovering the file...
> ARES Commander Log in the command: > > Info:Recover dwg file. Error:Dwg file: DictionaryWithDefault (ACAD_PLOTSTYLENAME) should be Created (Test:) Error:Dwg file: PrintStyle Normal should be Created (Test:) Info:Total objects...
Hi @ChandrasekarML, Your code is correct, only has a few missing parts: ```C# ImageDefinition definition = new ImageDefinition(); definition.Size = new XY(1, 1); definition.Name = "image"; definition.IsLoaded = true; definition.FileName...
Hi @ChandrasekarML, Did the code that I send to you work? The update will be a utility improvement, right now I'm working on the `XData` features of the library, I'll...
Keep in mind that the path of the image is relative to the cad file, so if your path is ./image.jpg it means that the image must be in the...
Make sure that the flag isLoaded is set to true: `definition.IsLoaded = true;`